aboutsummaryrefslogtreecommitdiff
path: root/node_modules/montage/ui/loading.reel/loading.js
blob: 7ad180dab7ef2eb08d8276698fa1c55999654849 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
/* <copyright>
 This file contains proprietary software owned by Motorola Mobility, Inc.<br/>
 No rights, expressed or implied, whatsoever to this software are provided by Motorola Mobility, Inc. hereunder.<br/>
 (c) Copyright 2011 Motorola Mobility, Inc.  All Rights Reserved.
 </copyright> */
/**
	@module "montage/ui/loading.reel"
    @requires montage/core/core
    @requires montage/ui/component
*/
var Montage = require("montage").Montage,
    Component = require("ui/component").Component;
/**
 @class module:montage/ui/loading.Loading
 @extends module:montage/ui/component.Component
 */

var Loading = exports.Loading = Montage.create(Component,/** @lends module:"montage/ui/loading.reel".Loading# */ {
/**
  Description TODO
  @private
*/
    _loading: {
        value: null
    },
/**
        Description TODO
        @type {Function}
        @default null
    */
    loading: {
        get: function() {
            return this._loading;
        },
        set: function(isloading) {
            if (this._loading !== isloading) {
                this._loading = isloading;
                this.needsDraw = true;
            }
        },
        serializable: true
    },
/**
    Description TODO
    @function
    */
    draw: {
        value: function() {
            var classList = this.element.classList, exists = classList.contains("animate");
            if (this.loading) {
                if (!exists) {
                    classList.add("animate");
                }
            } else {
                if (exists) {
                    classList.remove("animate");
                }

            }
        }
    }
});