/*! * 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 = '