/*! * Modale v1.0.0 * www.souza.inf.br/ * Copyright (c) 2021, Souza Consultória Tecnologica */ function modalPage(create, width, sec, title, message, color, type, func, close, height, screensaver) { /** Verifica se é a criação da janela popup/modal */ if (create === true) { // Remove o modal caso já exista document.getElementById('modal-block').remove(); var div = ''; var color_modal = ''; var color_text = ''; var icon = ''; /** Verifica se a cor foi informada */ if (!color) { color_modal = 'bg-light'; } else { switch (color) { case 'blue': color_modal = 'bg-primary'; color_text = 'text-white'; break; case 'grey': color_modal = 'bg-secondary'; color_text = 'text-white'; break; case 'green': color_modal = 'bg-success'; color_text = 'text-white'; break; case 'red': color_modal = 'bg-danger'; color_text = 'text-white'; break; case 'yellow': color_modal = 'bg-warning'; color_text = 'text-white'; break; case 'cyan': color_modal = 'bg-info'; color_text = 'text-white'; break; case 'white': color_modal = 'bg-light'; break; case 'black': color_modal = 'bg-dark'; color_text = 'text-white'; break; case 'random': /** Temas disponiveis */ var a = ['primary', 'secondary', 'success', 'danger', 'warning', 'info', 'dark']; /** Embaralha os temas */ var color_rand = shuffle(a); /** Pega o primeiro item embaralhado */ color_modal = 'bg-' + color_rand[0]; break; default: color_modal = 'bg-light'; } } /** Verifica o tipo de mensagem para carregar o icone */ if (type) { switch (type) { case "alert": icon = ''; break; case "info": icon = ''; break; case "error": icon = ''; break; case "checked": icon = ''; break; case "expired": icon = ''; break; case "question": icon = ''; break; case "success": icon = ''; break; case "delete": icon = ''; break; case "circle": /** Cria a div responsável em carregar o spinner+info */ icon = '
'; icon += ' Loading...'; icon += '
'; break; case "ball": /** Cria a div responsável em carregar o spinner+info */ icon = '
'; icon += ' Loading...'; icon += '
'; break; } } div += ''; /** Adiciona o modal na tela */ $('body').append(div); /** Aplica as especificações css na nova janela */ $('.modal-box').css({ 'position': 'absolute', 'width': (width > 0 ? width : 500) + 'px', 'height': (height > 0 ? height + 'px' : 'auto'), 'left': '48.5%', /*'top' : '33%',*/ 'margin-top': '-' + (height > 0 ? (height - 100) / 2 : $('.modal-box').height() / 2) + 'px', 'margin-left': '-' + (width > 0 ? width / 2 : 250) + 'px' }); /** Verifica se o tempo de execução foi definido */ if (parseInt(sec) > 0) { setTimeout(function () { $('div').remove('#modal-block'); }, sec);//Remove o item a partir dos segundos informados } /** Desabilita a tecla enter */ $(document).ready(function(){ $('input').keypress(function (e) { var code = null; code = (e.keyCode ? e.keyCode : e.which); return (code == 13) ? false : true; }); }); } else { $('div').remove('#modal-block'); } } function show(str) { alert(str); }