xooie 1.0.5 → 1.0.6
Sign up to get free protection for your applications and to get access to all the features.
- data/vendor/assets/javascripts/xooie/addons/base.js +0 -0
- data/vendor/assets/javascripts/xooie/addons/carousel_lentils.js +0 -0
- data/vendor/assets/javascripts/xooie/addons/carousel_pagination.js +0 -0
- data/vendor/assets/javascripts/xooie/addons/tab_animation.js +0 -0
- data/vendor/assets/javascripts/xooie/helpers.js +4 -4
- data/vendor/assets/javascripts/xooie/shared.js +4 -4
- data/vendor/assets/javascripts/xooie/stylesheet.js +0 -0
- data/vendor/assets/javascripts/xooie/widgets/carousel.js +3 -3
- data/vendor/assets/javascripts/xooie/xooie.js +4 -4
- metadata +56 -51
- checksums.yaml +0 -7
- data/vendor/assets/javascripts/xooie/addons/dropdown_accordion.js +0 -38
- data/vendor/assets/javascripts/xooie/addons/tab_automation.js +0 -150
- data/vendor/assets/javascripts/xooie/base.js +0 -214
- data/vendor/assets/javascripts/xooie/carousel.js +0 -400
- data/vendor/assets/javascripts/xooie/dialog.js +0 -132
- data/vendor/assets/javascripts/xooie/dropdown.js +0 -273
- data/vendor/assets/javascripts/xooie/tab.js +0 -125
- data/vendor/assets/javascripts/xooie.js +0 -169
@@ -1,400 +0,0 @@
|
|
1
|
-
/*
|
2
|
-
* Copyright 2012 Comcast
|
3
|
-
*
|
4
|
-
* Licensed under the Apache License, Version 2.0 (the "License");
|
5
|
-
* you may not use this file except in compliance with the License.
|
6
|
-
* You may obtain a copy of the License at
|
7
|
-
*
|
8
|
-
* http://www.apache.org/licenses/LICENSE-2.0
|
9
|
-
*
|
10
|
-
* Unless required by applicable law or agreed to in writing, software
|
11
|
-
* distributed under the License is distributed on an "AS IS" BASIS,
|
12
|
-
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
13
|
-
* See the License for the specific language governing permissions and
|
14
|
-
* limitations under the License.
|
15
|
-
*/
|
16
|
-
|
17
|
-
define('xooie/carousel', ['jquery', 'xooie/base'], function($, Base) {
|
18
|
-
|
19
|
-
var resizeTimer = null,
|
20
|
-
carouselElements = $(),
|
21
|
-
clickQueue = [],
|
22
|
-
cssRules = {},
|
23
|
-
cache;
|
24
|
-
|
25
|
-
$(window).on('resize', function() {
|
26
|
-
if (resizeTimer) {
|
27
|
-
clearTimeout(resizeTimer);
|
28
|
-
resizeTimer = null;
|
29
|
-
}
|
30
|
-
if (carouselElements) {
|
31
|
-
resizeTimer = setTimeout(function() {
|
32
|
-
carouselElements.trigger('carouselResize');
|
33
|
-
}, 100);
|
34
|
-
}
|
35
|
-
});
|
36
|
-
|
37
|
-
var Carousel = Base('carousel', function() {
|
38
|
-
var self = this,
|
39
|
-
scrollTimer,
|
40
|
-
onClick, onScroll, onScrollComplete;
|
41
|
-
|
42
|
-
this.isScrolling = false;
|
43
|
-
|
44
|
-
//Define the dispatch tables for various functionality:
|
45
|
-
this.positionUpdaters = {
|
46
|
-
|
47
|
-
"item": function(quantity, direction) {
|
48
|
-
var items = self.content.children(),
|
49
|
-
bias, offset,
|
50
|
-
position = self.wrapper.scrollLeft(),
|
51
|
-
i;
|
52
|
-
|
53
|
-
if (typeof direction === 'undefined') {
|
54
|
-
if (quantity > 0 && quantity <= items.length) {
|
55
|
-
offset = Math.round(items.eq(quantity - 1).position().left);
|
56
|
-
}
|
57
|
-
} else {
|
58
|
-
direction = direction === -1 ? -1 : 1;
|
59
|
-
|
60
|
-
bias = -direction;
|
61
|
-
|
62
|
-
if (!quantity || typeof quantity !== 'number') {
|
63
|
-
quantity = 1;
|
64
|
-
}
|
65
|
-
|
66
|
-
i = self.currentItem(bias) + direction * quantity;
|
67
|
-
i = Math.max(0, Math.min(items.length - 1, i));
|
68
|
-
offset = Math.round(items.eq(i).position().left);
|
69
|
-
}
|
70
|
-
|
71
|
-
return position + offset;
|
72
|
-
},
|
73
|
-
|
74
|
-
"px": function(quantity, direction) {
|
75
|
-
var position;
|
76
|
-
|
77
|
-
if (typeof direction === 'undefined') {
|
78
|
-
position = 0;
|
79
|
-
direction = 1;
|
80
|
-
} else {
|
81
|
-
position = self.wrapper.scrollLeft();
|
82
|
-
}
|
83
|
-
return position + direction * quantity;
|
84
|
-
}
|
85
|
-
|
86
|
-
};
|
87
|
-
|
88
|
-
this.snapMethods = {
|
89
|
-
|
90
|
-
"item": function(){
|
91
|
-
var items = self.content.children(),
|
92
|
-
offset, p1, p2,
|
93
|
-
i = self.currentItem();
|
94
|
-
|
95
|
-
p1 = items.eq(i).position().left;
|
96
|
-
if (Math.abs(p1) < 1) {
|
97
|
-
p1 = p1 < 0 ? Math.ceil(p1) : Math.floor(p1);
|
98
|
-
} else {
|
99
|
-
p1 = Math.round(p1);
|
100
|
-
}
|
101
|
-
|
102
|
-
if (p1 !== 0 && i > 0) {
|
103
|
-
p2 = items.eq(i - 1).position().left;
|
104
|
-
if (Math.abs(p2) < 1) {
|
105
|
-
p2 = p2 < 0 ? Math.ceil(p2) : Math.floor(p2);
|
106
|
-
} else {
|
107
|
-
p2 = Math.round(p2);
|
108
|
-
}
|
109
|
-
|
110
|
-
if (Math.abs(p1) < Math.abs(p2)) {
|
111
|
-
offset = p1 + self.wrapper.scrollLeft();
|
112
|
-
} else {
|
113
|
-
offset = p2 + self.wrapper.scrollLeft();
|
114
|
-
}
|
115
|
-
|
116
|
-
self.wrapper.animate({ scrollLeft: offset });
|
117
|
-
}
|
118
|
-
|
119
|
-
}
|
120
|
-
|
121
|
-
};
|
122
|
-
|
123
|
-
this.displayMethods = {
|
124
|
-
"item": function(container, template){
|
125
|
-
var element, item, items, lastVisible, rightPosition, i;
|
126
|
-
|
127
|
-
items = self.content.children();
|
128
|
-
currentItem = self.currentItem();
|
129
|
-
rightPosition = items.eq(currentItem).position().left + self.wrapper.innerWidth();
|
130
|
-
lastVisible = items.length;
|
131
|
-
|
132
|
-
for (i = currentItem; i < items.length; i += 1) {
|
133
|
-
item = items.eq(i);
|
134
|
-
if (Math.floor(item.position().left) + item.outerWidth() * self.options.visibleThreshold >= rightPosition) {
|
135
|
-
lastVisible = i;
|
136
|
-
break;
|
137
|
-
}
|
138
|
-
}
|
139
|
-
|
140
|
-
element = self.render(template, {
|
141
|
-
current_item: currentItem + 1,
|
142
|
-
last_visible_item: lastVisible,
|
143
|
-
total_items: items.length
|
144
|
-
});
|
145
|
-
|
146
|
-
container.append(element);
|
147
|
-
}
|
148
|
-
};
|
149
|
-
|
150
|
-
//select the content area and wrap it in a container
|
151
|
-
this.content = this.root.find(this.options.contentSelector);
|
152
|
-
this.content.wrap('<div/>');
|
153
|
-
|
154
|
-
this.wrapper = this.content.parent();
|
155
|
-
this.wrapper.addClass('xooie-carousel-wrapper');
|
156
|
-
|
157
|
-
//setting the wrapper's parent to overflow-y=hidden allows us to hide the horizontal scrollbar
|
158
|
-
this.wrapper.parent().addClass('xooie-carousel-crop');
|
159
|
-
|
160
|
-
this.cssRules.heightAdjust = this.stylesheet.addRule('.carousel-' + this.root.data('carousel-instance') + ' .xooie-carousel-crop');
|
161
|
-
|
162
|
-
this.content.addClass('xooie-carousel-content');
|
163
|
-
|
164
|
-
this.content.children().addClass('xooie-carousel-item');
|
165
|
-
|
166
|
-
this.root.find(this.options.controlSelector)
|
167
|
-
.on('click', function(event){
|
168
|
-
event.preventDefault();
|
169
|
-
|
170
|
-
self.updatePosition($(this).data('scroll'));
|
171
|
-
});
|
172
|
-
|
173
|
-
onScrollComplete = function() {
|
174
|
-
self.snap();
|
175
|
-
self.root.trigger('carouselScrollComplete');
|
176
|
-
};
|
177
|
-
|
178
|
-
onScroll = function(){
|
179
|
-
if (scrollTimer) {
|
180
|
-
scrollTimer = clearTimeout(scrollTimer);
|
181
|
-
} else {
|
182
|
-
self.root.removeClass('is-carousel-leftmost is-carousel-rightmost');
|
183
|
-
}
|
184
|
-
|
185
|
-
scrollTimer = setTimeout(onScrollComplete, 250);
|
186
|
-
};
|
187
|
-
|
188
|
-
this.wrapper.on('scroll', onScroll);
|
189
|
-
|
190
|
-
this.root.on({
|
191
|
-
carouselScrollComplete: function(){
|
192
|
-
self.updateDisplay();
|
193
|
-
self.updateLimits();
|
194
|
-
},
|
195
|
-
carouselInit: this.updateDimensions.bind(this),
|
196
|
-
carouselResize: this.updateDimensions.bind(this)
|
197
|
-
});
|
198
|
-
|
199
|
-
//It is possible that images may load after the carousel has instantiated/
|
200
|
-
//Also, this can be used for lazy-loading images
|
201
|
-
//TODO: This can be problematic, since it is triggering update dimensions for each image load
|
202
|
-
this.content.find('img').on('load', this.updateDimensions.bind(this));
|
203
|
-
|
204
|
-
carouselElements = carouselElements.add(this.root);
|
205
|
-
});
|
206
|
-
|
207
|
-
Carousel.setDefaultOptions({
|
208
|
-
contentSelector: '[data-role="carousel-content"]',
|
209
|
-
controlSelector: '[data-role="carousel-control"]',
|
210
|
-
|
211
|
-
displayMode: 'none',
|
212
|
-
displaySelector: '[data-role="carousel-display"]',
|
213
|
-
displayTemplateSelector: '[data-role="carousel-display-template"]',
|
214
|
-
|
215
|
-
snapMode: 'none',
|
216
|
-
visibleThreshold: 0.50
|
217
|
-
});
|
218
|
-
|
219
|
-
//Set css rules for all carousels
|
220
|
-
Carousel.setCSSRules({
|
221
|
-
'.xooie-carousel-wrapper': {
|
222
|
-
'overflow-x': 'scroll',
|
223
|
-
'overflow-y': 'hidden'
|
224
|
-
},
|
225
|
-
'.xooie-carousel-crop': {
|
226
|
-
'overflow-y': 'hidden'
|
227
|
-
},
|
228
|
-
'.xooie-carousel-content': {
|
229
|
-
display: 'table-cell',
|
230
|
-
'white-space': 'nowrap',
|
231
|
-
'font-size': '0px'
|
232
|
-
},
|
233
|
-
'.xooie-carousel-item': {
|
234
|
-
display: 'inline-block',
|
235
|
-
zoom: '1',
|
236
|
-
'*display': 'inline',
|
237
|
-
'font-size': '1em'
|
238
|
-
}
|
239
|
-
});
|
240
|
-
|
241
|
-
cache = {
|
242
|
-
currentItem: 0,
|
243
|
-
lastItem: 0
|
244
|
-
};
|
245
|
-
|
246
|
-
Carousel.prototype.currentItem = function(bias) {
|
247
|
-
var i, items = this.content.children(),
|
248
|
-
position, itemWidth;
|
249
|
-
|
250
|
-
if (typeof bias === 'undefined') {
|
251
|
-
bias = 1;
|
252
|
-
}
|
253
|
-
|
254
|
-
if (bias === 1) {
|
255
|
-
position = this.content.position().left;
|
256
|
-
|
257
|
-
for (i = 0; i < items.length - 1; i++) {
|
258
|
-
itemWidth = items.eq(i).outerWidth(true);
|
259
|
-
|
260
|
-
if (position + this.options.visibleThreshold * itemWidth >= 0){
|
261
|
-
return i;
|
262
|
-
} else {
|
263
|
-
position += itemWidth;
|
264
|
-
}
|
265
|
-
}
|
266
|
-
return items.length - 1;
|
267
|
-
} else {
|
268
|
-
position = this.content.outerWidth(true) + this.content.position().left;
|
269
|
-
|
270
|
-
for (i = items.length - 1; i > 0; i -= 1) {
|
271
|
-
itemWidth = items.eq(i).outerWidth(true);
|
272
|
-
position -= itemWidth;
|
273
|
-
|
274
|
-
if (i > 0 && position <= this.options.visibleThreshold * itemWidth) {
|
275
|
-
return i;
|
276
|
-
}
|
277
|
-
}
|
278
|
-
return 0;
|
279
|
-
}
|
280
|
-
};
|
281
|
-
|
282
|
-
Carousel.prototype.getRightLimit = function(){
|
283
|
-
try {
|
284
|
-
var lastItem = this.content.children(':last'),
|
285
|
-
position = lastItem.position();
|
286
|
-
|
287
|
-
if (position && typeof position.left !== 'undefined') {
|
288
|
-
return Math.floor(position.left) + lastItem.outerWidth(true);
|
289
|
-
}
|
290
|
-
} catch (e) {
|
291
|
-
return;
|
292
|
-
}
|
293
|
-
};
|
294
|
-
|
295
|
-
Carousel.prototype.updateDimensions = function() {
|
296
|
-
var items = this.content.children(),
|
297
|
-
height = 0;
|
298
|
-
|
299
|
-
items.each(function() {
|
300
|
-
var node = $(this);
|
301
|
-
height = Math.max(height, node.outerHeight(true));
|
302
|
-
});
|
303
|
-
|
304
|
-
//set the height of the wrapper's parent (or cropping element) to ensure we hide the scrollbar
|
305
|
-
this.cssRules.heightAdjust.style.height = height + 'px';
|
306
|
-
|
307
|
-
this.updateLimits();
|
308
|
-
this.updateDisplay();
|
309
|
-
this.snap();
|
310
|
-
|
311
|
-
this.root.trigger('carouselUpdated');
|
312
|
-
};
|
313
|
-
|
314
|
-
Carousel.prototype.updateLimits = function() {
|
315
|
-
this.root.toggleClass('is-carousel-leftmost', this.wrapper.scrollLeft() === 0);
|
316
|
-
this.root.toggleClass('is-carousel-rightmost', this.getRightLimit() <= this.wrapper.innerWidth());
|
317
|
-
};
|
318
|
-
|
319
|
-
Carousel.prototype.updatePosition = function(amount, cb) {
|
320
|
-
var match = (amount + '').match(/^([+\-]?)(\d+)(.*)$/),
|
321
|
-
callback,
|
322
|
-
self = this;
|
323
|
-
|
324
|
-
if (!match) {
|
325
|
-
if (typeof cb === 'function') {
|
326
|
-
cb();
|
327
|
-
}
|
328
|
-
|
329
|
-
return;
|
330
|
-
}
|
331
|
-
|
332
|
-
callback = function(){
|
333
|
-
var direction, quantity, units, offset;
|
334
|
-
|
335
|
-
if (match[1] !== '') {
|
336
|
-
direction = (match[1] === '-') ? -1 : 1;
|
337
|
-
}
|
338
|
-
|
339
|
-
quantity = parseInt(match[2], 10);
|
340
|
-
units = match[3];
|
341
|
-
|
342
|
-
if (units === '') {
|
343
|
-
units = 'px';
|
344
|
-
}
|
345
|
-
|
346
|
-
if (typeof self.positionUpdaters[units] === 'function') {
|
347
|
-
offset = self.positionUpdaters[units](quantity, direction);
|
348
|
-
} else {
|
349
|
-
offset = 0;
|
350
|
-
}
|
351
|
-
|
352
|
-
self.isScrolling = true;
|
353
|
-
|
354
|
-
self.root.trigger('carouselMove', offset);
|
355
|
-
|
356
|
-
self.wrapper.animate({ scrollLeft: offset }, 200,
|
357
|
-
function(){
|
358
|
-
self.isScrolling = false;
|
359
|
-
if (typeof cb === 'function') {
|
360
|
-
cb();
|
361
|
-
}
|
362
|
-
}
|
363
|
-
);
|
364
|
-
};
|
365
|
-
|
366
|
-
if (this.isScrolling) {
|
367
|
-
self.wrapper.stop(true,true);
|
368
|
-
}
|
369
|
-
|
370
|
-
callback();
|
371
|
-
|
372
|
-
};
|
373
|
-
|
374
|
-
Carousel.prototype.updateDisplay = function(){
|
375
|
-
if (this.options.displayMode === 'none') {
|
376
|
-
return;
|
377
|
-
}
|
378
|
-
|
379
|
-
var container = this.root.find(this.options.displaySelector),
|
380
|
-
template = this.root.find(this.options.displayTemplateSelector);
|
381
|
-
|
382
|
-
if (container.length === 0 || template.length === 0) {
|
383
|
-
return;
|
384
|
-
}
|
385
|
-
|
386
|
-
container.html('');
|
387
|
-
|
388
|
-
if (typeof this.displayMethods[this.options.displayMode] === 'function') {
|
389
|
-
this.displayMethods[this.options.displayMode](container, template);
|
390
|
-
}
|
391
|
-
};
|
392
|
-
|
393
|
-
Carousel.prototype.snap = function(){
|
394
|
-
if (this.getRightLimit() > this.wrapper.innerWidth() && typeof this.snapMethods[this.options.snapMode] === 'function') {
|
395
|
-
this.snapMethods[this.options.snapMode]();
|
396
|
-
}
|
397
|
-
};
|
398
|
-
|
399
|
-
return Carousel;
|
400
|
-
});
|
@@ -1,132 +0,0 @@
|
|
1
|
-
/*
|
2
|
-
* Copyright 2012 Comcast
|
3
|
-
*
|
4
|
-
* Licensed under the Apache License, Version 2.0 (the "License");
|
5
|
-
* you may not use this file except in compliance with the License.
|
6
|
-
* You may obtain a copy of the License at
|
7
|
-
*
|
8
|
-
* http://www.apache.org/licenses/LICENSE-2.0
|
9
|
-
*
|
10
|
-
* Unless required by applicable law or agreed to in writing, software
|
11
|
-
* distributed under the License is distributed on an "AS IS" BASIS,
|
12
|
-
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
13
|
-
* See the License for the specific language governing permissions and
|
14
|
-
* limitations under the License.
|
15
|
-
*/
|
16
|
-
|
17
|
-
define('xooie/dialog', ['jquery', 'xooie/base'], function($, Base) {
|
18
|
-
|
19
|
-
var Dialog = Base('dialog', function(){
|
20
|
-
var self = this;
|
21
|
-
|
22
|
-
this.id = Dialog._counter++;
|
23
|
-
|
24
|
-
Dialog._instances[this.id] = this;
|
25
|
-
|
26
|
-
this.root.attr('data-dialog-id', this.id);
|
27
|
-
|
28
|
-
//add accessibility attributes
|
29
|
-
this.root.find(this.options.containerSelector).attr('role', 'dialog');
|
30
|
-
|
31
|
-
this.root.addClass('xooie-dialog');
|
32
|
-
|
33
|
-
this.handlers = {
|
34
|
-
mouseup: function(event){
|
35
|
-
Dialog.close(self.id);
|
36
|
-
},
|
37
|
-
|
38
|
-
keyup: function(event){
|
39
|
-
if([13,32].indexOf(event.which) !== -1){
|
40
|
-
Dialog.close(self.id);
|
41
|
-
}
|
42
|
-
}
|
43
|
-
};
|
44
|
-
});
|
45
|
-
|
46
|
-
Dialog.setDefaultOptions({
|
47
|
-
closeButtonSelector: '[data-role="closeButton"]',
|
48
|
-
containerSelector: '[data-role="container"]',
|
49
|
-
|
50
|
-
dialogActiveClass: 'is-dialog-active'
|
51
|
-
});
|
52
|
-
|
53
|
-
Dialog.setCSSRules({
|
54
|
-
'.xooie-dialog': {
|
55
|
-
position: 'fixed',
|
56
|
-
top: 0,
|
57
|
-
bottom: 0,
|
58
|
-
left: 0,
|
59
|
-
right: 0
|
60
|
-
}
|
61
|
-
});
|
62
|
-
|
63
|
-
Dialog.prototype.activate = function(){
|
64
|
-
this.root.addClass(this.options.dialogActiveClass);
|
65
|
-
|
66
|
-
if(Dialog._active === this) {
|
67
|
-
return;
|
68
|
-
}
|
69
|
-
|
70
|
-
if(Dialog._active){
|
71
|
-
Dialog._active.deactivate();
|
72
|
-
}
|
73
|
-
|
74
|
-
this.root.find(this.options.closeButtonSelector)
|
75
|
-
.on(this.handlers);
|
76
|
-
|
77
|
-
Dialog._active = this;
|
78
|
-
|
79
|
-
this.root.trigger('dialogActive');
|
80
|
-
};
|
81
|
-
|
82
|
-
Dialog.prototype.deactivate = function(){
|
83
|
-
this.root.removeClass(this.options.dialogActiveClass);
|
84
|
-
|
85
|
-
if (Dialog._active !== this) {
|
86
|
-
return;
|
87
|
-
}
|
88
|
-
|
89
|
-
this.root.find(this.options.closeButtonSelector)
|
90
|
-
.off(this.handlers);
|
91
|
-
|
92
|
-
Dialog._active = null;
|
93
|
-
|
94
|
-
this.root.trigger('dialogInactive');
|
95
|
-
};
|
96
|
-
|
97
|
-
Dialog._instances = [];
|
98
|
-
Dialog._counter = 0;
|
99
|
-
Dialog._active = null;
|
100
|
-
Dialog._queue = [];
|
101
|
-
|
102
|
-
Dialog.open = function(id){
|
103
|
-
//get dialog instance
|
104
|
-
var dialog = this._instances[id];
|
105
|
-
|
106
|
-
if (typeof dialog === 'undefined' || this._active === dialog){
|
107
|
-
return;
|
108
|
-
}
|
109
|
-
|
110
|
-
if (this._active) {
|
111
|
-
this._queue.push(dialog);
|
112
|
-
} else {
|
113
|
-
dialog.activate();
|
114
|
-
}
|
115
|
-
|
116
|
-
};
|
117
|
-
|
118
|
-
Dialog.close = function(){
|
119
|
-
//get dialog instance
|
120
|
-
if(!this._active) {
|
121
|
-
return;
|
122
|
-
}
|
123
|
-
|
124
|
-
this._active.deactivate();
|
125
|
-
|
126
|
-
if (this._queue.length > 0) {
|
127
|
-
this._queue.pop().activate();
|
128
|
-
}
|
129
|
-
};
|
130
|
-
|
131
|
-
return Dialog;
|
132
|
-
});
|