Вход Регистрация
Файл: plugins/bower_components/toast-master/js/jquery.toast.js
Строк: 425
<?php
;
// jQuery toast plugin created by Kamran Ahmed copyright MIT license 2015
if ( typeof Object.create !== 'function' ) {
    
Object.create = function( obj ) {
        function 
F() {}
        
F.prototype obj;
        return new 
F();
    };
}

(function( $, 
windowdocumentundefined ) {

    
"use strict";
    
    var 
Toast = {

        
_positionClasses : ['bottom-left''bottom-right''top-right''top-left''bottom-center''top-center''mid-center'],
        
_defaultIcons : ['success''error''info''warning'],

        
init: function (optionselem) {
            
this.prepareOptions(options, $.toast.options);
            
this.process();
        },

        
prepareOptions: function(optionsoptions_to_extend) {
            var 
_options = {};
            if ( ( 
typeof options === 'string' ) || ( options instanceof Array ) ) {
                
_options.text options;
            } else {
                
_options options;
            }
            
this.options = $.extend( {}, options_to_extend_options );
        },

        
process: function () {
            
this.setup();
            
this.addToDom();
            
this.position();
            
this.bindToast();
            
this.animate();
        },

        
setup: function () {
            
            var 
_toastContent '';
            
            
this._toastEl this._toastEl || $('<div></div>', {
                class : 
'jq-toast-single'
            
});

            
// For the loader on top
            
_toastContent += '<span class="jq-toast-loader"></span>';            

            if ( 
this.options.allowToastClose ) {
                
_toastContent += '<span class="close-jq-toast-single">&times;</span>';
            };

            if ( 
this.options.text instanceof Array ) {

                if ( 
this.options.heading ) {
                    
_toastContent +='<h2 class="jq-toast-heading">' this.options.heading '</h2>';
                };

                
_toastContent += '<ul class="jq-toast-ul">';
                for (var 
0this.options.text.lengthi++) {
                    
_toastContent += '<li class="jq-toast-li" id="jq-toast-item-' '">' this.options.text[i] + '</li>';
                }
                
_toastContent += '</ul>';

            } else {
                if ( 
this.options.heading ) {
                    
_toastContent +='<h2 class="jq-toast-heading">' this.options.heading '</h2>';
                };
                
_toastContent += this.options.text;
            }

            
this._toastEl.html_toastContent );

            if ( 
this.options.bgColor !== false ) {
                
this._toastEl.css("background-color"this.options.bgColor);
            };

            if ( 
this.options.textColor !== false ) {
                
this._toastEl.css("color"this.options.textColor);
            };

            if ( 
this.options.textAlign ) {
                
this._toastEl.css('text-align'this.options.textAlign);
            }

            if ( 
this.options.icon !== false ) {
                
this._toastEl.addClass('jq-has-icon');

                if ( $.
inArray(this.options.iconthis._defaultIcons) !== -) {
                    
this._toastEl.addClass('jq-icon-' this.options.icon);
                };
            };
        },

        
position: function () {
            if ( ( 
typeof this.options.position === 'string' ) && ( $.inArraythis.options.positionthis._positionClasses) !== -) ) {

                if ( 
this.options.position === 'bottom-center' ) {
                    
this._container.css({
                        
left: ( $(window).outerWidth() / ) - this._container.outerWidth()/2,
                        
bottom20
                    
});
                } else if ( 
this.options.position === 'top-center' ) {
                    
this._container.css({
                        
left: ( $(window).outerWidth() / ) - this._container.outerWidth()/2,
                        
top20
                    
});
                } else if ( 
this.options.position === 'mid-center' ) {
                    
this._container.css({
                        
left: ( $(window).outerWidth() / ) - this._container.outerWidth()/2,
                        
top: ( $(window).outerHeight() / ) - this._container.outerHeight()/2
                    
});
                } else {
                    
this._container.addClassthis.options.position );
                }

            } else if ( 
typeof this.options.position === 'object' ) {
                
this._container.css({
                    
top this.options.position.top this.options.position.top 'auto',
                    
bottom this.options.position.bottom this.options.position.bottom 'auto',
                    
left this.options.position.left this.options.position.left 'auto',
                    
right this.options.position.right this.options.position.right 'auto'
                
});
            } else {
                
this._container.addClass'bottom-left' );
            }
        },

        
bindToast: function () {

            var 
that this;

            
this._toastEl.on('afterShown', function () {
                
that.processLoader();
            });

            
this._toastEl.find('.close-jq-toast-single').on('click', function ( ) {

                
e.preventDefault();

                if( 
that.options.showHideTransition === 'fade') {
                    
that._toastEl.trigger('beforeHide');
                    
that._toastEl.fadeOut(function () {
                        
that._toastEl.trigger('afterHidden');
                    });
                } else if ( 
that.options.showHideTransition === 'slide' ) {
                    
that._toastEl.trigger('beforeHide');
                    
that._toastEl.slideUp(function () {
                        
that._toastEl.trigger('afterHidden');
                    });
                } else {
                    
that._toastEl.trigger('beforeHide');
                    
that._toastEl.hide(function () {
                        
that._toastEl.trigger('afterHidden');
                    });
                }
            });

            if ( 
typeof this.options.beforeShow == 'function' ) {
                
this._toastEl.on('beforeShow', function () {
                    
that.options.beforeShow();
                });
            };

            if ( 
typeof this.options.afterShown == 'function' ) {
                
this._toastEl.on('afterShown', function () {
                    
that.options.afterShown();
                });
            };

            if ( 
typeof this.options.beforeHide == 'function' ) {
                
this._toastEl.on('beforeHide', function () {
                    
that.options.beforeHide();
                });
            };

            if ( 
typeof this.options.afterHidden == 'function' ) {
                
this._toastEl.on('afterHidden', function () {
                    
that.options.afterHidden();
                });
            };          
        },

        
