summaryrefslogtreecommitdiff
path: root/LightBox.Core.js
blob: a39d2a9594ec6f9229636387e0fd2a16f9e44dfb (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
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
var LightBox = LightBox || {}; LightBox["Core"] =
/******/ (function(modules) { // webpackBootstrap
/******/ 	// The module cache
/******/ 	var installedModules = {};

/******/ 	// The require function
/******/ 	function __webpack_require__(moduleId) {

/******/ 		// Check if module is in cache
/******/ 		if(installedModules[moduleId])
/******/ 			return installedModules[moduleId].exports;

/******/ 		// Create a new module (and put it into the cache)
/******/ 		var module = installedModules[moduleId] = {
/******/ 			exports: {},
/******/ 			id: moduleId,
/******/ 			loaded: false
/******/ 		};

/******/ 		// Execute the module function
/******/ 		modules[moduleId].call(module.exports, module, module.exports, __webpack_require__);

/******/ 		// Flag the module as loaded
/******/ 		module.loaded = true;

/******/ 		// Return the exports of the module
/******/ 		return module.exports;
/******/ 	}


/******/ 	// expose the modules object (__webpack_modules__)
/******/ 	__webpack_require__.m = modules;

/******/ 	// expose the module cache
/******/ 	__webpack_require__.c = installedModules;

/******/ 	// __webpack_public_path__
/******/ 	__webpack_require__.p = "";

/******/ 	// Load entry module and return exports
/******/ 	return __webpack_require__(0);
/******/ })
/************************************************************************/
/******/ ([
/* 0 */
/***/ function(module, exports, __webpack_require__) {

	'use strict';

	var _createClass = function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; }(); /**
	                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      * @author Victor Häggqvist
	                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      * @since 2016-01-12
	                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      */

	Object.defineProperty(exports, "__esModule", {
	    value: true
	});

	var _CSSUtil = __webpack_require__(1);

	var _LightDirection = __webpack_require__(2);

	function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }

	var log = __webpack_require__(3);

	log.setDefaultLevel(log.levels.DEBUG);

	var LightBox = function () {
	    function LightBox(targetSelector) {
	        var options = arguments.length <= 1 || arguments[1] === undefined ? {} : arguments[1];

	        _classCallCheck(this, LightBox);

	        log.info('LightBox');
	        this.targets = document.querySelectorAll(targetSelector);
	        log.debug(this.targets);

	        log.debug('HAS_TOUCH ' + LightBox.HAS_TOUCH);
	        var defaultOptions = {
	            allowedTypes: 'png|jpg|jpeg|gif',
	            restrictTypes: false,
	            selectorId: 'imagelightbox',
	            animationSpeed: 350,
	            preloadNext: true,
	            enableKeyboard: true,
	            quitOnEnd: false,
	            quitOnImgClick: false,
	            quitOnDocClick: true
	        };

	        this.options = Object.assign(options, defaultOptions);
	        log.info(this.options);

	        this.target = null;
	        this.image = null;
	        this.imageWidth = 0;
	        this.imageHeight = 0;
	        this.swipeDiff = 0;
	        this.inProgress = false;

	        this.swipeStart = 0;
	        this.swipeEnd = 0;

	        this.onStartListeners = [];
	        this.onEndListeners = [];
	        this.onLoadStartListeners = [];
	        this.onLoadEndListeners = [];

	        this.bindEvents();
	    }

	    _createClass(LightBox, [{
	        key: 'bindEvents',
	        value: function bindEvents() {
	            var _this = this;

	            Array.prototype.forEach.call(this.targets, function (ele) {
	                ele.addEventListener('click', _this.onImageClick.bind(_this));
	            });
	            window.addEventListener('resize', this.windowResizeListener.bind(this));

	            if (this.options.quitOnDocClick) {
	                document.body.addEventListener(LightBox.HAS_TOUCH ? 'touchend' : 'click', this.documentClick.bind(this));
	            }

	            if (this.options.enableKeyboard) {
	                document.body.addEventListener('keyup', this.handleKeyboard.bind(this));
	            }
	        }
	    }, {
	        key: 'handleKeyboard',
	        value: function handleKeyboard(e) {
	            if (this.image === null) return true;

	            e.preventDefault();

	            if (e.keyCode === 27) this.quitLightbox();

	            if (e.keyCode === 37 || e.keyCode === 39) {
	                var gotoIndex = Array.prototype.indexOf.call(this.targets, this.target) - (e.keyCode === 37 ? 1 : -1);

	                if (gotoIndex > this.targets.length - 1) {
	                    this.target = this.targets[0];
	                } else if (gotoIndex < 0) {
	                    this.target = this.targets[this.targets.length - 1];
	                } else {
	                    this.target = this.targets[gotoIndex];
	                }

	                this.loadImage();
	            }
	        }
	    }, {
	        key: 'documentClick',
	        value: function documentClick() {
	            log.debug('document click');

	            if (this.image !== null && this.target.href === this.image.src) {
	                log.info('quitting');
	                if (this.options.quitOnDocClick) this.quitLightbox();
	            }
	        }
	    }, {
	        key: 'quitLightbox',
	        value: function quitLightbox() {
	            var _this2 = this;

	            log.debug('quitLightbox');
	            if (this.image === null) return;

	            _CSSUtil.CSSUtil.setTransitionProperty(this.image, 'opacity ' + this.options.animationSpeed / 1000 + 's linear');
	            setTimeout(function () {
	                // without timeout it's to fast to make it fade and just jumps to 1 instant
	                _this2.image.style.opacity = 0;
	            }, 5);

	            setTimeout(function () {
	                _this2.removeImage();
	                _this2.inProgress = false;

	                _this2.onEndListeners.forEach(function (l) {
	                    return l();
	                });
	            }, this.options.animationSpeed);
	        }
	    }, {
	        key: 'onImageClick',
	        value: function onImageClick(event) {
	            log.debug(event);
	            var element = event.srcElement.parentElement;
	            if (!this.isTargetValid(element)) return true;

	            event.preventDefault();

	            if (this.inProgress) return;

	            this.inProgress = false;

	            this.onStartListeners.forEach(function (l) {
	                return l();
	            });

	            this.target = element;

	            this.loadImage();
	        }
	    }, {
	        key: 'isTargetValid',
	        value: function isTargetValid(element) {
	            if (this.options.restrictTypes === false) return true;

	            var validTypes = new RegExp("(\.(" + this.options.allowedTypes + ")$)");

	            return element.tagName.toLowerCase() === 'a' && validTypes.test(element.href);
	        }
	    }, {
	        key: 'loadImage',
	        value: function loadImage() {
	            var _this3 = this;

	            var direction = arguments.length <= 0 || arguments[0] === undefined ? false : arguments[0];

	            log.info('loadImage');
	            if (this.inProgress) return false;
	            log.debug('not progress');

	            if (this.image !== null) {
	                log.debug('has current image');
	                if (direction !== false && (this.targets.length < 2 || this.options.quitOnEnd === true && (direction === _LightDirection.LightDirection.RIGHT && Array.prototype.indexOf(this.targets, this.target) === 0 || direction === _LightDirection.LightDirection.LEFT && Array.prototype.indexOf(this.targets, this.target) === targets.length - 1))) {
	                    this.quitLightbox();
	                    return false;
	                }

	                log.debug('unload');
	                _CSSUtil.CSSUtil.setTransitionProperty(this.image, 'opacity ' + this.options.animationSpeed / 1000 + 's linear');

	                var transitionArgs = '0px';
	                if (direction !== false) {
	                    transitionArgs = 100 * direction - this.swipeDiff + 'px';
	                }

	                this.image.style.transform = 'translateX(' + transitionArgs + ')';

	                setTimeout(function () {
	                    // without timeout it's to fast to make it fade and just jumps to 1 instant
	                    _this3.image.style.opacity = 0;
	                }, 5);

	                setTimeout(function () {
	                    log.debug('remove from dom');
	                    _this3.removeImage();
	                }, this.options.animationSpeed);

	                this.swipeDiff = 0;
	            }

	            this.inProgress = true;
	            this.onLoadStartListeners.forEach(function (l) {
	                return l();
	            });

	            setTimeout(function () {
	                log.debug('loadImage in');
	                var image = new Image();
	                _this3.image = image;
	                image.onload = function () {
	                    image.id = _this3.options.selectorId;
	                    log.debug('img loaded');
	                    document.body.appendChild(image);
	                    _this3.setImage();

	                    image.style.opacity = 0;

	                    var interpretedSpeed = _this3.options.animationSpeed / 1000;
	                    log.debug(interpretedSpeed);
	                    _CSSUtil.CSSUtil.setTransitionProperty(image, 'opacity ' + interpretedSpeed + 's ease');
	                    image.style.transform = 'translateX(0px)';

	                    setTimeout(function () {
	                        // without timeout it's to fast to make it fade and just jumps to 1 instant
	                        image.style.opacity = 1;
	                    }, 10);

	                    setTimeout(function () {
	                        _this3.inProgress = false;
	                        _this3.onLoadEndListeners.forEach(function (l) {
	                            return l();
	                        });
	                    }, _this3.options.animationSpeed);

	                    if (_this3.options.preloadNext) {
	                        var index = Array.prototype.indexOf.call(_this3.targets, _this3.target);
	                        var next = _this3.targets[index + 1];

	                        if (next !== null && next !== undefined) {
	                            log.debug('preloading next');
	                            var nextImg = new Image();
	                            nextImg.src = next.href;
	                        } else {
	                            log.debug('no preloading');
	                        }
	                    }
	                };
	                image.src = _this3.target.href;

	                _this3.swipeStart = 0;
	                _this3.swipeEnd = 0;
	                //this.imagePosLeft = 0;

	                if (LightBox.HAS_POINTERS) {
	                    image.addEventListener('pointerup', _this3.imageClickEvent.bind(_this3));
	                    image.addEventListener('MSPointerUp', _this3.imageClickEvent.bind(_this3));
	                } else {
	                    image.addEventListener('click', _this3.imageClickEvent.bind(_this3));
	                }

	                ['touchstart', 'pointerdown', 'MSPointerDown'].forEach(function (name) {
	                    image.addEventListener(name, _this3.imageTouchStart.bind(_this3));
	                });

	                ['touchmove', 'pointermove', 'MSPointerMove'].forEach(function (name) {
	                    image.addEventListener(name, _this3.imageTouchMove.bind(_this3));
	                });

	                ['touchend', 'touchcancel', 'pointerup', 'MSPointerUp'].forEach(function (name) {
	                    image.addEventListener(name, _this3.imageTouchEnd.bind(_this3));
	                });
	            }, this.options.animationSpeed + 100);
	        }
	    }, {
	        key: 'removeImage',
	        value: function removeImage() {
	            var image = document.querySelector('#' + this.options.selectorId);
	            document.body.removeChild(image);
	            this.image = null;
	        }
	    }, {
	        key: 'imageClickEvent',
	        value: function imageClickEvent(e) {
	            e.preventDefault();
	            log.debug('click');

	            if (this.options.quitOnImgClick) {
	                this.quitLightbox();
	                return false;
	            }

	            if (this.wasTouched(e)) return true;

	            var posX = e.pageX - e.target.offsetLeft;
	            log.debug(posX);

	            var gotoIndex = Array.prototype.indexOf.call(this.targets, this.target) - (this.imageWidth / 2 > posX ? 1 : -1);

	            if (gotoIndex > this.targets.length - 1) {
	                this.target = this.targets[0];
	            } else if (gotoIndex < 0) {
	                this.target = this.targets[this.targets.length - 1];
	            } else {
	                this.target = this.targets[gotoIndex];
	            }

	            this.loadImage();
	        }
	    }, {
	        key: 'imageTouchStart',
	        value: function imageTouchStart(e) {
	            if (!this.wasTouched(e) || this.options.quitOnImgClick) return true;

	            this.swipeStart = e.pageX || e.touches[0].pageX;
	        }
	    }, {
	        key: 'imageTouchMove',
	        value: function imageTouchMove(e) {
	            if (!this.wasTouched(e) || this.options.quitOnImgClick) return true;

	            e.preventDefault();
	            this.swipeEnd = e.pageX || e.touches[0].pageX;
	            this.swipeDiff = this.swipeStart - this.swipeEnd;

	            this.image.style.transform = 'translateX(' + -this.swipeDiff + 'px)';
	            //CSSUtil.setTransitionProperty(this.image, 'transform 0s linear');
	        }
	    }, {
	        key: 'imageTouchEnd',
	        value: function imageTouchEnd(e) {
	            if (!this.wasTouched(e) || this.options.quitOnImgClick) return true;

	            log.debug(this.swipeDiff);
	            if (Math.abs(this.swipeDiff) > 50) {
	                var gotoIndex = Array.prototype.indexOf.call(this.targets, this.target) - (this.swipeDiff < 0 ? 1 : -1);

	                if (gotoIndex > this.targets.length - 1) {
	                    this.target = this.targets[0];
	                } else if (gotoIndex < 0) {
	                    this.target = this.targets[this.targets.length - 1];
	                } else {
	                    this.target = this.targets[gotoIndex];
	                }

	                var direction = this.swipeDiff > 0 ? _LightDirection.LightDirection.RIGHT : _LightDirection.LightDirection.LEFT;
	                this.loadImage(direction);
	            } else {
	                this.image.style.transform = 'translateX(0px)';
	                //CSSUtil.setTransitionProperty(this.image, 'transform '+ options.animationSpeed / 1000 +'s linear');
	            }
	        }
	    }, {
	        key: 'setImage',
	        value: function setImage() {
	            var _this4 = this;

	            if (!this.image) return false;

	            var screenWidth = window.innerWidth * 0.8;
	            var screenHeight = window.innerHeight * 0.9;

	            var tmpImage = new Image();
	            tmpImage.src = this.image.src;
	            tmpImage.onload = function () {
	                _this4.imageWidth = tmpImage.width;
	                _this4.imageHeight = tmpImage.height;

	                if (_this4.imageWidth > screenWidth || _this4.imageHeight > screenHeight) {
	                    var ratio = _this4.imageWidth / _this4.imageHeight > screenWidth / screenHeight ? _this4.imageWidth / screenWidth : _this4.imageHeight / screenHeight;
	                    _this4.imageWidth /= ratio;
	                    _this4.imageHeight /= ratio;
	                }

	                _this4.image.style.width = _this4.imageWidth + 'px';
	                _this4.image.style.height = _this4.imageHeight + 'px';
	                _this4.image.style.top = (window.innerHeight - _this4.imageHeight) / 2 + 'px';
	                _this4.image.style.left = (window.innerWidth - _this4.imageWidth) / 2 + 'px';
	            };
	        }
	    }, {
	        key: 'wasTouched',
	        value: function wasTouched(event) {
	            if (LightBox.HAS_TOUCH) return true;

	            if (!LightBox.HAS_POINTERS || typeof event === 'undefined' || typeof event.pointerType === 'undefined') return false;

	            if (typeof event.MSPOINTER_TYPE_MOUSE !== 'undefined') {
	                if (event.MSPOINTER_TYPE_MOUSE !== event.pointerType) return true;
	            } else {
	                if (event.pointerType !== 'mouse') return true;
	            }

	            return false;
	        }
	    }, {
	        key: 'switchToIndex',
	        value: function switchToIndex(index) {
	            if (index >= 0 && index < this.targets.length) {
	                this.target = this.targets[index];
	                this.loadImage();
	            }
	        }
	    }, {
	        key: 'windowResizeListener',
	        value: function windowResizeListener() {
	            log.debug('resized');
	            this.setImage();
	        }
	    }, {
	        key: 'addOnStartListener',
	        value: function addOnStartListener(listener) {
	            this.onStartListeners.push(listener);
	        }
	    }, {
	        key: 'addOnEndListener',
	        value: function addOnEndListener(listener) {
	            this.onEndListeners.push(listener);
	        }
	    }, {
	        key: 'addOnLoadStartListener',
	        value: function addOnLoadStartListener(listener) {
	            this.onLoadStartListeners.push(listener);
	        }
	    }, {
	        key: 'addOnLoadEndListener',
	        value: function addOnLoadEndListener(listener) {
	            this.onLoadEndListeners.push(listener);
	        }
	    }, {
	        key: 'registerPlugin',
	        value: function registerPlugin(plugin) {
	            plugin.register(this);
	        }
	    }]);

	    return LightBox;
	}();

	exports.default = LightBox;

	LightBox.HAS_TOUCH = 'ontouchstart' in window;
	LightBox.HAS_POINTERS = window.navigator.pointerEnabled || window.navigator.msPointerEnabled;
	module.exports = exports['default'];

/***/ },
/* 1 */
/***/ function(module, exports) {

	'use strict';

	var _createClass = function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; }();

	Object.defineProperty(exports, "__esModule", {
	    value: true
	});

	function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }

	/**
	 * Created by Victor Häggqvist on 1/12/16.
	 */

	var CSSUtil = exports.CSSUtil = function () {
	    function CSSUtil() {
	        _classCallCheck(this, CSSUtil);
	    }

	    _createClass(CSSUtil, null, [{
	        key: 'setTransitionProperty',

	        /**
	         * transion need to be set on property
	         *
	         * using key-value dont work
	         *
	         * @param ele DOMElement
	         * @param value
	         */
	        value: function setTransitionProperty(ele, value) {
	            var style = ele.style;
	            if (style.transition === '') {
	                style.transition = value;
	                return;
	            }
	            if (style.WebkitTransition === '') {
	                style.WebkitTransition = value;
	                return;
	            }
	            if (style.MozTransition === '') {
	                style.MozTransition = value;
	                return;
	            }
	            if (style.OTransition === '') {
	                style.OTransition = value;
	            }
	        }
	    }, {
	        key: 'cssTransitionSupport',
	        value: function cssTransitionSupport() {
	            var d = document.body || document.documentElement,
	                s = d.style;
	            if (s.WebkitTransition === '') return '-webkit-';
	            if (s.MozTransition === '') return '-moz-';
	            if (s.OTransition === '') return '-o-';
	            if (s.transition === '') return '';
	            return false;
	        }
	    }, {
	        key: 'cssTransitionTranslateX',
	        value: function cssTransitionTranslateX(element, positionX, speed) {
	            var prefix = CSSUtil.cssTransitionSupport();
	            element.style[prefix + 'transform'] = 'translateX(' + positionX + ')';
	            element.style[prefix + 'transition'] = prefix + 'transform ' + speed + 's linear';
	        }
	    }]);

	    return CSSUtil;
	}();

	CSSUtil.isCssTransitionSupport = CSSUtil.cssTransitionSupport() !== false;

