@materializecss/materialize 1.1.0-alpha → 1.2.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (84) hide show
  1. package/Gruntfile.js +712 -725
  2. package/LICENSE +21 -21
  3. package/README.md +91 -97
  4. package/dist/css/materialize.css +659 -1140
  5. package/dist/css/materialize.min.css +7 -7
  6. package/dist/js/materialize.js +4679 -4654
  7. package/dist/js/materialize.min.js +6 -6
  8. package/extras/noUiSlider/nouislider.css +404 -406
  9. package/extras/noUiSlider/nouislider.js +2147 -2147
  10. package/js/anime.min.js +34 -34
  11. package/js/autocomplete.js +479 -479
  12. package/js/buttons.js +354 -354
  13. package/js/cards.js +40 -40
  14. package/js/carousel.js +732 -717
  15. package/js/cash.js +960 -960
  16. package/js/characterCounter.js +136 -136
  17. package/js/chips.js +486 -486
  18. package/js/collapsible.js +275 -275
  19. package/js/component.js +44 -44
  20. package/js/datepicker.js +983 -976
  21. package/js/dropdown.js +669 -668
  22. package/js/forms.js +285 -275
  23. package/js/global.js +428 -424
  24. package/js/materialbox.js +453 -453
  25. package/js/modal.js +382 -382
  26. package/js/parallax.js +138 -138
  27. package/js/pushpin.js +148 -148
  28. package/js/range.js +263 -263
  29. package/js/scrollspy.js +295 -295
  30. package/js/select.js +391 -451
  31. package/js/sidenav.js +583 -583
  32. package/js/slider.js +359 -359
  33. package/js/tabs.js +402 -402
  34. package/js/tapTarget.js +315 -315
  35. package/js/timepicker.js +712 -647
  36. package/js/toasts.js +325 -322
  37. package/js/tooltip.js +320 -320
  38. package/js/waves.js +614 -614
  39. package/package.json +84 -74
  40. package/sass/_style.scss +929 -0
  41. package/sass/components/_badges.scss +55 -55
  42. package/sass/components/_buttons.scss +322 -322
  43. package/sass/components/_cards.scss +195 -195
  44. package/sass/components/_carousel.scss +90 -90
  45. package/sass/components/_chips.scss +96 -96
  46. package/sass/components/_collapsible.scss +91 -91
  47. package/sass/components/_collection.scss +107 -0
  48. package/sass/components/_color-classes.scss +32 -32
  49. package/sass/components/_color-variables.scss +370 -370
  50. package/sass/components/_datepicker.scss +191 -191
  51. package/sass/components/_dropdown.scss +84 -84
  52. package/sass/components/_global.scss +646 -771
  53. package/sass/components/_grid.scss +158 -156
  54. package/sass/components/_icons-material-design.scss +5 -5
  55. package/sass/components/_materialbox.scss +42 -42
  56. package/sass/components/_modal.scss +97 -97
  57. package/sass/components/_navbar.scss +208 -208
  58. package/sass/components/_normalize.scss +447 -447
  59. package/sass/components/_preloader.scss +334 -334
  60. package/sass/components/_pulse.scss +34 -34
  61. package/sass/components/_sidenav.scss +214 -214
  62. package/sass/components/_slider.scss +91 -91
  63. package/sass/components/_table_of_contents.scss +33 -33
  64. package/sass/components/_tabs.scss +99 -99
  65. package/sass/components/_tapTarget.scss +103 -103
  66. package/sass/components/_timepicker.scss +199 -183
  67. package/sass/components/_toast.scss +58 -58
  68. package/sass/components/_tooltip.scss +32 -32
  69. package/sass/components/_transitions.scss +12 -12
  70. package/sass/components/_typography.scss +62 -60
  71. package/sass/components/_variables.scss +352 -349
  72. package/sass/components/_waves.scss +187 -187
  73. package/sass/components/forms/_checkboxes.scss +200 -200
  74. package/sass/components/forms/_file-input.scss +44 -44
  75. package/sass/components/forms/_forms.scss +22 -22
  76. package/sass/components/forms/_input-fields.scss +388 -379
  77. package/sass/components/forms/_radio-buttons.scss +115 -115
  78. package/sass/components/forms/_range.scss +161 -161
  79. package/sass/components/forms/_select.scss +199 -199
  80. package/sass/components/forms/_switches.scss +91 -91
  81. package/sass/ghpages-materialize.scss +7 -0
  82. package/sass/materialize.scss +42 -41
  83. package/CHANGELOG.md +0 -76
  84. package/HISTORY.md +0 -527