addToDom: function () {

             var 
_container = $('.jq-toast-wrap');
             
             if ( 
_container.length === ) {
                
                
_container = $('<div></div>',{
                    class: 
"jq-toast-wrap"
                
});

                $(
'body').append_container );

             } else if ( !
this.options.stack || isNaNparseInt(this.options.stack10) ) ) {
                
_container.empty();
             }

             
_container.find('.jq-toast-single:hidden').remove();

             
_container.appendthis._toastEl );

            if ( 
this.options.stack && !isNaNparseIntthis.options.stack ), 10 ) ) {
                
                var 
_prevToastCount _container.find('.jq-toast-single').length,
                    
_extToastCount _prevToastCount this.options.stack;

                if ( 
_extToastCount ) {
                    $(
'.jq-toast-wrap').find('.jq-toast-single').slice(0_extToastCount).remove();
                };

            }

            
this._container _container;
        },

        
canAutoHide: function () {
            return ( 
this.options.hideAfter !== false ) && !isNaNparseIntthis.options.hideAfter10 ) );
        },

        
processLoader: function () {
            
// Show the loader only, if auto-hide is on and loader is demanded
            
if (!this.canAutoHide() || this.options.loader === false) {
                return 
false;
            }

            var 
loader this._toastEl.find('.jq-toast-loader');

            
// 400 is the default time that jquery uses for fade/slide
            // Divide by 1000 for milliseconds to seconds conversion
            
var transitionTime = (this.options.hideAfter 400) / 1000 's';
            var 
loaderBg this.options.loaderBg;

            var 
style loader.attr('style') || '';
            
style style.substring(0style.indexOf('-webkit-transition')); // Remove the last transition definition

            
style += '-webkit-transition: width ' transitionTime ' ease-in; 
                      -o-transition: width ' 
transitionTime ' ease-in; 
                      transition: width ' 
transitionTime ' ease-in; 
                      background-color: ' 
loaderBg ';';


            
loader.attr('style'style).addClass('jq-toast-loaded');
        },

        
animate: function () {

            var 
that this;

            
this._toastEl.hide();

            
this._toastEl.trigger('beforeShow');

            if ( 
this.options.showHideTransition.toLowerCase() === 'fade' ) {
                
this._toastEl.fadeIn(function ( ){
                    
that._toastEl.trigger('afterShown');
                });
            } else if ( 
this.options.showHideTransition.toLowerCase() === 'slide' ) {
                
this._toastEl.slideDown(function ( ){
                    
that._toastEl.trigger('afterShown');
                });
            } else {
                
this._toastEl.show(function ( ){
                    
that._toastEl.trigger('afterShown');
                });
            }

            if (
this.canAutoHide()) {

                var 
that this;

                
window.setTimeout(function(){
                    
                    if ( 
that.options.showHideTransition.toLowerCase() === 'fade' ) {
                        
that._toastEl.trigger('beforeHide');
                        
that._toastEl.fadeOut(function () {
                            
that._toastEl.trigger('afterHidden');
                        });
                    } else if ( 
that.options.showHideTransition.toLowerCase() === 'slide' ) {
                        
that._toastEl.trigger('beforeHide');
                        
that._toastEl.slideUp(function () {
                            
that._toastEl.trigger('afterHidden');
                        });
                    } else {
                        
that._toastEl.trigger('beforeHide');
                        
that._toastEl.hide(function () {
                            
that._toastEl.trigger('afterHidden');
                        });
                    }

                }, 
this.options.hideAfter);
            };
        },

        
reset: function ( resetWhat ) {

            if ( 
resetWhat === 'all' ) {
                $(
'.jq-toast-wrap').remove();
            } else {
                
this._toastEl.remove();
            }

        },

        
update: function(options) {
            
this.prepareOptions(optionsthis.options);
            
this.setup();
            
this.bindToast();
        }
    };
    
    $.
toast = function(options) {
        var 
toast Object.create(Toast);
        
toast.init(optionsthis);

        return {
            
            
reset: function ( what ) {
                
toast.resetwhat );
            },

            
update: function( options ) {
                
toast.updateoptions );
            }
        }
    };

    $.
toast.options = {
        
text'',
        
heading'',
        
showHideTransition'fade',
        
allowToastClosetrue,
        
hideAfter3000,
        
loadertrue,
        
loaderBg'#9EC600',
        
stack5,
        
position'bottom-left',
        
bgColorfalse,
        
textColorfalse,
        
textAlign'left',
        
iconfalse,
        
beforeShow: function () {},
        
afterShown: function () {},
        
beforeHide: function () {},
        
afterHidden: function () {}
    };

})( 
jQuerywindowdocument );
?>
Онлайн: 2
Реклама