/***/ },
/* 2 */
/***/ function(module, exports) {

	"use strict";

	Object.defineProperty(exports, "__esModule", {
	  value: true
	});

	function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }

	/**
	 * Created by Victor Häggqvist on 1/14/16.
	 */

	var LightDirection = exports.LightDirection = function LightDirection() {
	  _classCallCheck(this, LightDirection);
	};

	LightDirection.LEFT = 1;
	LightDirection.RIGHT = -1;

/***/ },
/* 3 */
/***/ function(module, exports, __webpack_require__) {

	var __WEBPACK_AMD_DEFINE_FACTORY__, __WEBPACK_AMD_DEFINE_RESULT__;/* WEBPACK VAR INJECTION */(function(module) {'use strict';

	var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol ? "symbol" : typeof obj; };

	/*
	* loglevel - https://github.com/pimterry/loglevel
	*
	* Copyright (c) 2013 Tim Perry
	* Licensed under the MIT license.
	*/
	(function (root, definition) {
	    "use strict";

	    if (( false ? 'undefined' : _typeof(module)) === 'object' && module.exports && "function" === 'function') {
	        module.exports = definition();
	    } else if ("function" === 'function' && _typeof(__webpack_require__(5)) === 'object') {
	        !(__WEBPACK_AMD_DEFINE_FACTORY__ = (definition), __WEBPACK_AMD_DEFINE_RESULT__ = (typeof __WEBPACK_AMD_DEFINE_FACTORY__ === 'function' ? (__WEBPACK_AMD_DEFINE_FACTORY__.call(exports, __webpack_require__, exports, module)) : __WEBPACK_AMD_DEFINE_FACTORY__), __WEBPACK_AMD_DEFINE_RESULT__ !== undefined && (module.exports = __WEBPACK_AMD_DEFINE_RESULT__));
	    } else {
	        root.log = definition();
	    }
	})(undefined, function () {
	    "use strict";

	    var noop = function noop() {};
	    var undefinedType = "undefined";

	    function realMethod(methodName) {
	        if ((typeof console === 'undefined' ? 'undefined' : _typeof(console)) === undefinedType) {
	            return false; // We can't build a real method without a console to log to
	        } else if (console[methodName] !== undefined) {
	                return bindMethod(console, methodName);
	            } else if (console.log !== undefined) {
	                return bindMethod(console, 'log');
	            } else {
	                return noop;
	            }
	    }

	    function bindMethod(obj, methodName) {
	        var method = obj[methodName];
	        if (typeof method.bind === 'function') {
	            return method.bind(obj);
	        } else {
	            try {
	                return Function.prototype.bind.call(method, obj);
	            } catch (e) {
	                // Missing bind shim or IE8 + Modernizr, fallback to wrapping
	                return function () {
	                    return Function.prototype.apply.apply(method, [obj, arguments]);
	                };
	            }
	        }
	    }

	    // these private functions always need `this` to be set properly

	    function enableLoggingWhenConsoleArrives(methodName, level, loggerName) {
	        return function () {
	            if ((typeof console === 'undefined' ? 'undefined' : _typeof(console)) !== undefinedType) {
	                replaceLoggingMethods.call(this, level, loggerName);
	                this[methodName].apply(this, arguments);
	            }
	        };
	    }

	    function replaceLoggingMethods(level, loggerName) {
	        /*jshint validthis:true */
	        for (var i = 0; i < logMethods.length; i++) {
	            var methodName = logMethods[i];
	            this[methodName] = i < level ? noop : this.methodFactory(methodName, level, loggerName);
	        }
	    }

	    function defaultMethodFactory(methodName, level, loggerName) {
	        /*jshint validthis:true */
	        return realMethod(methodName) || enableLoggingWhenConsoleArrives.apply(this, arguments);
	    }

	    var logMethods = ["trace", "debug", "info", "warn", "error"];

	    function Logger(name, defaultLevel, factory) {
	        var self = this;
	        var currentLevel;
	        var storageKey = "loglevel";
	        if (name) {
	            storageKey += ":" + name;
	        }

	        function persistLevelIfPossible(levelNum) {
	            var levelName = (logMethods[levelNum] || 'silent').toUpperCase();

	            // Use localStorage if available
	            try {
	                window.localStorage[storageKey] = levelName;
	                return;
	            } catch (ignore) {}

	            // Use session cookie as fallback
	            try {
	                window.document.cookie = encodeURIComponent(storageKey) + "=" + levelName + ";";
	            } catch (ignore) {}
	        }

	        function getPersistedLevel() {
	            var storedLevel;

	            try {
	                storedLevel = window.localStorage[storageKey];
	            } catch (ignore) {}

	            if ((typeof storedLevel === 'undefined' ? 'undefined' : _typeof(storedLevel)) === undefinedType) {
	                try {
	                    var cookie = window.document.cookie;
	                    var location = cookie.indexOf(encodeURIComponent(storageKey) + "=");
	                    if (location) {
	                        storedLevel = /^([^;]+)/.exec(cookie.slice(location))[1];
	                    }
	                } catch (ignore) {}
	            }

	            // If the stored level is not valid, treat it as if nothing was stored.
	            if (self.levels[storedLevel] === undefined) {
	                storedLevel = undefined;
	            }

	            return storedLevel;
	        }

	        /*
	         *
	         * Public API
	         *
	         */

	        self.levels = { "TRACE": 0, "DEBUG": 1, "INFO": 2, "WARN": 3,
	            "ERROR": 4, "SILENT": 5 };

	        self.methodFactory = factory || defaultMethodFactory;

	        self.getLevel = function () {
	            return currentLevel;
	        };

	        self.setLevel = function (level, persist) {
	            if (typeof level === "string" && self.levels[level.toUpperCase()] !== undefined) {
	                level = self.levels[level.toUpperCase()];
	            }
	            if (typeof level === "number" && level >= 0 && level <= self.levels.SILENT) {
	                currentLevel = level;
	                if (persist !== false) {
	                    // defaults to true
	                    persistLevelIfPossible(level);
	                }
	                replaceLoggingMethods.call(self, level, name);
	                if ((typeof console === 'undefined' ? 'undefined' : _typeof(console)) === undefinedType && level < self.levels.SILENT) {
	                    return "No console available for logging";
	                }
	            } else {
	                throw "log.setLevel() called with invalid level: " + level;
	            }
	        };

	        self.setDefaultLevel = function (level) {
	            if (!getPersistedLevel()) {
	                self.setLevel(level, false);
	            }
	        };

	        self.enableAll = function (persist) {
	            self.setLevel(self.levels.TRACE, persist);
	        };

	        self.disableAll = function (persist) {
	            self.setLevel(self.levels.SILENT, persist);
	        };

	        // Initialize with the right level
	        var initialLevel = getPersistedLevel();
	        if (initialLevel == null) {
	            initialLevel = defaultLevel == null ? "WARN" : defaultLevel;
	        }
	        self.setLevel(initialLevel, false);
	    }

	    /*
	     *
	     * Package-level API
	     *
	     */

	    var defaultLogger = new Logger();

	    var _loggersByName = {};
	    defaultLogger.getLogger = function getLogger(name) {
	        if (typeof name !== "string" || name === "") {
	            throw new TypeError("You must supply a name when creating a logger.");
	        }

	        var logger = _loggersByName[name];
	        if (!logger) {
	            logger = _loggersByName[name] = new Logger(name, defaultLogger.getLevel(), defaultLogger.methodFactory);
	        }
	        return logger;
	    };

	    // Grab the current global log variable in case of overwrite
	    var _log = (typeof window === 'undefined' ? 'undefined' : _typeof(window)) !== undefinedType ? window.log : undefined;
	    defaultLogger.noConflict = function () {
	        if ((typeof window === 'undefined' ? 'undefined' : _typeof(window)) !== undefinedType && window.log === defaultLogger) {
	            window.log = _log;
	        }

	        return defaultLogger;
	    };

	    return defaultLogger;
	});
	/* WEBPACK VAR INJECTION */}.call(exports, __webpack_require__(4)(module)))

/***/ },
/* 4 */
/***/ function(module, exports) {

	"use strict";

	module.exports = function (module) {
		if (!module.webpackPolyfill) {
			module.deprecate = function () {};
			module.paths = [];
			// module.parent = undefined by default
			module.children = [];
			module.webpackPolyfill = 1;
		}
		return module;
	};

/***/ },
/* 5 */
/***/ function(module, exports) {

	/* WEBPACK VAR INJECTION */(function(__webpack_amd_options__) {module.exports = __webpack_amd_options__;

	/* WEBPACK VAR INJECTION */}.call(exports, {}))

/***/ }
/******/ ]);