blog/themes/cmd/source/js/material-photo-gallery.js

1848 lines
53 KiB
JavaScript
Raw Normal View History

2020-12-27 13:17:29 +00:00
(function e(t,n,r){function s(o,u){if(!n[o]){if(!t[o]){var a=typeof require=="function"&&require;if(!u&&a)return a(o,!0);if(i)return i(o,!0);var f=new Error("Cannot find module '"+o+"'");throw f.code="MODULE_NOT_FOUND",f}var l=n[o]={exports:{}};t[o][0].call(l.exports,function(e){var n=t[o][1][e];return s(n?n:e)},l,l.exports,e,t,n,r)}return n[o].exports}var i=typeof require=="function"&&require;for(var o=0;o<r.length;o++)s(r[o]);return s})({1:[function(require,module,exports){
/*!
* eventie v1.0.6
* event binding helper
* eventie.bind( elem, 'click', myFn )
* eventie.unbind( elem, 'click', myFn )
* MIT license
*/
/*jshint browser: true, undef: true, unused: true */
/*global define: false, module: false */
( function( window ) {
'use strict';
var docElem = document.documentElement;
var bind = function() {};
function getIEEvent( obj ) {
var event = window.event;
// add event.target
event.target = event.target || event.srcElement || obj;
return event;
}
if ( docElem.addEventListener ) {
bind = function( obj, type, fn ) {
obj.addEventListener( type, fn, false );
};
} else if ( docElem.attachEvent ) {
bind = function( obj, type, fn ) {
obj[ type + fn ] = fn.handleEvent ?
function() {
var event = getIEEvent( obj );
fn.handleEvent.call( fn, event );
} :
function() {
var event = getIEEvent( obj );
fn.call( obj, event );
};
obj.attachEvent( "on" + type, obj[ type + fn ] );
};
}
var unbind = function() {};
if ( docElem.removeEventListener ) {
unbind = function( obj, type, fn ) {
obj.removeEventListener( type, fn, false );
};
} else if ( docElem.detachEvent ) {
unbind = function( obj, type, fn ) {
obj.detachEvent( "on" + type, obj[ type + fn ] );
try {
delete obj[ type + fn ];
} catch ( err ) {
// can't delete window object properties
obj[ type + fn ] = undefined;
}
};
}
var eventie = {
bind: bind,
unbind: unbind
};
// ----- module definition ----- //
if ( typeof define === 'function' && define.amd ) {
// AMD
define( eventie );
} else if ( typeof exports === 'object' ) {
// CommonJS
module.exports = eventie;
} else {
// browser global
window.eventie = eventie;
}
})( window );
},{}],2:[function(require,module,exports){
/*!
* imagesLoaded v3.2.0
* JavaScript is all like "You images are done yet or what?"
* MIT License
*/
( function( window, factory ) { 'use strict';
// universal module definition
/*global define: false, module: false, require: false */
if ( typeof define == 'function' && define.amd ) {
// AMD
define( [
'eventEmitter/EventEmitter',
'eventie/eventie'
], function( EventEmitter, eventie ) {
return factory( window, EventEmitter, eventie );
});
} else if ( typeof module == 'object' && module.exports ) {
// CommonJS
module.exports = factory(
window,
require('wolfy87-eventemitter'),
require('eventie')
);
} else {
// browser global
window.imagesLoaded = factory(
window,
window.EventEmitter,
window.eventie
);
}
})( window,
// -------------------------- factory -------------------------- //
function factory( window, EventEmitter, eventie ) {
'use strict';
var $ = window.jQuery;
var console = window.console;
// -------------------------- helpers -------------------------- //
// extend objects
function extend( a, b ) {
for ( var prop in b ) {
a[ prop ] = b[ prop ];
}
return a;
}
var objToString = Object.prototype.toString;
function isArray( obj ) {
return objToString.call( obj ) == '[object Array]';
}
// turn element or nodeList into an array
function makeArray( obj ) {
var ary = [];
if ( isArray( obj ) ) {
// use object if already an array
ary = obj;
} else if ( typeof obj.length == 'number' ) {
// convert nodeList to array
for ( var i=0; i < obj.length; i++ ) {
ary.push( obj[i] );
}
} else {
// array of single index
ary.push( obj );
}
return ary;
}
// -------------------------- imagesLoaded -------------------------- //
/**
* @param {Array, Element, NodeList, String} elem
* @param {Object or Function} options - if function, use as callback
* @param {Function} onAlways - callback function
*/
function ImagesLoaded( elem, options, onAlways ) {
// coerce ImagesLoaded() without new, to be new ImagesLoaded()
if ( !( this instanceof ImagesLoaded ) ) {
return new ImagesLoaded( elem, options, onAlways );
}
// use elem as selector string
if ( typeof elem == 'string' ) {
elem = document.querySelectorAll( elem );
}
this.elements = makeArray( elem );
this.options = extend( {}, this.options );
if ( typeof options == 'function' ) {
onAlways = options;
} else {
extend( this.options, options );
}
if ( onAlways ) {
this.on( 'always', onAlways );
}
this.getImages();
if ( $ ) {
// add jQuery Deferred object
this.jqDeferred = new $.Deferred();
}
// HACK check async to allow time to bind listeners
var _this = this;
setTimeout( function() {
_this.check();
});
}
ImagesLoaded.prototype = new EventEmitter();
ImagesLoaded.prototype.options = {};
ImagesLoaded.prototype.getImages = function() {
this.images = [];
// filter & find items if we have an item selector
for ( var i=0; i < this.elements.length; i++ ) {
var elem = this.elements[i];
this.addElementImages( elem );
}
};
/**
* @param {Node} element
*/
ImagesLoaded.prototype.addElementImages = function( elem ) {
// filter siblings
if ( elem.nodeName == 'IMG' ) {
this.addImage( elem );
}
// get background image on element
if ( this.options.background === true ) {
this.addElementBackgroundImages( elem );
}
// find children
// no non-element nodes, #143
var nodeType = elem.nodeType;
if ( !nodeType || !elementNodeTypes[ nodeType ] ) {
return;
}
var childImgs = elem.querySelectorAll('img');
// concat childElems to filterFound array
for ( var i=0; i < childImgs.length; i++ ) {
var img = childImgs[i];
this.addImage( img );
}
// get child background images
if ( typeof this.options.background == 'string' ) {
var children = elem.querySelectorAll( this.options.background );
for ( i=0; i < children.length; i++ ) {
var child = children[i];
this.addElementBackgroundImages( child );
}
}
};
var elementNodeTypes = {
1: true,
9: true,
11: true
};
ImagesLoaded.prototype.addElementBackgroundImages = function( elem ) {
var style = getStyle( elem );
// get url inside url("...")
var reURL = /url\(['"]*([^'"\)]+)['"]*\)/gi;
var matches = reURL.exec( style.backgroundImage );
while ( matches !== null ) {
var url = matches && matches[1];
if ( url ) {
this.addBackground( url, elem );
}
matches = reURL.exec( style.backgroundImage );
}
};
// IE8
var getStyle = window.getComputedStyle || function( elem ) {
return elem.currentStyle;
};
/**
* @param {Image} img
*/
ImagesLoaded.prototype.addImage = function( img ) {
var loadingImage = new LoadingImage( img );
this.images.push( loadingImage );
};
ImagesLoaded.prototype.addBackground = function( url, elem ) {
var background = new Background( url, elem );
this.images.push( background );
};
ImagesLoaded.prototype.check = function() {
var _this = this;
this.progressedCount = 0;
this.hasAnyBroken = false;
// complete if no images
if ( !this.images.length ) {
this.complete();
return;
}
function onProgress( image, elem, message ) {
// HACK - Chrome triggers event before object properties have changed. #83
setTimeout( function() {
_this.progress( image, elem, message );
});
}
for ( var i=0; i < this.images.length; i++ ) {
var loadingImage = this.images[i];
loadingImage.once( 'progress', onProgress );
loadingImage.check();
}
};
ImagesLoaded.prototype.progress = function( image, elem, message ) {
this.progressedCount++;
this.hasAnyBroken = this.hasAnyBroken || !image.isLoaded;
// progress event
this.emit( 'progress', this, image, elem );
if ( this.jqDeferred && this.jqDeferred.notify ) {
this.jqDeferred.notify( this, image );
}
// check if completed
if ( this.progressedCount == this.images.length ) {
this.complete();
}
if ( this.options.debug && console ) {
console.log( 'progress: ' + message, image, elem );
}
};
ImagesLoaded.prototype.complete = function() {
var eventName = this.hasAnyBroken ? 'fail' : 'done';
this.isComplete = true;
this.emit( eventName, this );
this.emit( 'always', this );
if ( this.jqDeferred ) {
var jqMethod = this.hasAnyBroken ? 'reject' : 'resolve';
this.jqDeferred[ jqMethod ]( this );
}
};
// -------------------------- -------------------------- //
function LoadingImage( img ) {
this.img = img;
}
LoadingImage.prototype = new EventEmitter();
LoadingImage.prototype.check = function() {
// If complete is true and browser supports natural sizes,
// try to check for image status manually.
var isComplete = this.getIsImageComplete();
if ( isComplete ) {
// report based on naturalWidth
this.confirm( this.img.naturalWidth !== 0, 'naturalWidth' );
return;
}
// If none of the checks above matched, simulate loading on detached element.
this.proxyImage = new Image();
eventie.bind( this.proxyImage, 'load', this );
eventie.bind( this.proxyImage, 'error', this );
// bind to image as well for Firefox. #191
eventie.bind( this.img, 'load', this );
eventie.bind( this.img, 'error', this );
this.proxyImage.src = this.img.src;
};
LoadingImage.prototype.getIsImageComplete = function() {
return this.img.complete && this.img.naturalWidth !== undefined;
};
LoadingImage.prototype.confirm = function( isLoaded, message ) {
this.isLoaded = isLoaded;
this.emit( 'progress', this, this.img, message );
};
// ----- events ----- //
// trigger specified handler for event type
LoadingImage.prototype.handleEvent = function( event ) {
var method = 'on' + event.type;
if ( this[ method ] ) {
this[ method ]( event );
}
};
LoadingImage.prototype.onload = function() {
this.confirm( true, 'onload' );
this.unbindEvents();
};
LoadingImage.prototype.onerror = function() {
this.confirm( false, 'onerror' );
this.unbindEvents();
};
LoadingImage.prototype.unbindEvents = function() {
eventie.unbind( this.proxyImage, 'load', this );
eventie.unbind( this.proxyImage, 'error', this );
eventie.unbind( this.img, 'load', this );
eventie.unbind( this.img, 'error', this );
};
// -------------------------- Background -------------------------- //
function Background( url, element ) {
this.url = url;
this.element = element;
this.img = new Image();
}
// inherit LoadingImage prototype
Background.prototype = new LoadingImage();
Background.prototype.check = function() {
eventie.bind( this.img, 'load', this );
eventie.bind( this.img, 'error', this );
this.img.src = this.url;
// check if image is already complete
var isComplete = this.getIsImageComplete();
if ( isComplete ) {
this.confirm( this.img.naturalWidth !== 0, 'naturalWidth' );
this.unbindEvents();
}
};
Background.prototype.unbindEvents = function() {
eventie.unbind( this.img, 'load', this );
eventie.unbind( this.img, 'error', this );
};
Background.prototype.confirm = function( isLoaded, message ) {
this.isLoaded = isLoaded;
this.emit( 'progress', this, this.element, message );
};
// -------------------------- jQuery -------------------------- //
ImagesLoaded.makeJQueryPlugin = function( jQuery ) {
jQuery = jQuery || window.jQuery;
if ( !jQuery ) {
return;
}
// set local variable
$ = jQuery;
// $().imagesLoaded()
$.fn.imagesLoaded = function( options, callback ) {
var instance = new ImagesLoaded( this, options, callback );
return instance.jqDeferred.promise( $(this) );
};
};
// try making plugin
ImagesLoaded.makeJQueryPlugin();
// -------------------------- -------------------------- //
return ImagesLoaded;
});
},{"eventie":1,"wolfy87-eventemitter":3}],3:[function(require,module,exports){
/*!
* EventEmitter v4.2.11 - git.io/ee
* Unlicense - http://unlicense.org/
* Oliver Caldwell - http://oli.me.uk/
* @preserve
*/
;(function () {
'use strict';
/**
* Class for managing events.
* Can be extended to provide event functionality in other classes.
*
* @class EventEmitter Manages event registering and emitting.
*/
function EventEmitter() {}
// Shortcuts to improve speed and size
var proto = EventEmitter.prototype;
var exports = this;
var originalGlobalValue = exports.EventEmitter;
/**
* Finds the index of the listener for the event in its storage array.
*
* @param {Function[]} listeners Array of listeners to search through.
* @param {Function} listener Method to look for.
* @return {Number} Index of the specified listener, -1 if not found
* @api private
*/
function indexOfListener(listeners, listener) {
var i = listeners.length;
while (i--) {
if (listeners[i].listener === listener) {
return i;
}
}
return -1;
}
/**
* Alias a method while keeping the context correct, to allow for overwriting of target method.
*
* @param {String} name The name of the target method.
* @return {Function} The aliased method
* @api private
*/
function alias(name) {
return function aliasClosure() {
return this[name].apply(this, arguments);
};
}
/**
* Returns the listener array for the specified event.
* Will initialise the event object and listener arrays if required.
* Will return an object if you use a regex search. The object contains keys for each matched event. So /ba[rz]/ might return an object containing bar and baz. But only if you have either defined them with defineEvent or added some listeners to them.
* Each property in the object response is an array of listener functions.
*
* @param {String|RegExp} evt Name of the event to return the listeners from.
* @return {Function[]|Object} All listener functions for the event.
*/
proto.getListeners = function getListeners(evt) {
var events = this._getEvents();
var response;
var key;
// Return a concatenated array of all matching events if
// the selector is a regular expression.
if (evt instanceof RegExp) {
response = {};
for (key in events) {
if (events.hasOwnProperty(key) && evt.test(key)) {
response[key] = events[key];
}
}
}
else {
response = events[evt] || (events[evt] = []);
}
return response;
};
/**
* Takes a list of listener objects and flattens it into a list of listener functions.
*
* @param {Object[]} listeners Raw listener objects.
* @return {Function[]} Just the listener functions.
*/
proto.flattenListeners = function flattenListeners(listeners) {
var flatListeners = [];
var i;
for (i = 0; i < listeners.length; i += 1) {
flatListeners.push(listeners[i].listener);
}
return flatListeners;
};
/**
* Fetches the requested listeners via getListeners but will always return the results inside an object. This is mainly for internal use but others may find it useful.
*
* @param {String|RegExp} evt Name of the event to return the listeners from.
* @return {Object} All listener functions for an event in an object.
*/
proto.getListenersAsObject = function getListenersAsObject(evt) {
var listeners = this.getListeners(evt);
var response;
if (listeners instanceof Array) {
response = {};
response[evt] = listeners;
}
return response || listeners;
};
/**
* Adds a listener function to the specified event.
* The listener will not be added if it is a duplicate.
* If the listener returns true then it will be removed after it is called.
* If you pass a regular expression as the event name then the listener will be added to all events that match it.
*
* @param {String|RegExp} evt Name of the event to attach the listener to.
* @param {Function} listener Method to be called when the event is emitted. If the function returns true then it will be removed after calling.
* @return {Object} Current instance of EventEmitter for chaining.
*/
proto.addListener = function addListener(evt, listener) {
var listeners = this.getListenersAsObject(evt);
var listenerIsWrapped = typeof listener === 'object';
var key;
for (key in listeners) {
if (listeners.hasOwnProperty(key) && indexOfListener(listeners[key], listener) === -1) {
listeners[key].push(listenerIsWrapped ? listener : {
listener: listener,
once: false
});
}
}
return this;
};
/**
* Alias of addListener
*/
proto.on = alias('addListener');
/**
* Semi-alias of addListener. It will add a listener that will be
* automatically removed after its first execution.
*
* @param {String|RegExp} evt Name of the event to attach the listener to.
* @param {Function} listener Method to be called when the event is emitted. If the function returns true then it will be removed after calling.
* @return {Object} Current instance of EventEmitter for chaining.
*/
proto.addOnceListener = function addOnceListener(evt, listener) {
return this.addListener(evt, {
listener: listener,
once: true
});
};
/**
* Alias of addOnceListener.
*/
proto.once = alias('addOnceListener');
/**
* Defines an event name. This is required if you want to use a regex to add a listener to multiple events at once. If you don't do this then how do you expect it to know what event to add to? Should it just add to every possible match for a regex? No. That is scary and bad.
* You need to tell it what event names should be matched by a regex.
*
* @param {String} evt Name of the event to create.
* @return {Object} Current instance of EventEmitter for chaining.
*/
proto.defineEvent = function defineEvent(evt) {
this.getListeners(evt);
return this;
};
/**
* Uses defineEvent to define multiple events.
*
* @param {String[]} evts An array of event names to define.
* @return {Object} Current instance of EventEmitter for chaining.
*/
proto.defineEvents = function defineEvents(evts) {
for (var i = 0; i < evts.length; i += 1) {
this.defineEvent(evts[i]);
}
return this;
};
/**
* Removes a listener function from the specified event.
* When passed a regular expression as the event name, it will remove the listener from all events that match it.
*
* @param {String|RegExp} evt Name of the event to remove the listener from.
* @param {Function} listener Method to remove from the event.
* @return {Object} Current instance of EventEmitter for chaining.
*/
proto.removeListener = function removeListener(evt, listener) {
var listeners = this.getListenersAsObject(evt);
var index;
var key;
for (key in listeners) {
if (listeners.hasOwnProperty(key)) {
index = indexOfListener(listeners[key], listener);
if (index !== -1) {
listeners[key].splice(index, 1);
}
}
}
return this;
};
/**
* Alias of removeListener
*/
proto.off = alias('removeListener');
/**
* Adds listeners in bulk using the manipulateListeners method.
* If you pass an object as the second argument you can add to multiple events at once. The object should contain key value pairs of events and listeners or listener arrays. You can also pass it an event name and an array of listeners to be added.
* You can also pass it a regular expression to add the array of listeners to all events that match it.
* Yeah, this function does quite a bit. That's probably a bad thing.
*
* @param {String|Object|RegExp} evt An event name if you will pass an array of listeners next. An object if you wish to add to multiple events at once.
* @param {Function[]} [listeners] An optional array of listener functions to add.
* @return {Object} Current instance of EventEmitter for chaining.
*/
proto.addListeners = function addListeners(evt, listeners) {
// Pass through to manipulateListeners
return this.manipulateListeners(false, evt, listeners);
};
/**
* Removes listeners in bulk using the manipulateListeners method.
* If you pass an object as the second argument you can remove from multiple events at once. The object should contain key value pairs of events and listeners or listener arrays.
* You can also pass it an event name and an array of listeners to be removed.
* You can also pass it a regular expression to remove the listeners from all events that match it.
*
* @param {String|Object|RegExp} evt An event name if you will pass an array of listeners next. An object if you wish to remove from multiple events at once.
* @param {Function[]} [listeners] An optional array of listener functions to remove.
* @return {Object} Current instance of EventEmitter for chaining.
*/
proto.removeListeners = function removeListeners(evt, listeners) {
// Pass through to manipulateListeners
return this.manipulateListeners(true, evt, listeners);
};
/**
* Edits listeners in bulk. The addListeners and removeListeners methods both use this to do their job. You should really use those instead, this is a little lower level.
* The first argument will determine if the listeners are removed (true) or added (false).
* If you pass an object as the second argument you can add/remove from multiple events at once. The object should contain key value pairs of events and listeners or listener arrays.
* You can also pass it an event name and an array of listeners to be added/removed.
* You can also pass it a regular expression to manipulate the listeners of all events that match it.
*
* @param {Boolean} remove True if you want to remove listeners, false if you want to add.
* @param {String|Object|RegExp} evt An event name if you will pass an array of listeners next. An object if you wish to add/remove from multiple events at once.
* @param {Function[]} [listeners] An optional array of listener functions to add/remove.
* @return {Object} Current instance of EventEmitter for chaining.
*/
proto.manipulateListeners = function manipulateListeners(remove, evt, listeners) {
var i;
var value;
var single = remove ? this.removeListener : this.addListener;
var multiple = remove ? this.removeListeners : this.addListeners;
// If evt is an object then pass each of its properties to this method
if (typeof evt === 'object' && !(evt instanceof RegExp)) {
for (i in evt) {
if (evt.hasOwnProperty(i) && (value = evt[i])) {
// Pass the single listener straight through to the singular method
if (typeof value === 'function') {
single.call(this, i, value);
}
else {
// Otherwise pass back to the multiple function
multiple.call(this, i, value);
}
}
}
}
else {
// So evt must be a string
// And listeners must be an array of listeners
// Loop over it and pass each one to the multiple method
i = listeners.length;
while (i--) {
single.call(this, evt, listeners[i]);
}
}
return this;
};
/**
* Removes all listeners from a specified event.
* If you do not specify an event then all listeners will be removed.
* That means every event will be emptied.
* You can also pass a regex to remove all events that match it.
*
* @param {String|RegExp} [evt] Optional name of the event to remove all listeners for. Will remove from every event if not passed.
* @return {Object} Current instance of EventEmitter for chaining.
*/
proto.removeEvent = function removeEvent(evt) {
var type = typeof evt;
var events = this._getEvents();
var key;
// Remove different things depending on the state of evt
if (type === 'string') {
// Remove all listeners for the specified event
delete events[evt];
}
else if (evt instanceof RegExp) {
// Remove all events matching the regex.
for (key in events) {
if (events.hasOwnProperty(key) && evt.test(key)) {
delete events[key];
}
}
}
else {
// Remove all listeners in all events
delete this._events;
}
return this;
};
/**
* Alias of removeEvent.
*
* Added to mirror the node API.
*/
proto.removeAllListeners = alias('removeEvent');
/**
* Emits an event of your choice.
* When emitted, every listener attached to that event will be executed.
* If you pass the optional argument array then those arguments will be passed to every listener upon execution.
* Because it uses `apply`, your array of arguments will be passed as if you wrote them out separately.
* So they will not arrive within the array on the other side, they will be separate.
* You can also pass a regular expression to emit to all events that match it.
*
* @param {String|RegExp} evt Name of the event to emit and execute listeners for.
* @param {Array} [args] Optional array of arguments to be passed to each listener.
* @return {Object} Current instance of EventEmitter for chaining.
*/
proto.emitEvent = function emitEvent(evt, args) {
var listenersMap = this.getListenersAsObject(evt);
var listeners;
var listener;
var i;
var key;
var response;
for (key in listenersMap) {
if (listenersMap.hasOwnProperty(key)) {
listeners = listenersMap[key].slice(0);
i = listeners.length;
while (i--) {
// If the listener returns true then it shall be removed from the event
// The function is executed either with a basic call or an apply if there is an args array
listener = listeners[i];
if (listener.once === true) {
this.removeListener(evt, listener.listener);
}
response = listener.listener.apply(this, args || []);
if (response === this._getOnceReturnValue()) {
this.removeListener(evt, listener.listener);
}
}
}
}
return this;
};
/**
* Alias of emitEvent
*/
proto.trigger = alias('emitEvent');
/**
* Subtly different from emitEvent in that it will pass its arguments on to the listeners, as opposed to taking a single array of arguments to pass on.
* As with emitEvent, you can pass a regex in place of the event name to emit to all events that match it.
*
* @param {String|RegExp} evt Name of the event to emit and execute listeners for.
* @param {...*} Optional additional arguments to be passed to each listener.
* @return {Object} Current instance of EventEmitter for chaining.
*/
proto.emit = function emit(evt) {
var args = Array.prototype.slice.call(arguments, 1);
return this.emitEvent(evt, args);
};
/**
* Sets the current value to check against when executing listeners. If a
* listeners return value matches the one set here then it will be removed
* after execution. This value defaults to true.
*
* @param {*} value The new value to check for when executing listeners.
* @return {Object} Current instance of EventEmitter for chaining.
*/
proto.setOnceReturnValue = function setOnceReturnValue(value) {
this._onceReturnValue = value;
return this;
};
/**
* Fetches the current value to check against when executing listeners. If
* the listeners return value matches this one then it should be removed
* automatically. It will return true by default.
*
* @return {*|Boolean} The current value to check for or the default, true.
* @api private
*/
proto._getOnceReturnValue = function _getOnceReturnValue() {
if (this.hasOwnProperty('_onceReturnValue')) {
return this._onceReturnValue;
}
else {
return true;
}
};
/**
* Fetches the events object and creates one if required.
*
* @return {Object} The events storage object.
* @api private
*/
proto._getEvents = function _getEvents() {
return this._events || (this._events = {});
};
/**
* Reverts the global {@link EventEmitter} to its previous value and returns a reference to this version.
*
* @return {Function} Non conflicting EventEmitter class.
*/
EventEmitter.noConflict = function noConflict() {
exports.EventEmitter = originalGlobalValue;
return EventEmitter;
};
// Expose the class either via AMD, CommonJS or the global object
if (typeof define === 'function' && define.amd) {
define(function () {
return EventEmitter;
});
}
else if (typeof module === 'object' && module.exports){
module.exports = EventEmitter;
}
else {
exports.EventEmitter = EventEmitter;
}
}.call(this));
},{}],4:[function(require,module,exports){
;(function(root, factory) {
if (typeof exports === 'object') {
module.exports = factory()
} else {
root.CreateControls = factory()
}
})(this, function() {
'use strict'
var CreateControls = {}
var _cssClasses = {
CONTROLS: 'm-p-g__controls',
CONTROLS_CLOSE: 'm-p-g__controls-close',
CONTROLS_ARROW: 'm-p-g__controls-arrow',
CONTROLS_NEXT: 'm-p-g__controls-arrow--next',
CONTROLS_PREV: 'm-p-g__controls-arrow--prev',
CONTROLS_BTN: 'm-p-g__btn'
}
var controlsCloseSvg =
'<svg fill="#FFFFFF" height="24" viewBox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg"><path d="M19 6.41L17.59 5 12 10.59 6.41 5 5 6.41 10.59 12 5 17.59 6.41 19 12 13.41 17.59 19 19 17.59 13.41 12z"/><path d="M0 0h24v24H0z" fill="none"/></svg>'
var controlsPrevSvg =
'<svg fill="#FFFFFF" height="24" viewBox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg"><path d="M0 0h24v24H0z" fill="none"/><path d="M20 11H7.83l5.59-5.59L12 4l-8 8 8 8 1.41-1.41L7.83 13H20v-2z"/></svg>'
var controlsNextSvg =
'<svg fill="#FFFFFF" height="24" viewBox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg"><path d="M0 0h24v24H0z" fill="none"/><path d="M12 4l-1.41 1.41L16.17 11H4v2h12.17l-5.58 5.59L12 20l8-8z"/></svg>'
function _createEl(el, className, attr) {
var element = document.createElement(el)
if (className && typeof className === 'object') {
className.forEach(function(c) {
element.classList.add(c)
})
} else {
element.classList.add(className)
}
return element
}
function init() {
var controls = _createEl('div', _cssClasses.CONTROLS)
var close = _createEl('button', _cssClasses.CONTROLS_CLOSE)
var next = _createEl('button', [
_cssClasses.CONTROLS_ARROW,
_cssClasses.CONTROLS_NEXT
])
var prev = _createEl('button', [
_cssClasses.CONTROLS_ARROW,
_cssClasses.CONTROLS_PREV
])
var childrenControls = [close, next, prev]
for (var i = 0; i < childrenControls.length; i++) {
controls.appendChild(childrenControls[i])
}
var closeBtn = _createEl('span', _cssClasses.CONTROLS_BTN)
var nextBtn = _createEl('span', _cssClasses.CONTROLS_BTN)
var prevBtn = _createEl('span', _cssClasses.CONTROLS_BTN)
closeBtn.innerHTML = controlsCloseSvg
nextBtn.innerHTML = controlsNextSvg
prevBtn.innerHTML = controlsPrevSvg
close.appendChild(closeBtn)
next.appendChild(nextBtn)
prev.appendChild(prevBtn)
return controls
}
CreateControls.init = init
return CreateControls
})
},{}],5:[function(require,module,exports){
// Expose MaterialPhotoGallery to Global Scope
var MaterialPhotoGallery = require('./material-photo-gallery')
window.MaterialPhotoGallery = MaterialPhotoGallery
},{"./material-photo-gallery":6}],6:[function(require,module,exports){
/**
*
* Material Photo Gallery v0.1.0
* A photo gallery inspired by Google Photos.
*
* Free to use under the MIT License.
*
*/
;(function(root, factory) {
if (typeof define === 'function' && define.amd) {
define(factory)
} else if (typeof exports === 'object') {
module.exports = factory(
require('imagesLoaded'),
require('./vendor/google-image-layout'),
require('./create-controls')
)
} else {
root.Gallery = factory(window.imagesLoaded, window.GoogleImageLayout)
}
})(this, function(imagesLoaded, GoogleImageLayout, CreateControls) {
'use strict'
/**
* Class constructor for Gallery component.
*
* @constructor
* @param {HTMLElement} element - The gallery element.
*/
var Gallery = function(element) {
this._element = element
this._layout()
}
/**
* Detect CSS transform support
*/
var transform = false,
transformString = 'transform',
domPrefixes = 'Webkit Moz ms'.split(' '),
pfx = '',
elem = document.createElement('div')
if (elem.style.transform !== undefined) {
transform = true
}
if (transform === false) {
for (var i = 0; i < domPrefixes.length; i++) {
if (elem.style[domPrefixes[i] + 'Transform'] !== undefined) {
pfx = domPrefixes[i]
transformString = pfx + 'Transform'
transform = true
break
}
}
}
/**
* Detect transitionend event support
*/
var transitions = {
transition: 'transitionend',
WebkitTransition: 'webkitTransitionEnd',
MozTransition: 'transitionend',
OTransition: 'otransitionend'
},
transitionendString,
elem = document.createElement('div')
for (var t in transitions) {
if (typeof elem.style[t] !== 'undefined') {
transitionendString = transitions[t]
break
}
}
function debounce(func, wait, immediate) {
var timeout
return function() {
var context = this,
args = arguments
var later = function() {
timeout = null
if (!immediate) func.apply(context, args)
}
var callNow = immediate && !timeout
clearTimeout(timeout)
timeout = setTimeout(later, wait)
if (callNow) func.apply(context, args)
}
}
/**
* handle touch events
*/
var xDown = null
var yDown = null
function getTouches(evt) {
return (
evt.touches || evt.originalEvent.touches // browser API
) // jQuery
}
function handleTouchStart(evt) {
xDown = getTouches(evt)[0].clientX
yDown = getTouches(evt)[0].clientY
}
function handleTouchMove(evt) {
if (!xDown || !yDown) {
return
}
var xUp = evt.touches[0].clientX
var yUp = evt.touches[0].clientY
var xDiff = xDown - xUp
var yDiff = yDown - yUp
if (Math.abs(xDiff) > Math.abs(yDiff)) {
/*most significant*/
if (xDiff > 0) {
/* left swipe */
// alert('left swipe')
this._handleNext()
} else {
/* right swipe */
// alert('right swipe')
this._handlePrev()
}
} else {
if (yDiff > 0) {
/* up swipe */
} else {
/* down swipe */
}
}
/* reset values */
xDown = null
yDown = null
}
/**
* Css class names stored as strings.
*
* @private
*/
Gallery.prototype._cssClasses = {
GALLERY: 'm-p-g',
THUMBS_BOX: 'm-p-g__thumbs',
THUMB_IMG: 'm-p-g__thumbs-img',
FULL_BOX: 'm-p-g__fullscreen',
FULL_IMG: 'm-p-g__fullscreen-img',
CONTROLS: 'm-p-g__controls',
CONTROLS_CLOSE: 'm-p-g__controls-close',
CONTROLS_NEXT: 'm-p-g__controls-arrow--next',
CONTROLS_PREV: 'm-p-g__controls-arrow--prev'
}
/**
* Init the Google Image Layout.
*/
Gallery.prototype._layout = function() {
var gallery = this
var imgLoad = imagesLoaded(
document.querySelector('div[data-google-image-layout]')
)
imgLoad.on('progress', function(instance, image) {
image.img.setAttribute('data-width', image.img.offsetWidth)
image.img.setAttribute('data-height', image.img.offsetHeight)
})
imgLoad.on('done', function(instance) {
var g = new GoogleImageLayout().init({
after: function() {
gallery.init()
}
})
})
imgLoad.on('fail', function(instance) {
var galleryEl = gallery._element
var alertBox = document.createElement('div')
alertBox.className = 'm-p-g__alertBox'
var alertBoxTitle = document.createElement('h2')
alertBoxTitle.innerHTML = 'Error'
var alertBoxMessage = document.createElement('p')
alertBox.appendChild(alertBoxTitle)
alertBox.appendChild(alertBoxMessage)
galleryEl.appendChild(alertBox)
var brokenImages = []
instance.images.forEach(function(image) {
if (!image.isLoaded) {
brokenImages.push(image.img.currentSrc)
}
})
alertBoxMessage.innerHTML = 'Failed to load:' + ' ' + brokenImages
})
window.onresize = debounce(function() {
var g = new GoogleImageLayout().init({
after: function() {
setTimeout(function() {
gallery._handleResize()
}, 500)
}
})
}, 25)
}
/**
* Init the Gallery component.
*/
Gallery.prototype.init = function() {
var controls = CreateControls.init()
this._element.appendChild(controls)
// Root element.
this._gallery = this._element
// Container element for thumbnails.
this._thumbsBox = this._gallery.querySelector(
'.' + this._cssClasses.THUMBS_BOX
)
// Nodelist of thumbnails.
this._thumbsNodeList = this._thumbsBox.querySelectorAll(
'.' + this._cssClasses.THUMB_IMG
)
// Array of thumbnails.
this._thumbs = Array.prototype.slice.call(this._thumbsNodeList)
// Container of full size images.
this._fullBox = this._gallery.querySelector('.' + this._cssClasses.FULL_BOX)
// Container of controls.
this._controls = this._gallery.querySelector(
'.' + this._cssClasses.CONTROLS
)
// this._controls = CreateControls.init();
// Close control button.
this._closeBtn = this._controls.querySelector(
'.' + this._cssClasses.CONTROLS_CLOSE
)
// Prev control button.
this._prevBtn = this._controls.querySelector(
'.' + this._cssClasses.CONTROLS_PREV
)
// Next control button.
this._nextBtn = this._controls.querySelector(
'.' + this._cssClasses.CONTROLS_NEXT
)
// Is true when the full size images have been loaded.
this._fullImgsLoaded = false
// Is true when a full size image is being viewed.
this._fullImgOpen = false
// Bind events to elements.
this._bindEvents.call(this)
// Load full size images.
this._loadFullImgs.call(this)
}
/**
* Add event listeners to elements.
*
* @private
*/
Gallery.prototype._bindEvents = function() {
for (var i = 0, ii = this._thumbs.length; i < ii; i++) {
// Add click event to each thumbnail.
this._thumbs[i].addEventListener(
'click',
this._handleThumbClick.bind(this)
)
// Add hover event to each thumbnail.
this._thumbs[i].addEventListener(
'mouseover',
this._handleThumbHover.bind(this)
)
}
// Add click event to close button.
this._closeBtn.addEventListener('click', this._handleClose.bind(this))
// Add click event to next button.
this._nextBtn.addEventListener('click', this._handleNext.bind(this))
// Add click event to prev button.
this._prevBtn.addEventListener('click', this._handlePrev.bind(this))
window.addEventListener('scroll', this._handleScroll.bind(this))
// touch events
document.addEventListener('touchstart', handleTouchStart.bind(this))
document.addEventListener('touchmove', handleTouchMove.bind(this))
}
Gallery.prototype._handleScroll = debounce(function() {
this._resetFullImg.call(this)
}, 25)
Gallery.prototype._handleResize = function() {
this._resetFullImg.call(this)
}
/**
* Load the full size images from the 'data-full' attribute.
*
* @private
*/
Gallery.prototype._loadFullImgs = function() {
var src, img
for (var i = 0, ii = this._thumbs.length; i < ii; i++) {
// Source of full size image.
src = this._thumbs[i].getAttribute('data-full')
// Create empty Image object.
img = new Image()
// Give new Image full size image src value.
img.src = src
// Give new Image appropriate class name.
img.classList.add(this._cssClasses.FULL_IMG)
// Append full size image to full size image container.
this._fullBox.appendChild(img)
}
this._loadFullImgsDone.call(this)
}
Gallery.prototype._loadFullImgsDone = function() {
var imgLoad = imagesLoaded(this._fullBox)
imgLoad.on(
'done',
function(instance) {
var imgArr = instance.images
this._fullImgs = []
this._fullImgDimensions = []
this._fullImgsTransforms = []
for (var i = 0, ii = imgArr.length; i < ii; i++) {
var rect = imgArr[i].img.getBoundingClientRect()
this._fullImgs.push(imgArr[i].img)
this._positionFullImgs.call(this, imgArr[i].img, i)
this._fullImgDimensions.push(rect)
}
this._fullImgsLoaded = true
}.bind(this)
)
}
Gallery.prototype._positionFullImgs = function(img, i, applyTransform) {
var transform = this._transformFullImg(img, this._thumbs[i])
this._fullImgsTransforms.push(transform)
img.style.marginTop = -img.height / 2 + 'px'
img.style.marginLeft = -img.width / 2 + 'px'
if (applyTransform !== false) {
img.style[transformString] = transform
}
}
/**
* Makes the thumbnail transform to the same size and position as the full
* size image.
*
* @private
*/
Gallery.prototype._transformFullImg = function(fullImg, thumb, fullImgSize) {
var scaleX, scaleY, transX, transY
fullImg = fullImg.getBoundingClientRect()
thumb = thumb.getBoundingClientRect()
if (fullImgSize) {
scaleX = (thumb.width / fullImgSize.width).toFixed(3)
scaleY = (thumb.height / fullImgSize.height).toFixed(3)
transX = thumb.left - fullImgSize.left + fullImgSize.width / 2
transY = thumb.top - fullImgSize.top + fullImgSize.height / 2
} else {
scaleX = (thumb.width / fullImg.width).toFixed(3)
scaleY = (thumb.height / fullImg.height).toFixed(3)
transX = thumb.left - fullImg.left + fullImg.width / 2
transY = thumb.top - fullImg.top + fullImg.height / 2
}
var transform =
'translate(' +
transX +
'px,' +
transY +
'px) scale(' +
scaleX +
',' +
scaleY +
')'
return transform
}
Gallery.prototype._resetFullImg = function() {
this._fullImgsTransforms = []
for (var i = 0, ii = this._fullImgs.length; i < ii; i++) {
var size = {
width: this._fullImgDimensions[i].width,
height: this._fullImgDimensions[i].height,
left: this._fullImgDimensions[i].left,
top: this._fullImgDimensions[i].top
}
if (i === this._thumbIndex && this._fullImgOpen) {
this._fullImgs[i].removeAttribute('style')
this._positionFullImgs.call(this, this._fullImgs[i], i, false)
} else {
this._fullImgs[i].removeAttribute('style')
this._positionFullImgs.call(this, this._fullImgs[i], i)
}
}
}
/**
* Thumbnail hover event.
*
* @param {Event} event - The event.
* @private
*/
Gallery.prototype._handleThumbHover = function(event) {
if (this._fullImgsLoaded && !this._fullImgOpen) {
this._transformThumbSetup.call(this, event)
}
}
/**
* Thumbnail click event.
*
* @param {Event} event - The event.
* @private
*/
Gallery.prototype._handleThumbClick = function(event) {
if (this._thumb != event.target) {
// Cache the thumb being hovered over.
this._thumb = event.target
// Index of thumb.
this._thumbIndex = this._thumbs.indexOf(this._thumb)
// The full size image of that thumbnail.
this._fullImg = this._fullImgs[this._thumbIndex]
}
if (this._setupComplete && this._fullImgsLoaded && !this._fullImgOpen) {
this._activateFullImg.call(this)
this._activateControls.call(this)
this._activateFullBox.call(this)
this._disableScroll()
}
}
/**
* Caches the thumbnail and full size image that was just hovered over.
* Stores the css transform value so we can use it later.
*
* @param {Event} event - The event.
* @param {Function} fn - An optional callback function.
* @private
*/
Gallery.prototype._transformThumbSetup = function(event, fn) {
this._setupComplete = false
// Cache the thumb being hovered over.
this._thumb = event.target
// Index of thumb.
this._thumbIndex = this._thumbs.indexOf(this._thumb)
// The full size image of that thumbnail.
this._fullImg = this._fullImgs[this._thumbIndex]
this._setupComplete = true
if (fn) fn()
}
Gallery.prototype._activateFullImg = function() {
this._thumb.classList.add('hide')
this._fullImg.classList.add('active')
this._fullImg.style[transformString] = 'translate3d(0,0,0)'
this._fullImgOpen = true
this._fullImgs.forEach(function(img) {
if (!img.classList.contains('active')) {
img.classList.add('almost-active')
}
})
}
/**
* Show the fullBox.
*
* @private
*/
Gallery.prototype._activateFullBox = function() {
this._fullBox.classList.add('active')
}
/**
* Show the controls.
*
* @private
*/
Gallery.prototype._activateControls = function() {
this._controls.classList.add('active')
}
/**
* CloseBtn click event.
*
* @private
*/
Gallery.prototype._handleClose = function() {
if (this._fullImgOpen) {
this._closeFullImg.call(this)
}
}
Gallery.prototype._closeFullImg = function() {
var animation = function() {
this._fullBox.classList.remove('active')
this._controls.classList.remove('active')
this._fullImg.style[transformString] = this._fullImgsTransforms[
this._thumbIndex
]
this._thumb.classList.remove('hide')
this._fullImgs.forEach(function(img) {
img.classList.remove('almost-active')
})
var fullImgTransEnd = function() {
this._fullImg.classList.remove('active')
this._fullImg.removeEventListener(transitionendString, fullImgTransEnd)
this._fullImgOpen = false
}.bind(this)
this._fullImg.addEventListener(transitionendString, fullImgTransEnd)
this._enableScroll()
}.bind(this)
window.requestAnimationFrame(animation)
}
/**
* NextBtn click event.
*
* @private
*/
Gallery.prototype._handleNext = function() {
if (this._fullImgOpen) {
this._changeImg.call(this, 'next')
}
}
/**
* PrevBtn click event.
*
* @private
*/
Gallery.prototype._handlePrev = function() {
if (this._fullImgOpen) {
this._changeImg.call(this, 'prev')
}
}
/**
* Changes the active full size image and active thumbnail based on which
* arrow was click (prev || next).
*
* @param {String} dir - A string to determine if we're going Prev or Next.
* @private
*/
Gallery.prototype._changeImg = function(dir) {
this._thumbIndex = this._fullImgs.indexOf(this._fullImg)
dir === 'next' ? (this._thumbIndex += 1) : (this._thumbIndex -= 1)
this._newFullImg =
dir === 'next'
? this._fullImg.nextElementSibling
: this._fullImg.previousElementSibling
if (!this._newFullImg || this._newFullImg.nodeName !== 'IMG') {
this._newFullImg =
dir === 'next'
? (this._newFullImg = this._fullImgs[0])
: (this._newFullImg = this._fullImgs[this._fullImgs.length - 1])
dir === 'next'
? (this._thumbIndex = 0)
: (this._thumbIndex = this._fullImgs.length - 1)
}
this._newFullImg.style[transformString] = 'translate3d(0,0,0)'
this._fullImg.classList.remove('active')
this._fullImg.style[transformString] = this._fullImgsTransforms[
this._thumbIndex - 1
]
this._fullImg = this._newFullImg
this._fullImg.classList.add('active')
}
/**
* Disables scrolling. Activated when a full size image is open.
*
* @private
*/
Gallery.prototype._disableScroll = function() {
function preventDefault(e) {
e = e || window.event
if (e.preventDefault) e.preventDefault()
e.returnValue = false
}
window.onwheel = preventDefault
window.ontouchmove = preventDefault
}
/**
* Enables scrolling. Activated when a full size image is closed.
*
* @private
*/
Gallery.prototype._enableScroll = function() {
window.onwheel = null
window.ontouchmove = null
}
return Gallery
})
},{"./create-controls":4,"./vendor/google-image-layout":7,"imagesLoaded":2}],7:[function(require,module,exports){
/**
*
* Google Image Layout v0.0.1
* Description, by Anh Trinh.
* http://trinhtrunganh.com
*
* Free to use under the MIT License.
*
*/
;(function(root, factory) {
if (typeof define === 'function' && define.amd) {
define(function() {
return factory(root)
})
} else if (typeof exports === 'object') {
module.exports = factory
} else {
root.GoogleImageLayout = factory(root)
}
})(this, function(root) {
'use strict'
var GoogleImageLayout = {}
var HEIGHTS = [],
margin = 5
var turnObjToArray = function(obj) {
return [].map.call(obj, function(element) {
return element
})
}
var _debounceOrThrottle = function() {
if (!useDebounce && !!poll) {
return
}
clearTimeout(poll)
poll = setTimeout(function() {
echo.render()
poll = null
}, delay)
}
/**
* Get the height that make all images fit the container
*
* width = w1 + w2 + w3 + ... = r1*h + r2*h + r3*h + ...
*
* @param {[type]} images the images to be calculated
* @param {[type]} width the container witdth
* @param {[type]} margin the margin between each image
*
* @return {[type]} the height
*/
var _getHeigth = function(images, width, margin) {
// width -= images.length * margin;
// width -= images.length;
var r = 0,
img
for (var i = 0; i < images.length; i++) {
img = images[i]
r +=
parseInt(img.getAttribute('data-width')) /
parseInt(img.getAttribute('data-height'))
}
return width / r //have to round down because Firefox will automatically roundup value with number of decimals > 3
}
var _setHeight = function(images, height) {
// console.log("set height");
HEIGHTS.push(height)
var img
for (var i = 0; i < images.length; i++) {
img = images[i]
img.style.width =
(height * parseInt(img.getAttribute('data-width'))) /
parseInt(img.getAttribute('data-height')) +
'px'
img.style.height = height + 'px'
img.classList.add('layout-completed')
}
}
GoogleImageLayout.init = function(opts) {
opts = opts || {}
var nodes = document.querySelectorAll('div[data-google-image-layout]')
var length = nodes.length
var elem
for (var i = 0; i < length; i++) {
elem = nodes[i]
GoogleImageLayout.align(elem)
}
if (opts.after) opts.after()
}
GoogleImageLayout.align = function(elem) {
//get the data attribute
var containerWidth = elem.clientWidth,
maxHeight = parseInt(elem.getAttribute('data-max-height') || 120)
var imgNodes = turnObjToArray(elem.querySelectorAll('img'))
w: while (imgNodes.length > 0) {
for (var i = 1; i <= imgNodes.length; i++) {
var slice = imgNodes.slice(0, i)
var h = _getHeigth(slice, containerWidth, margin)
if (h < maxHeight) {
_setHeight(slice, h)
imgNodes = imgNodes.slice(i)
continue w
}
}
_setHeight(slice, Math.min(maxHeight, h))
break
}
}
return GoogleImageLayout
})
},{}]},{},[5]);