aboutsummaryrefslogtreecommitdiff
path: root/js/panels/Timeline/EasingMenu.reel/EasingMenu.js
blob: ced3ae6aa09c9250780cc84af490d32dcc63e53f (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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
/* <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> */

var Montage = require("montage/core/core").Montage,
	Component = require("montage/ui/component").Component,
	Popup = require("montage/ui/popup/popup.reel").Popup;

var EasingMenu = exports.EasingMenu = Montage.create(Component, {

    hasTemplate:{
        value: true
    },

	/* Begin: Models */
	
	// popup: the initialized component.
    _popup: {
		value: null
    },
    popup: {
    	get: function() {
    		return this._popup;
    	},
    	set: function(newVal) {
    		this._popup = newVal
    	}
    },
    
    // callingComponent: pointer to the span that called for the menu
    _callingComponent: {
    	value: null
    },
    callingComponent: {
    	get: function() {
    		return this._callingComponent;
    	},
    	set: function(newVal) {
    		this._callingComponent = newVal;
    	}
    },
    
    // anchor: pointer to the anchoring element
    _anchor: {
    	value: null
    },
    anchor: {
    	get: function() {
    		return this._anchor;
    	},
    	set: function(newVal) {
    		this._anchor = newVal;
    	}
    },
    
    
    _top: {
    	value: null
    },
    top: {
    	get: function() {
    		return this._top;
    	},
    	set: function(newVal) {
    		this._top = newVal;
    	}
    },
    _left: {
    	value: null
    },
    left: {
    	get: function() {
    		return this._left;
    	},
    	set: function(newVal) {
    		this._left = newVal;
    	}
    },
    
    // currentChoice: The data attribute of the current choice
    _currentChoice: {
    	value: "none"
    },
    currentChoice: {
    	get: function() {
    		return this._currentChoice;
    	},
    	set: function(newVal) {
    		this._currentChoice = newVal;
    	}
    },
    
    _isShown: {
    	value: false
    },
    
    /* End: Models */
    
    /* Begin: Draw Cycle */
    willDraw: {
    	value: function() {
    		this.element.addEventListener("click", this.handleEasingChoicesClick.bind(this), false);
    		document.addEventListener("scroll", this.handleDocumentScroll.bind(this), false);
    	}
    },
    
    draw: {
    	value: function() {
    		// Update the selection classes.
			var easingSelected = this.element.querySelector(".easing-selected");
			if (easingSelected !== null) {
				easingSelected.classList.remove("easing-selected");
			}
            var dataEl = this.element.querySelector('[data-ninja-ease="'+this.currentChoice+'"]');
            if (dataEl !== null) {
            	dataEl.classList.add("easing-selected");
            }
    	}
    },
    didDraw: {
    	value: function() {
    	}
    },
	/* End Draw Cycle */
    
    /* Begin: Controllers */
	show: {
		value: function() {
			// Initialize the popup if it hasn't already been done
            if (this.popup == null) {
            	this.popup = Popup.create();
	            this.popup.modal = false;
	            this.popup.content = EasingMenu.create();
            }
            
            // Show the popup
            this.popup.anchor = this.anchor;
            var position = {};
            position.top = this.top;
            position.left = this.left;
            this.popup.position = position;
            this.popup.show();
            this._isShow = true;

            // Redraw the content (needed to reflect probable changes in selection from the last time we showed it)
            this.popup.content.needsDraw = true;
		}
	},
	handleEasingChoicesClick: {
    	value: function(event) {
    		event.stopPropagation();

			// Un-highlight the old choice and highlight the new choice
			var easingSelected = this.element.querySelector(".easing-selected");
			if (easingSelected !== null) {
				easingSelected.classList.remove("easing-selected");
			}
    		event.target.classList.add("easing-selected");
    		
    		// Set the easing in the span that called us
    		this.callingComponent.easing = event.target.dataset.ninjaEase;
    		
    		// Hide the menu.
    		this.popup.hide();
    		this._isShow = false;
    	}
   },
	handleDocumentScroll: {
		value: function(event) {
			if (this._isShow = true) {
				this.popup.hide();
			}
		}
	}
    
    /* End: Controllers */
    
});