/*! * # Fomantic-UI - Toast * http://github.com/fomantic/Fomantic-UI/ * * * Released under the MIT license * http://opensource.org/licenses/MIT * */ ;(function ($, window, document, undefined) { 'use strict'; $.isFunction = $.isFunction || function(obj) { return typeof obj === "function" && typeof obj.nodeType !== "number"; }; window = (typeof window != 'undefined' && window.Math == Math) ? window : (typeof self != 'undefined' && self.Math == Math) ? self : Function('return this')() ; $.fn.toast = function(parameters) { var $allModules = $(this), moduleSelector = $allModules.selector || '', time = new Date().getTime(), performance = [], query = arguments[0], methodInvoked = (typeof query == 'string'), queryArguments = [].slice.call(arguments, 1), returnedValue ; $allModules .each(function() { var settings = ( $.isPlainObject(parameters) ) ? $.extend(true, {}, $.fn.toast.settings, parameters) : $.extend({}, $.fn.toast.settings), className = settings.className, selector = settings.selector, error = settings.error, namespace = settings.namespace, eventNamespace = '.' + namespace, moduleNamespace = namespace + '-module', $module = $(this), $toastBox = $('
',{'class':settings.className.box}), $toast = $(''), $progress = $('',{'class':settings.className.progress+' '+settings.class}), $progressBar = $('',{'class':'bar'}), $close = $('',{'class':'close icon'}), $context = (settings.context) ? $(settings.context) : $('body'), element = this, instance = $module.data(moduleNamespace), module ; module = { initialize: function() { module.verbose('Initializing element'); if(typeof settings.showProgress !== 'string' || ['top','bottom'].indexOf(settings.showProgress) === -1 ) { settings.showProgress = false; } if (!module.has.container()) { module.create.container(); } module.create.toast(); module.bind.events(); if(settings.displayTime > 0) { module.closeTimer = setTimeout(module.close, settings.displayTime+(!!settings.showProgress ? 300 : 0)); } module.show(); }, destroy: function() { module.debug('Removing toast', $toast); $toast.remove(); $toast = undefined; settings.onRemove.call($toast, element); }, show: function(callback) { callback = callback || function(){}; module.debug('Showing toast'); if(settings.onShow.call($toast, element) === false) { module.debug('onShow callback returned false, cancelling toast animation'); return; } module.animate.show(callback); }, close: function(callback) { if(module.closeTimer) { clearTimeout(module.closeTimer); } callback = callback || function(){}; module.remove.visible(); module.unbind.events(); module.animate.close(callback); }, create: { container: function() { module.verbose('Creating container'); $context.append(''); }, toast: function() { var $content = $('').addClass(className.content); module.verbose('Creating toast'); if(settings.closeIcon) { $toast.append($close); $toast.css('cursor','default'); } var iconClass = typeof settings.showIcon === 'string' ? settings.showIcon : settings.showIcon && settings.icons[settings.class] ? settings.icons[settings.class] : ''; if (iconClass != '') { var $icon = $('').addClass(iconClass + ' ' + className.icon); $toast .addClass(className.icon) .append($icon) ; } if (settings.title !== '') { var $title = $('') .addClass(className.title) .text(settings.title) ; $content.append($title); } $content.append($('').html(settings.message)); $toast .addClass(settings.class + ' ' + className.toast) .append($content) ; $toast.css('opacity', settings.opacity); if(settings.compact || $toast.hasClass('compact')) { $toastBox.addClass('compact'); } if($toast.hasClass('toast') && !$toast.hasClass('inverted')){ $progress.addClass('inverted'); } else { $progress.removeClass('inverted'); } $toast = $toastBox.append($toast); if(!!settings.showProgress && settings.displayTime > 0){ $progress .addClass(settings.showProgress) .append($progressBar); if ($progress.hasClass('top')) { $toast.prepend($progress); } else { $toast.append($progress); } $progressBar.css('transition','width '+(settings.displayTime/1000)+'s linear'); $progressBar.width(settings.progressUp?'0%':'100%'); setTimeout(function() { if(typeof $progress !== 'undefined'){ $progressBar.width(settings.progressUp?'100%':'0%'); } },300); } if (settings.newestOnTop) { $toast.prependTo(module.get.container()); } else { $toast.appendTo(module.get.container()); } } }, bind: { events: function() { module.debug('Binding events to toast'); (settings.closeIcon ? $close : $toast) .on('click' + eventNamespace, module.event.click) ; } }, unbind: { events: function() { module.debug('Unbinding events to toast'); (settings.closeIcon ? $close : $toast) .off('click' + eventNamespace) ; } }, animate: { show: function(callback) { callback = $.isFunction(callback) ? callback : function(){}; if(settings.transition && $.fn.transition !== undefined && $module.transition('is supported')) { module.set.visible(); $toast .transition({ animation : settings.transition.showMethod + ' in', queue : false, debug : settings.debug, verbose : settings.verbose, duration : settings.transition.showDuration, onComplete : function() { callback.call($toast, element); settings.onVisible.call($toast, element); } }) ; } else { module.error(error.noTransition); } }, close: function(callback) { callback = $.isFunction(callback) ? callback : function(){}; module.debug('Closing toast'); if(settings.onHide.call($toast, element) === false) { module.debug('onHide callback returned false, cancelling toast animation'); return; } if(settings.transition && $.fn.transition !== undefined && $module.transition('is supported')) { $toast .transition({ animation : settings.transition.hideMethod + ' out', queue : false, duration : settings.transition.hideDuration, debug : settings.debug, verbose : settings.verbose, onBeforeHide: function(callback){ callback = $.isFunction(callback)?callback : function(){}; if(settings.transition.closeEasing !== ''){ $toast.css('opacity',0); $toast.wrap('').parent().slideUp(500,settings.transition.closeEasing,function(){ $toast.parent().remove(); callback.call($toast); }); } else { callback.call($toast); } }, onComplete : function() { module.destroy(); callback.call($toast, element); settings.onHidden.call($toast, element); } }) ; } else { module.error(error.noTransition); } } }, has: { container: function() { module.verbose('Determining if there is already a container'); return ($context.find(module.helpers.toClass(settings.position) + selector.container).length > 0); } }, get: { container: function() { return ($context.find(module.helpers.toClass(settings.position) + selector.container)[0]); } }, set: { visible: function() { $toast.addClass(className.visible); } }, remove: { visible: function() { $toast.removeClass(className.visible); } }, event: { click: function() { settings.onClick.call($toast, element); module.close(); } }, helpers: { toClass: function(selector) { var classes = selector.split(' '), result = '' ; classes.forEach(function (element) { result += '.' + element; }); return result; } }, setting: function(name, value) { module.debug('Changing setting', name, value); if( $.isPlainObject(name) ) { $.extend(true, settings, name); } else if(value !== undefined) { if($.isPlainObject(settings[name])) { $.extend(true, settings[name], value); } else { settings[name] = value; } } else { return settings[name]; } }, internal: function(name, value) { if( $.isPlainObject(name) ) { $.extend(true, module, name); } else if(value !== undefined) { module[name] = value; } else { return module[name]; } }, debug: function() { if(!settings.silent && settings.debug) { if(settings.performance) { module.performance.log(arguments); } else { module.debug = Function.prototype.bind.call(console.info, console, settings.name + ':'); module.debug.apply(console, arguments); } } }, verbose: function() { if(!settings.silent && settings.verbose && settings.debug) { if(settings.performance) { module.performance.log(arguments); } else { module.verbose = Function.prototype.bind.call(console.info, console, settings.name + ':'); module.verbose.apply(console, arguments); } } }, error: function() { if(!settings.silent) { module.error = Function.prototype.bind.call(console.error, console, settings.name + ':'); module.error.apply(console, arguments); } }, performance: { log: function(message) { var currentTime, executionTime, previousTime ; if(settings.performance) { currentTime = new Date().getTime(); previousTime = time || currentTime; executionTime = currentTime - previousTime; time = currentTime; performance.push({ 'Name' : message[0], 'Arguments' : [].slice.call(message, 1) || '', 'Element' : element, 'Execution Time' : executionTime }); } clearTimeout(module.performance.timer); module.performance.timer = setTimeout(module.performance.display, 500); }, display: function() { var title = settings.name + ':', totalTime = 0 ; time = false; clearTimeout(module.performance.timer); $.each(performance, function(index, data) { totalTime += data['Execution Time']; }); title += ' ' + totalTime + 'ms'; if(moduleSelector) { title += ' \'' + moduleSelector + '\''; } if( (console.group !== undefined || console.table !== undefined) && performance.length > 0) { console.groupCollapsed(title); if(console.table) { console.table(performance); } else { $.each(performance, function(index, data) { console.log(data['Name'] + ': ' + data['Execution Time']+'ms'); }); } console.groupEnd(); } performance = []; } }, invoke: function(query, passedArguments, context) { var object = instance, maxDepth, found, response ; passedArguments = passedArguments || queryArguments; context = element || context; if(typeof query == 'string' && object !== undefined) { query = query.split(/[\. ]/); maxDepth = query.length - 1; $.each(query, function(depth, value) { var camelCaseValue = (depth != maxDepth) ? value + query[depth + 1].charAt(0).toUpperCase() + query[depth + 1].slice(1) : query ; if( $.isPlainObject( object[camelCaseValue] ) && (depth != maxDepth) ) { object = object[camelCaseValue]; } else if( object[camelCaseValue] !== undefined ) { found = object[camelCaseValue]; return false; } else if( $.isPlainObject( object[value] ) && (depth != maxDepth) ) { object = object[value]; } else if( object[value] !== undefined ) { found = object[value]; return false; } else { module.error(error.method, query); return false; } }); } if ( $.isFunction( found ) ) { response = found.apply(context, passedArguments); } else if(found !== undefined) { response = found; } if(Array.isArray(returnedValue)) { returnedValue.push(response); } else if(returnedValue !== undefined) { returnedValue = [returnedValue, response]; } else if(response !== undefined) { returnedValue = response; } return found; } }; if(methodInvoked) { if(instance === undefined) { module.initialize(); } module.invoke(query); } else { if(instance !== undefined) { instance.invoke('destroy'); } module.initialize(); } }) ; return (returnedValue !== undefined) ? returnedValue : this ; }; $.fn.toast.settings = { name : 'Toast', namespace : 'toast', silent : false, debug : false, verbose : false, performance : true, context : 'body', position : 'top right', class : 'info', title : '', message : '', displayTime : 3000, // set to zero to require manually dismissal, otherwise hides on its own showIcon : true, newestOnTop : false, showProgress : false, progressUp : true, //if false, the bar will start at 100% and decrease to 0% opacity : 1, compact : true, closeIcon : false, // transition settings transition : { showMethod : 'scale', showDuration : 500, hideMethod : 'scale', hideDuration : 500, closeEasing : 'easeOutBounce' //Set to empty string to stack the closed toast area immediately (old behaviour) }, error: { method : 'The method you called is not defined.', noTransition : 'This module requires ui transitions