package/js/materialbox.js CHANGED
@@ -1,453 +1,453 @@
1
- (function($, anim) {
2
- 'use strict';
3
-
4
- let _defaults = {
5
- inDuration: 275,
6
- outDuration: 200,
7
- onOpenStart: null,
8
- onOpenEnd: null,
9
- onCloseStart: null,
10
- onCloseEnd: null
11
- };
12
-
13
- /**
14
- * @class
15
- *
16
- */
17
- class Materialbox extends Component {
18
- /**
19
- * Construct Materialbox instance
20
- * @constructor
21
- * @param {Element} el
22
- * @param {Object} options
23
- */
24
- constructor(el, options) {
25
- super(Materialbox, el, options);
26
-
27
- this.el.M_Materialbox = this;
28
-
29
- /**
30
- * Options for the modal
31
- * @member Materialbox#options
32
- * @prop {Number} [inDuration=275] - Length in ms of enter transition
33
- * @prop {Number} [outDuration=200] - Length in ms of exit transition
34
- * @prop {Function} onOpenStart - Callback function called before materialbox is opened
35
- * @prop {Function} onOpenEnd - Callback function called after materialbox is opened
36
- * @prop {Function} onCloseStart - Callback function called before materialbox is closed
37
- * @prop {Function} onCloseEnd - Callback function called after materialbox is closed
38
- */
39
- this.options = $.extend({}, Materialbox.defaults, options);
40
-
41
- this.overlayActive = false;
42
- this.doneAnimating = true;
43
- this.placeholder = $('<div></div>').addClass('material-placeholder');
44
- this.originalWidth = 0;
45
- this.originalHeight = 0;
46
- this.originInlineStyles = this.$el.attr('style');
47
- this.caption = this.el.getAttribute('data-caption') || '';
48
-
49
- // Wrap
50
- this.$el.before(this.placeholder);
51
- this.placeholder.append(this.$el);
52
-
53
- this._setupEventHandlers();
54
- }
55
-
56
- static get defaults() {
57
- return _defaults;
58
- }
59
-
60
- static init(els, options) {
61
- return super.init(this, els, options);
62
- }
63
-
64
- /**
65
- * Get Instance
66
- */
67
- static getInstance(el) {
68
- let domElem = !!el.jquery ? el[0] : el;
69
- return domElem.M_Materialbox;
70
- }
71
-
72
- /**
73
- * Teardown component
74
- */
75
- destroy() {
76
- this._removeEventHandlers();
77
- this.el.M_Materialbox = undefined;
78
-
79
- // Unwrap image
80
- $(this.placeholder)
81
- .after(this.el)
82
- .remove();
83
-
84
- this.$el.removeAttr('style');
85
- }
86
-
87
- /**
88
- * Setup Event Handlers
89
- */
90
- _setupEventHandlers() {
91
- this._handleMaterialboxClickBound = this._handleMaterialboxClick.bind(this);
92
- this.el.addEventListener('click', this._handleMaterialboxClickBound);
93
- }
94
-
95
- /**
96
- * Remove Event Handlers
97
- */
98
- _removeEventHandlers() {
99
- this.el.removeEventListener('click', this._handleMaterialboxClickBound);
100
- }
101
-
102
- /**
103
- * Handle Materialbox Click
104
- * @param {Event} e
105
- */
106
- _handleMaterialboxClick(e) {
107
- // If already modal, return to original
108
- if (this.doneAnimating === false || (this.overlayActive && this.doneAnimating)) {
109
- this.close();
110
- } else {
111
- this.open();
112
- }
113
- }
114
-
115
- /**
116
- * Handle Window Scroll
117
- */
118
- _handleWindowScroll() {
119
- if (this.overlayActive) {
120
- this.close();
121
- }
122
- }
123
-
124
- /**
125
- * Handle Window Resize
126
- */
127
- _handleWindowResize() {
128
- if (this.overlayActive) {
129
- this.close();
130
- }
131
- }
132
-
133
- /**
134
- * Handle Window Resize
135
- * @param {Event} e
136
- */
137
- _handleWindowEscape(e) {
138
- // ESC key
139
- if (e.keyCode === 27 && this.doneAnimating && this.overlayActive) {
140
- this.close();
141
- }
142
- }
143
-
144
- /**
145
- * Find ancestors with overflow: hidden; and make visible
146
- */
147
- _makeAncestorsOverflowVisible() {
148
- this.ancestorsChanged = $();
149
- let ancestor = this.placeholder[0].parentNode;
150
- while (ancestor !== null && !$(ancestor).is(document)) {
151
- let curr = $(ancestor);
152
- if (curr.css('overflow') !== 'visible') {
153
- curr.css('overflow', 'visible');
154
- if (this.ancestorsChanged === undefined) {
155
- this.ancestorsChanged = curr;
156
- } else {
157
- this.ancestorsChanged = this.ancestorsChanged.add(curr);
158
- }
159
- }
160
- ancestor = ancestor.parentNode;
161
- }
162
- }
163
-
164
- /**
165
- * Animate image in
166
- */
167
- _animateImageIn() {
168
- let animOptions = {
169
- targets: this.el,
170
- height: [this.originalHeight, this.newHeight],
171
- width: [this.originalWidth, this.newWidth],
172
- left:
173
- M.getDocumentScrollLeft() +
174
- this.windowWidth / 2 -
175
- this.placeholder.offset().left -
176
- this.newWidth / 2,
177
- top:
178
- M.getDocumentScrollTop() +
179
- this.windowHeight / 2 -
180
- this.placeholder.offset().top -
181
- this.newHeight / 2,
182
- duration: this.options.inDuration,
183
- easing: 'easeOutQuad',
184
- complete: () => {
185
- this.doneAnimating = true;
186
-
187
- // onOpenEnd callback
188
- if (typeof this.options.onOpenEnd === 'function') {
189
- this.options.onOpenEnd.call(this, this.el);
190
- }
191
- }
192
- };
193
-
194
- // Override max-width or max-height if needed
195
- this.maxWidth = this.$el.css('max-width');
196
- this.maxHeight = this.$el.css('max-height');
197
- if (this.maxWidth !== 'none') {
198
- animOptions.maxWidth = this.newWidth;
199
- }
200
- if (this.maxHeight !== 'none') {
201
- animOptions.maxHeight = this.newHeight;
202
- }
203
-
204
- anim(animOptions);
205
- }
206
-
207
- /**
208
- * Animate image out
209
- */
210
- _animateImageOut() {
211
- let animOptions = {
212
- targets: this.el,
213
- width: this.originalWidth,
214
- height: this.originalHeight,
215
- left: 0,
216
- top: 0,
217
- duration: this.options.outDuration,
218
- easing: 'easeOutQuad',
219
- complete: () => {
220
- this.placeholder.css({
221
- height: '',
222
- width: '',
223
- position: '',
224
- top: '',
225
- left: ''
226
- });
227
-
228
- // Revert to width or height attribute
229
- if (this.attrWidth) {
230
- this.$el.attr('width', this.attrWidth);
231
- }
232
- if (this.attrHeight) {
233
- this.$el.attr('height', this.attrHeight);
234
- }
235
-
236
- this.$el.removeAttr('style');
237
- this.originInlineStyles && this.$el.attr('style', this.originInlineStyles);
238
-
239
- // Remove class
240
- this.$el.removeClass('active');
241
- this.doneAnimating = true;
242
-
243
- // Remove overflow overrides on ancestors
244
- if (this.ancestorsChanged.length) {
245
- this.ancestorsChanged.css('overflow', '');
246
- }
247
-
248
- // onCloseEnd callback
249
- if (typeof this.options.onCloseEnd === 'function') {
250
- this.options.onCloseEnd.call(this, this.el);
251
- }
252
- }
253
- };
254
-
255
- anim(animOptions);
256
- }
257
-
258
- /**
259
- * Update open and close vars
260
- */
261
- _updateVars() {
262
- this.windowWidth = window.innerWidth;
263
- this.windowHeight = window.innerHeight;
264
- this.caption = this.el.getAttribute('data-caption') || '';
265
- }
266
-
267
- /**
268
- * Open Materialbox
269
- */
270
- open() {
271
- this._updateVars();
272
- this.originalWidth = this.el.getBoundingClientRect().width;
273
- this.originalHeight = this.el.getBoundingClientRect().height;
274
-
275
- // Set states
276
- this.doneAnimating = false;
277
- this.$el.addClass('active');
278
- this.overlayActive = true;
279
-
280
- // onOpenStart callback
281
- if (typeof this.options.onOpenStart === 'function') {
282
- this.options.onOpenStart.call(this, this.el);
283
- }
284
-
285
- // Set positioning for placeholder
286
- this.placeholder.css({
287
- width: this.placeholder[0].getBoundingClientRect().width + 'px',
288
- height: this.placeholder[0].getBoundingClientRect().height + 'px',
289
- position: 'relative',
290
- top: 0,
291
- left: 0
292
- });
293
-
294
- this._makeAncestorsOverflowVisible();
295
-
296
- // Set css on origin
297
- this.$el.css({
298
- position: 'absolute',
299
- 'z-index': 1000,
300
- 'will-change': 'left, top, width, height'
301
- });
302
-
303
- // Change from width or height attribute to css
304
- this.attrWidth = this.$el.attr('width');
305
- this.attrHeight = this.$el.attr('height');
306
- if (this.attrWidth) {
307
- this.$el.css('width', this.attrWidth + 'px');
308
- this.$el.removeAttr('width');
309
- }
310
- if (this.attrHeight) {
311
- this.$el.css('width', this.attrHeight + 'px');
312
- this.$el.removeAttr('height');
313
- }
314
-
315
- // Add overlay
316
- this.$overlay = $('<div id="materialbox-overlay"></div>')
317
- .css({
318
- opacity: 0
319
- })
320
- .one('click', () => {
321
- if (this.doneAnimating) {
322
- this.close();
323
- }
324
- });
325
-
326
- // Put before in origin image to preserve z-index layering.
327
- this.$el.before(this.$overlay);
328
-
329
- // Set dimensions if needed
330
- let overlayOffset = this.$overlay[0].getBoundingClientRect();
331
- this.$overlay.css({
332
- width: this.windowWidth + 'px',
333
- height: this.windowHeight + 'px',
334
- left: -1 * overlayOffset.left + 'px',
335
- top: -1 * overlayOffset.top + 'px'
336
- });
337
-
338
- anim.remove(this.el);
339
- anim.remove(this.$overlay[0]);
340
-
341
- // Animate Overlay
342
- anim({
343
- targets: this.$overlay[0],
344
- opacity: 1,
345
- duration: this.options.inDuration,
346
- easing: 'easeOutQuad'
347
- });
348
-
349
- // Add and animate caption if it exists
350
- if (this.caption !== '') {
351
- if (this.$photocaption) {
352
- anim.remove(this.$photoCaption[0]);
353
- }
354
- this.$photoCaption = $('<div class="materialbox-caption"></div>');
355
- this.$photoCaption.text(this.caption);
356
- $('body').append(this.$photoCaption);
357
- this.$photoCaption.css({ display: 'inline' });
358
-
359
- anim({
360
- targets: this.$photoCaption[0],
361
- opacity: 1,
362
- duration: this.options.inDuration,
363
- easing: 'easeOutQuad'
364
- });
365
- }
366
-
367
- // Resize Image
368
- let ratio = 0;
369
- let widthPercent = this.originalWidth / this.windowWidth;
370
- let heightPercent = this.originalHeight / this.windowHeight;
371
- this.newWidth = 0;
372
- this.newHeight = 0;
373
-
374
- if (widthPercent > heightPercent) {
375
- ratio = this.originalHeight / this.originalWidth;
376
- this.newWidth = this.windowWidth * 0.9;
377
- this.newHeight = this.windowWidth * 0.9 * ratio;
378
- } else {
379
- ratio = this.originalWidth / this.originalHeight;
380
- this.newWidth = this.windowHeight * 0.9 * ratio;
381
- this.newHeight = this.windowHeight * 0.9;
382
- }
383
-
384
- this._animateImageIn();
385
-
386
- // Handle Exit triggers
387
- this._handleWindowScrollBound = this._handleWindowScroll.bind(this);
388
- this._handleWindowResizeBound = this._handleWindowResize.bind(this);
389
- this._handleWindowEscapeBound = this._handleWindowEscape.bind(this);
390
-
391
- window.addEventListener('scroll', this._handleWindowScrollBound);
392
- window.addEventListener('resize', this._handleWindowResizeBound);
393
- window.addEventListener('keyup', this._handleWindowEscapeBound);
394
- }
395
-
396
- /**
397
- * Close Materialbox
398
- */
399
- close() {
400
- this._updateVars();
401
- this.doneAnimating = false;
402
-
403
- // onCloseStart callback
404
- if (typeof this.options.onCloseStart === 'function') {
405
- this.options.onCloseStart.call(this, this.el);
406
- }
407
-
408
- anim.remove(this.el);
409
- anim.remove(this.$overlay[0]);
410
-
411
- if (this.caption !== '') {
412
- anim.remove(this.$photoCaption[0]);
413
- }
414
-
415
- // disable exit handlers
416
- window.removeEventListener('scroll', this._handleWindowScrollBound);
417
- window.removeEventListener('resize', this._handleWindowResizeBound);
418
- window.removeEventListener('keyup', this._handleWindowEscapeBound);
419
-
420
- anim({
421
- targets: this.$overlay[0],
422
- opacity: 0,
423
- duration: this.options.outDuration,
424
- easing: 'easeOutQuad',
425
- complete: () => {
426
- this.overlayActive = false;
427
- this.$overlay.remove();
428
- }
429
- });
430
-
431
- this._animateImageOut();
432
-
433
- // Remove Caption + reset css settings on image
434
- if (this.caption !== '') {
435
- anim({
436
- targets: this.$photoCaption[0],
437
- opacity: 0,
438
- duration: this.options.outDuration,
439
- easing: 'easeOutQuad',
440
- complete: () => {
441
- this.$photoCaption.remove();
442
- }
443
- });
444
- }
445
- }
446
- }
447
-
448
- M.Materialbox = Materialbox;
449
-
450
- if (M.jQueryLoaded) {
451
- M.initializeJqueryWrapper(Materialbox, 'materialbox', 'M_Materialbox');
452
- }
453
- })(cash, M.anime);
1
+ (function($, anim) {
2
+ 'use strict';
3
+
4
+ let _defaults = {
5
+ inDuration: 275,
6
+ outDuration: 200,
7
+ onOpenStart: null,
8
+ onOpenEnd: null,
9
+ onCloseStart: null,
10
+ onCloseEnd: null
11
+ };
12
+
13
+ /**
14
+ * @class
15
+ *
16
+ */
17
+ class Materialbox extends Component {
18
+ /**
19
+ * Construct Materialbox instance
20
+ * @constructor
21
+ * @param {Element} el
22
+ * @param {Object} options
23
+ */
24
+ constructor(el, options) {
25
+ super(Materialbox, el, options);
26
+
27
+ this.el.M_Materialbox = this;
28
+
29
+ /**
30
+ * Options for the modal
31
+ * @member Materialbox#options
32
+ * @prop {Number} [inDuration=275] - Length in ms of enter transition
33
+ * @prop {Number} [outDuration=200] - Length in ms of exit transition
34
+ * @prop {Function} onOpenStart - Callback function called before materialbox is opened
35
+ * @prop {Function} onOpenEnd - Callback function called after materialbox is opened
36
+ * @prop {Function} onCloseStart - Callback function called before materialbox is closed
37
+ * @prop {Function} onCloseEnd - Callback function called after materialbox is closed
38
+ */
39
+ this.options = $.extend({}, Materialbox.defaults, options);
40
+
41
+ this.overlayActive = false;
42
+ this.doneAnimating = true;
43
+ this.placeholder = $('<div></div>').addClass('material-placeholder');
44
+ this.originalWidth = 0;
45
+ this.originalHeight = 0;
46
+ this.originInlineStyles = this.$el.attr('style');
47
+ this.caption = this.el.getAttribute('data-caption') || '';
48
+
49
+ // Wrap
50
+ this.$el.before(this.placeholder);
51
+ this.placeholder.append(this.$el);
52
+
53
+ this._setupEventHandlers();
54
+ }
55
+
56
+ static get defaults() {
57
+ return _defaults;
58
+ }
59
+
60
+ static init(els, options) {
61
+ return super.init(this, els, options);
62
+ }
63
+
64
+ /**
65
+ * Get Instance
66
+ */
67
+ static getInstance(el) {
68
+ let domElem = !!el.jquery ? el[0] : el;
69
+ return domElem.M_Materialbox;
70
+ }
71
+
72
+ /**
73
+ * Teardown component
74
+ */
75
+ destroy() {
76
+ this._removeEventHandlers();
77
+ this.el.M_Materialbox = undefined;
78
+
79
+ // Unwrap image
80
+ $(this.placeholder)
81
+ .after(this.el)
82
+ .remove();
83
+
84
+ this.$el.removeAttr('style');
85
+ }
86
+
87
+ /**
88
+ * Setup Event Handlers
89
+ */
90
+ _setupEventHandlers() {
91
+ this._handleMaterialboxClickBound = this._handleMaterialboxClick.bind(this);
92
+ this.el.addEventListener('click', this._handleMaterialboxClickBound);
93
+ }
94
+
95
+ /**
96
+ * Remove Event Handlers
97
+ */
98
+ _removeEventHandlers() {
99
+ this.el.removeEventListener('click', this._handleMaterialboxClickBound);
100
+ }
101
+
102
+ /**
103
+ * Handle Materialbox Click
104
+ * @param {Event} e
105
+ */
106
+ _handleMaterialboxClick(e) {
107
+ // If already modal, return to original
108
+ if (this.doneAnimating === false || (this.overlayActive && this.doneAnimating)) {
109
+ this.close();
110
+ } else {
111
+ this.open();
112
+ }
113
+ }
114
+
115
+ /**
116
+ * Handle Window Scroll
117
+ */
118
+ _handleWindowScroll() {
119
+ if (this.overlayActive) {
120
+ this.close();
121
+ }
122
+ }
123
+
124
+ /**
125
+ * Handle Window Resize
126
+ */
127
+ _handleWindowResize() {
128
+ if (this.overlayActive) {
129
+ this.close();
130
+ }
131
+ }
132
+
133
+ /**
134
+ * Handle Window Resize
135
+ * @param {Event} e
136
+ */
137
+ _handleWindowEscape(e) {
138
+ // ESC key
139
+ if (e.keyCode === 27 && this.doneAnimating && this.overlayActive) {
140
+ this.close();
141
+ }
142
+ }
143
+
144
+ /**
145
+ * Find ancestors with overflow: hidden; and make visible
146
+ */
147
+ _makeAncestorsOverflowVisible() {
148
+ this.ancestorsChanged = $();
149
+ let ancestor = this.placeholder[0].parentNode;
150
+ while (ancestor !== null && !$(ancestor).is(document)) {
151
+ let curr = $(ancestor);
152
+ if (curr.css('overflow') !== 'visible') {
153
+ curr.css('overflow', 'visible');
154
+ if (this.ancestorsChanged === undefined) {
155
+ this.ancestorsChanged = curr;
156
+ } else {
157
+ this.ancestorsChanged = this.ancestorsChanged.add(curr);
158
+ }
159
+ }
160
+ ancestor = ancestor.parentNode;
161
+ }
162
+ }
163
+
164
+ /**
165
+ * Animate image in
166
+ */
167
+ _animateImageIn() {
168
+ let animOptions = {
169
+ targets: this.el,
170
+ height: [this.originalHeight, this.newHeight],
171
+ width: [this.originalWidth, this.newWidth],
172
+ left:
173
+ M.getDocumentScrollLeft() +
174
+ this.windowWidth / 2 -
175
+ this.placeholder.offset().left -
176
+ this.newWidth / 2,
177
+ top:
178
+ M.getDocumentScrollTop() +
179
+ this.windowHeight / 2 -
180
+ this.placeholder.offset().top -
181
+ this.newHeight / 2,
182
+ duration: this.options.inDuration,
183
+ easing: 'easeOutQuad',
184
+ complete: () => {
185
+ this.doneAnimating = true;
186
+
187
+ // onOpenEnd callback
188
+ if (typeof this.options.onOpenEnd === 'function') {
189
+ this.options.onOpenEnd.call(this, this.el);
190
+ }
191
+ }
192
+ };
193
+
194
+ // Override max-width or max-height if needed
195
+ this.maxWidth = this.$el.css('max-width');
196
+ this.maxHeight = this.$el.css('max-height');
197
+ if (this.maxWidth !== 'none') {
198
+ animOptions.maxWidth = this.newWidth;
199
+ }
200
+ if (this.maxHeight !== 'none') {
201
+ animOptions.maxHeight = this.newHeight;
202
+ }
203
+
204
+ anim(animOptions);
205
+ }
206
+
207
+ /**
208
+ * Animate image out
209
+ */
210
+ _animateImageOut() {
211
+ let animOptions = {
212
+ targets: this.el,
213
+ width: this.originalWidth,
214
+ height: this.originalHeight,
215
+ left: 0,
216
+ top: 0,
217
+ duration: this.options.outDuration,
218
+ easing: 'easeOutQuad',
219
+ complete: () => {
220
+ this.placeholder.css({
221
+ height: '',
222
+ width: '',
223
+ position: '',
224
+ top: '',
225
+ left: ''
226
+ });
227
+
228
+ // Revert to width or height attribute
229
+ if (this.attrWidth) {
230
+ this.$el.attr('width', this.attrWidth);
231
+ }
232
+ if (this.attrHeight) {
233
+ this.$el.attr('height', this.attrHeight);
234
+ }
235
+
236
+ this.$el.removeAttr('style');
237
+ this.originInlineStyles && this.$el.attr('style', this.originInlineStyles);
238
+
239
+ // Remove class
240
+ this.$el.removeClass('active');
241
+ this.doneAnimating = true;
242
+
243
+ // Remove overflow overrides on ancestors
244
+ if (this.ancestorsChanged.length) {
245
+ this.ancestorsChanged.css('overflow', '');
246
+ }
247
+
248
+ // onCloseEnd callback
249
+ if (typeof this.options.onCloseEnd === 'function') {
250
+ this.options.onCloseEnd.call(this, this.el);
251
+ }
252
+ }
253
+ };
254
+
255
+ anim(animOptions);
256
+ }
257
+
258
+ /**
259
+ * Update open and close vars
260
+ */
261
+ _updateVars() {
262
+ this.windowWidth = window.innerWidth;
263
+ this.windowHeight = window.innerHeight;
264
+ this.caption = this.el.getAttribute('data-caption') || '';
265
+ }
266
+
267
+ /**
268
+ * Open Materialbox
269
+ */
270
+ open() {
271
+ this._updateVars();
272
+ this.originalWidth = this.el.getBoundingClientRect().width;
273
+ this.originalHeight = this.el.getBoundingClientRect().height;
274
+
275
+ // Set states
276
+ this.doneAnimating = false;
277
+ this.$el.addClass('active');
278
+ this.overlayActive = true;
279
+
280
+ // onOpenStart callback
281
+ if (typeof this.options.onOpenStart === 'function') {
282
+ this.options.onOpenStart.call(this, this.el);
283
+ }
284
+
285
+ // Set positioning for placeholder
286
+ this.placeholder.css({
287
+ width: this.placeholder[0].getBoundingClientRect().width + 'px',
288
+ height: this.placeholder[0].getBoundingClientRect().height + 'px',
289
+ position: 'relative',
290
+ top: 0,
291
+ left: 0
292
+ });
293
+
294
+ this._makeAncestorsOverflowVisible();
295
+
296
+ // Set css on origin
297
+ this.$el.css({
298
+ position: 'absolute',
299
+ 'z-index': 1000,
300
+ 'will-change': 'left, top, width, height'
301
+ });
302
+
303
+ // Change from width or height attribute to css
304
+ this.attrWidth = this.$el.attr('width');
305
+ this.attrHeight = this.$el.attr('height');
306
+ if (this.attrWidth) {
307
+ this.$el.css('width', this.attrWidth + 'px');
308
+ this.$el.removeAttr('width');
309
+ }
310
+ if (this.attrHeight) {
311
+ this.$el.css('width', this.attrHeight + 'px');
312
+ this.$el.removeAttr('height');
313
+ }
314
+
315
+ // Add overlay
316
+ this.$overlay = $('<div id="materialbox-overlay"></div>')
317
+ .css({
318
+ opacity: 0
319
+ })
320
+ .one('click', () => {
321
+ if (this.doneAnimating) {
322
+ this.close();
323
+ }
324
+ });
325
+
326
+ // Put before in origin image to preserve z-index layering.
327
+ this.$el.before(this.$overlay);
328
+
329
+ // Set dimensions if needed
330
+ let overlayOffset = this.$overlay[0].getBoundingClientRect();
331
+ this.$overlay.css({
332
+ width: this.windowWidth + 'px',
333
+ height: this.windowHeight + 'px',
334
+ left: -1 * overlayOffset.left + 'px',
335
+ top: -1 * overlayOffset.top + 'px'
336
+ });
337
+
338
+ anim.remove(this.el);
339
+ anim.remove(this.$overlay[0]);
340
+
341
+ // Animate Overlay
342
+ anim({
343
+ targets: this.$overlay[0],
344
+ opacity: 1,
345
+ duration: this.options.inDuration,
346
+ easing: 'easeOutQuad'
347
+ });
348
+
349
+ // Add and animate caption if it exists
350
+ if (this.caption !== '') {
351
+ if (this.$photocaption) {
352
+ anim.remove(this.$photoCaption[0]);
353
+ }
354
+ this.$photoCaption = $('<div class="materialbox-caption"></div>');
355
+ this.$photoCaption.text(this.caption);
356
+ $('body').append(this.$photoCaption);
357
+ this.$photoCaption.css({ display: 'inline' });
358
+
359
+ anim({
360
+ targets: this.$photoCaption[0],
361
+ opacity: 1,
362
+ duration: this.options.inDuration,
363
+ easing: 'easeOutQuad'
364
+ });
365
+ }
366
+
367
+ // Resize Image
368
+ let ratio = 0;
369
+ let widthPercent = this.originalWidth / this.windowWidth;
370
+ let heightPercent = this.originalHeight / this.windowHeight;
371
+ this.newWidth = 0;
372
+ this.newHeight = 0;
373
+
374
+ if (widthPercent > heightPercent) {
375
+ ratio = this.originalHeight / this.originalWidth;
376
+ this.newWidth = this.windowWidth * 0.9;
377
+ this.newHeight = this.windowWidth * 0.9 * ratio;
378
+ } else {
379
+ ratio = this.originalWidth / this.originalHeight;
380
+ this.newWidth = this.windowHeight * 0.9 * ratio;
381
+ this.newHeight = this.windowHeight * 0.9;
382
+ }
383
+
384
+ this._animateImageIn();
385
+
386
+ // Handle Exit triggers
387
+ this._handleWindowScrollBound = this._handleWindowScroll.bind(this);
388
+ this._handleWindowResizeBound = this._handleWindowResize.bind(this);
389
+ this._handleWindowEscapeBound = this._handleWindowEscape.bind(this);
390
+
391
+ window.addEventListener('scroll', this._handleWindowScrollBound);
392
+ window.addEventListener('resize', this._handleWindowResizeBound);
393
+ window.addEventListener('keyup', this._handleWindowEscapeBound);
394
+ }
395
+
396
+ /**
397
+ * Close Materialbox
398
+ */
399
+ close() {
400
+ this._updateVars();
401
+ this.doneAnimating = false;
402
+
403
+ // onCloseStart callback
404
+ if (typeof this.options.onCloseStart === 'function') {
405
+ this.options.onCloseStart.call(this, this.el);
406
+ }
407
+
408
+ anim.remove(this.el);
409
+ anim.remove(this.$overlay[0]);
410
+
411
+ if (this.caption !== '') {
412
+ anim.remove(this.$photoCaption[0]);
413
+ }
414
+
415
+ // disable exit handlers
416
+ window.removeEventListener('scroll', this._handleWindowScrollBound);
417
+ window.removeEventListener('resize', this._handleWindowResizeBound);
418
+ window.removeEventListener('keyup', this._handleWindowEscapeBound);
419
+
420
+ anim({
421
+ targets: this.$overlay[0],
422
+ opacity: 0,
423
+ duration: this.options.outDuration,
424
+ easing: 'easeOutQuad',
425
+ complete: () => {
426
+ this.overlayActive = false;
427
+ this.$overlay.remove();
428
+ }
429
+ });
430
+
431
+ this._animateImageOut();
432
+
433
+ // Remove Caption + reset css settings on image
434
+ if (this.caption !== '') {
435
+ anim({
436
+ targets: this.$photoCaption[0],
437
+ opacity: 0,
438
+ duration: this.options.outDuration,
439
+ easing: 'easeOutQuad',
440
+ complete: () => {
441
+ this.$photoCaption.remove();
442
+ }
443
+ });
444
+ }
445
+ }
446
+ }
447
+
448
+ M.Materialbox = Materialbox;
449
+
450
+ if (M.jQueryLoaded) {
451
+ M.initializeJqueryWrapper(Materialbox, 'materialbox', 'M_Materialbox');
452
+ }
453
+ })(cash, M.anime);