aboutsummaryrefslogtreecommitdiff
path: root/js/panels/Timeline/Collapser.js
blob: 42bbbb864e81ab54b74a0ce8659d7cba259fef21 (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
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
/* <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> */

/*
 * Collapser:  Takes two elements and creates a visual "expando:" clicking on one element expands/collapses the other.
 * Required properties:
 * 		clicker: The element that will be clicked on.
 * 		content: The element that will expand or collapse as the clicker is clicked on.
 * Optional properties:
 * 		isCollapsed: Is the content collapsed.  Set to true on serialization (or initialization) to start content in collapsed state.
 * 			Can be manually set as well.
 * 		collapsibleClass: The CSS class to apply to the content and the clicker when collapsed.  Defaults to "collapsible-collapsed".
 * 		isAnimated: Set to true to apply a transition to expand/collapse (defaults to false).
 * 		transitionClass: If isAnimated is set to true, the component will apply transitionClass to the content during the 
 * 			collapse process.  You can then define transitionClass in your style sheet with the desired CSS transitions.
 * 			Defaults to "collapsible-transition".
 * 		contentHeight: If both isAnimated and isCollapsedAtStart are set to true, set contentHeight to the height of the content 
 * 			(in pixels, but without the "px") when not collapsed.  If this value is not set, the first time the content is expanded 
 * 			the transition will not work. Subsequent collapses (and expansions) will transition as expected.
 * 		isLabelClickable: Boolean that indicates whether or not the clicker should have listener events. Defaults to true; set to 
 * 			false for collapsers that will only be operated remotely.
 * 		isToggling: Set this anually toggle the expand/collapse of the content.
 * 		
 */
var Montage = require("montage/core/core").Montage,
	Component = require("montage/ui/component").Component,
	Collapser = exports.Collapser = Montage.create(Component, {

	// This component has no template.
	hasTemplate:{
		value: false
	},
	
	/* === BEGIN: Models === */
	
	// contentHeight: Stores the height of the content just before collapse.
	_contentHeight: {
		value: 0
	},
	contentHeight: {
        serializable: true,
		get: function() {
			return this._contentHeight;
		},
		set: function(newVal) {
			this._contentHeight = newVal;
		}
	},
	
	// isCollapsing: true if the collapser is collapsing (or expanding); used in the draw cycle.
	_isCollapsing: {
		value: false
	},
	
	// isAnimated: boolean to apply transition to expand/collapse 
	_isAnimated : {
		value: false
	},
	isAnimated: {
        serializable: true,
		get: function() {
			return this._isAnimated;
		},
		set: function(newVal) {
			this._isAnimated = newVal;
		}
	},
	
	_bypassAnimation : {
		value: true
	},
	bypassAnimation: {
        serializable: true,
		get: function() {
			return this._bypassAnimation;
		},
		set: function(newVal) {
			this._bypassAnimation= newVal;
			//console.log('bypassAnimation setter ' + newVal)
		}
	},
	 _oldAnimated : {
	 	value: false
	 },
	
	// transitionClass: The CSS class to apply to the content during collapse to provide CSS transition.
	// Note that this CSS class must be defined in your style sheet with the desired transitions.
	_transitionClass : {
		value: "collapsible-transition"
	},
	transitionClass: {
		get: function() {
			return this._transitionClass;
		},
		set: function(newVal) {
			this._transitionClass = newVal;
		}
	},
	
	// isCollapsed: is the content actually collapsed at this moment
	_isCollapsed: {
		value: ""
	},
	isCollapsed : {
        serializable: true,
		get: function() {
			return this._isCollapsed;
		},
		set: function(newVal) {
			if (newVal !== this._isCollapsed) {
				this._isCollapsed = newVal;
				//this.needsDraw = true;
			}
		}
	},
	
	// collapsedClass:  the class to apply to the clicker and content when the content is collapsed.
	_collapsedClass : {
		value: "collapsible-collapsed"
	},
	collapsedClass: {
		get: function() {
			return this._collapsedClass;
		},
		set: function(newVal) {
			this._collapsedClass = newVal;
		}
	},
	
	// _origOverflowValue: Stores the original overflow value of the collapsible element.
	// Why store the value? While the collapsible element is collapsed, obviously we will need overflow: hidden.
	// But when the collapsible element is open, we will need overflow to return to its original value.
	_origOverflowValue : {
		value: false
	},
	
	// isLabelClickable: Boolean for whether or not the label is clickable. If set to false,
	// the label click listener is never applied.  For collapsibles that will only be operated remotely.
	// Defaults to true.
	_isLabelClickable : {
		value: true
	},
	isLabelClickable : {
        serializable: true,
		get: function() {
			return this._isLabelClickable;
		},
		set: function(newVal) {
			this._isLabelClickable = newVal;
		}
	},

    _myContent:{
        value:null
    },

    myContent:{
            serializable:true,
            get:function () {
                return this._myContent;
            },
            set:function (newVal) {
                this._myContent = newVal;
            }
        },

        _clicker:{
            value:null
        },

        clicker:{
            serializable:true,
            get:function () {
                return this._clicker;
            },
            set:function (newVal) {
                this._clicker = newVal;
            }
        },

	// isToggling: Bindable property. Set this (to anything) to trigger a toggle.
	_isToggling: {
		value: true
	},
	isToggling: {
		serializable: true,
		get: function() {
			return this._isToggling;
		},
		set: function(newVal) {
			if (newVal !== this._isToggling) {
				this._isToggling = newVal;
				
				if (this.bypassAnimation === true) {
					this._oldAnimated = this.isAnimated;
					this.isAnimated = false;
				}
				this.myContent.classList.remove(this.transitionClass);
				this.handleCollapserLabelClick();
			}
		}
	},
	
	/* === END: Models === */
	
	/* === BEGIN: Draw cycle === */
	
	prepareForDraw: {
		value: function() {
			// Get the original value of the overflow property:
			this._origOverflowValue = window.getComputedStyle(this.myContent, null).getPropertyValue("overflow");
			if (this.isCollapsed === false) {
				this.myContent.style.height = "auto";
			}
			

			// If the content area is supposed to start out collapsed:
			if (this.isCollapsed) {
				this.myContent.style.height = "0px";
				// Set the overflow to hidden if it's not already
				if (this._origOverflowValue !== "hidden") {
					this.myContent.style.overflow = "hidden";
				}
				this.myContent.classList.add(this.collapsedClass);
				this.clicker.classList.add(this.collapsedClass);
			} else {
				this.myContent.style.height = "auto";
				this.myContent.classList.remove(this.collapsedClass);
				this.clicker.classList.remove(this.collapsedClass);
			}
		}
	},
	draw: {
		value: function() {
			// Is the content area expanding/collapsing?	
			this.myContent.classList.remove(this.transitionClass);	
			if (this._isCollapsing) {
				
				if (this.isAnimated) {
					// Apply the transition class to the content.
					this.myContent.classList.add(this.transitionClass);
					
					// Add a handler for the end of the transition, so we can tidy things up after
					// the transition completes
                    this.myContent.identifier = "myContent";
					this.myContent.addEventListener("webkitTransitionEnd", this, false);	
					
					this.myContent.style.overflow = "hidden";
				}

				// Next, are we expanding or collapsing?
				if (this.myContent.classList.contains(this.collapsedClass)) {
					// It's already collapsed so we are expanding
					this.myContent.style.height = this.contentHeight + "px";
					this.isCollapsed = false;
					
				} else {
					// It's expanded so we are collapsing
					this.myContent.style.height = "0px";
					this.isCollapsed = true;
					
					// Set the overflow to hidden if it isn't already
					if (this._origOverflowValue !== "hidden") {
						this.myContent.style.overflow = "hidden";
					}
				}
				
				// Toggle the CSS class and deactivate the collapsing flag because we are now done.
				this.myContent.classList.toggle(this.collapsedClass);
				this.clicker.classList.toggle(this.collapsedClass);
				this._isCollapsing = false;
				
				// Special cases:  If transition does not happen (in the case of a contentHeight of 0 
				// or isAnimated = false) we need to manually fire it here to do the cleanup.
				if ((this.contentHeight < 3) || (!this.isAnimated)) {
					this.handleMyContentWebkitTransitionEnd();
				}
			}
		}
	},
	
	/* === END: Draw cycle === */
	
	/* === BEGIN: Event handlers === */
	
	// Handle a click on the label
	handleCollapserLabelClick: {
		value: function() {

			// The user has clicked on one of the expandos.  What should we do?
			// First, are we expanding or collapsing?
			if (!this.myContent.classList.contains(this.collapsedClass)) {
				// We are collapsing!
				// Save the current height of the content.
				this.contentHeight = this.myContent.offsetHeight;
				// Set the current height of the content to a pixel height instead of "auto"
				// so that the transition can happen.
				// (This doesn't actually change the appearance of the element, 
				// so it's okay to do here, outside the draw cycle.)
				this.myContent.style.height = this.contentHeight + "px";
				
				this.isCollapsed = true;
			} else {
				this.isCollapsed = false;
			}
			
			// Set the collapsing flag so when the draw cycle begins 
			// it will know to expand/collapse.
			this._isCollapsing = true;
			
			// Set the component to run its draw cycle.
			this.needsDraw = true;

		}
	},
	
	// This handler is bound to the transitionEnd event.  If transitions
	// are disabled, it is called manually.
    handleMyContentWebkitTransitionEnd: {
		value: function(event) {
			
			// Are we animating the transitions?
			if (this.isAnimated) {
				// Yes, transitions are animated.
				// Remove the event listener so it won't fire again.
				this.myContent.removeEventListener("webkitTransitionEnd", this, false);
				
				// remove the CSS class that supplies the transition
				this.myContent.classList.remove(this.transitionClass);
			}
			
			// Set the height of the content area to auto; this way it can expand/collapse as interactions
			// happen within.
			if (!this.myContent.classList.contains(this.collapsedClass)) {
				this.myContent.style.height = "auto";
				// Return the overflow to its original value if it wasn't hidden
				if (this._origOverflowValue !== "hidden") {
					this.myContent.style.overflow = this._origOverflowValue;
				}
				
			}
			
			if (this.bypassAnimation === true) {
				this.isAnimated = this._oldAnimated;
			} else {
				this.bypassAnimation = true;
			}
		}
	}
	
	/* === END: Event handlers === */
});