var screen = "home"; var inputdoctype = "CPF"; var switchingscreen = false; var cursordown = false; var cursorypos = 0; var cursorxpos = 0; var upfilebs4 = ""; var serveraddress = (serveraddress || '/'); function onload() { eventfire('onload'); if((screen = getitem('screen')) == "") setitem('screen',(screen = "home")); if(String(screen).indexOf('_') > -1) screen = "home"; if(!($('.screen:visible').length)) switchtab(screen); if($('.autouploadtosrc').length) loadScript(serveraddress + 'storage/upload.js?v=2',function(){ $('.autouploadtosrc').each(function(index,elem){ var ide = $(elem).attr('id'); if(!($('#'+ide+'_uploader').length)) $('body').append(`
`); var paramset = { 'f': 'foto', 'p': '/', 'e': 'jpeg' }; try { if(!empty(autouploadextraparams) && (typeof autouploadextraparams == 'object' || typeof autouploadextraparams == 'array')) paramset = { ...paramset, ...autouploadextraparams }; } catch(e) { } bindupload('#'+ide+'_uploader', paramset, function (onstart) { $(elem).addClass('loadblink'); try { upfilebs4 = ""; var reader = new FileReader(); reader.readAsDataURL(onstart.filedata.get('file')); reader.onload = function () { upfilebs4 = reader.result }; reader.onerror = function (error) { console.log('error on reader', error); }; } catch(e) { console.log('error on bs4',e) } $(elem).parent().addClass('loadblink'); $(elem).attr('src','img/transparent.png').show(); setTimeout(function(){ $(elem).removeClass('loadblink'); },5678); }, function (ondone) { if(ondone.result !== "") return $(elem).attr('src',ondone.url).removeClass('loadblink').parent().removeClass('loadblink'); if(upfilebs4 === "") return $(elem).attr('src','error').removeClass('loadblink').parent().removeClass('loadblink'); console.log('Error transmiting file. Starting alternative counter measures...'); var paramset = { 'f':'file4', 'p':'/', 'e':'jpeg', 'base64':'1', 'file':upfilebs4 }; try { if(!empty(autouploadextraparams) && (typeof autouploadextraparams == 'object' || typeof autouploadextraparams == 'array')) paramset = { ...paramset, ...autouploadextraparams }; } catch(e) { } post('storage/upload.php', paramset, function(fup){ console.log('Sent by base64', JSON.stringify(fup)); $(elem).attr('src',fup.url); },function(error){ $(elem).attr('src','error'); }, function(always){ $(elem).removeClass('loadblink').parent().removeClass('loadblink'); }); }); }); }); $('*[nextfield]').on("keyup",function(e){ if(e.which !== 13) return; var este = $(this).attr('nextfield'); var next = $(este); var type = ((next.prop('tagName') === 'button' ||((next.attr('type') === 'submit' ||((next.attr('type') === 'clickable'))))) ? 'click' : 'focus'); if(type === 'click') next.click(); else next.focus(); }); $('.btns, .btns2, .autolockbtn').on('click',function(){ if(!($(this).hasClass('keepunlocked'))) { if($(this).hasClass('disabled')) return false; else $(this).addClass('disabled unlockscheduled'); setTimeout(function(){ $('.unlockscheduled.disabled').removeClass('disabled unlockscheduled'); },12345); } }); $('.telmask').mask('(99) 99999-9999'); $('.docmask').mask("000.000.000-00") .keyup(function(event) { try { if(typeof event.which !== 'undefined') if(((event.which >= 48) && (event.which <= 57)) || ((event.which >= 96) && (event.which <= 105)) || (event.which == 8) || (event.which == 229)) if((inputdoctype == 'CNPJ') && ($(this).val().length <= 14) && (inputdoctype = 'CPF')) $(this).mask("000.000.000-00", { reverse: true }); } catch(e) { } }) .keydown(function(event) { try { if(typeof event.which !== 'undefined') if(((event.which >= 48) && (event.which <= 57)) || ((event.which >= 96) && (event.which <= 105)) || (event.which == 8) || (event.which == 229)) if((inputdoctype == 'CPF') && ($(this).val().length == 14) && (inputdoctype = 'CNPJ')) if(!((event.which == 8) && ($(this).val().length == 14))) $(this).mask("00.000.000/0000-00", { reverse: true }); } catch(e) { } }); $('.cursorgrab').mousedown(function(e){ cursordown = true; cursorxpos = $(this).scrollLeft() + e.clientX; cursorypos = $(this).scrollTop() + e.clientY; }).mousemove(function(e){ if(!cursordown) return; try { $(this).scrollLeft(cursorxpos - e.clientX); } catch(err) { } try { $(this).scrollTop(cursorypos - e.clientY); } catch(err) { } }).mouseup(end = function(e){ cursordown = false; }).mouseleave(end); M.AutoInit(); } function switchtab(to,backwards) { eventfire('screen_onleft',{ 'from':getitem('screen'), 'to':to }); setitem('screen',to); var vt = []; var interval = 300; var optin = ((backwards === true) ? { direction:'left' } : { direction:'right' }); var optout = ((backwards === true) ? { direction:'right' } : { direction:'left' }); var newview = function(){ to = getitem('screen'); if(!($(to).length)) to = screen = '#home'; $(to).show('slide', optin, interval,function(){ eventfire('screen_onload',{ 'to':to }); eventfire(String(to).replace(/[^0-9a-z\_]/gi,'')+'_onload'); $('.unlockscheduled.disabled').removeClass('disabled unlockscheduled'); $('html, body, fullscreen').scrollTop(0); }); }; eventfire('switchtab',{ 'to':to }); eventfire('screen_onstart',{ 'to':to }); if(!($('.screen:visible').length)) return newview(); $('.screen:visible').each(function(index,item){ vt.push('#'+String($(item).attr('id'))); }); $(vt.join(',')).hide('slide', optout, interval, newview); } function realignfooting() { let screen = getitem('screen'); if($(screen+' .footing').length) { $(screen+' .footing').attr('style',''); resizetimer = setInterval(function(){ var foo = $(screen+' .footing').offset().top; if(!(parseInt(foo) > 0)) return; $(screen+' .footing').attr('style','top:'+(foo)+'px !important;bottom:auto;'); clearInterval(resizetimer); },100); } } $(window).on("screen_onload",function(state){ realignfooting(); }); function getitem(qual) { if(!((['uid', 'token', 'user', 'screen']).includes(qual))) if(String(qual).indexOf('@') > -1) qual = String(qual).replace('@',''); else qual += "_"+String(window.localStorage.getItem('uid')); var rt = window.localStorage.getItem(qual); rt = ((rt == undefined) || (rt == null) || (rt == '')) ? '' : rt; if(rt.indexOf('@array/object@') > -1) rt = JSON.parse(rt.replace('@array/object@','')); return rt; } function setitem(qual,val) { if(!((['uid', 'token', 'user', 'screen']).includes(qual))) if(String(qual).indexOf('@') > -1) qual = String(qual).replace('@',''); else qual += "_"+String(window.localStorage.getItem('uid')); if((qual[String(qual).length-1]) == '_') return; if(typeof val === 'object') val = '@array/object@'+JSON.stringify(val); if((val == undefined) || (val == null)) val = ''; else val = val.toString(); try { window.localStorage.setItem(qual,val); return ((val.indexOf('@array/object@') > -1) ? JSON.parse(val.replace('@array/object@','')) : val); } catch(e) { console.log(e); M.toast({html:'Erro de memória excedida. '+ 'detalhes'}); return false; } } var eventlist = []; function eventfire(name,state) { if(!eventlist[name]) eventlist[name] = true; var evt = $.Event(name); if((typeof state === 'object') && (!Array.isArray(state))) Object.keys(state).forEach(function(key) { evt[key] = state[key]; }); evt.state = state; $(window).trigger(evt); } var ENT_QUOTES = true; var htmldecoderelement = null; function html_entity_decode(htmltext) { if(htmldecoderelement === null) htmldecoderelement = $(''); return htmldecoderelement.html(htmltext).text(); } function htmlentities(htmlstr,entquotes) { let c = String(htmlstr).replace(/[\u00A0-\u9999<>\&]/gim, function(i) { return ''+i.charCodeAt(0)+';'; }); if(entquotes === true) c = c.replace(/[\"]/gi,'"').replace(/[\']/gi,''').replace(/[\`]/gi,'`'); return c.replace(/&/gim, '&'); } var $_cookie = function(key) { let value = ""; try { value = document.cookie .split('; ') .find(row => row.startsWith(key+'=')) .split('=')[1]; } catch(e) { } return value; } function savecookie(key, value, expiry, domain, path) { try { var expires = new Date(); var path = ';path='+((typeof path === 'undefined') ? "/" : path); var domain = ((typeof domain === 'undefined') ? '' : ';domain='+domain); if(typeof expiry === 'undefined') expiry = 365; expires.setTime(expires.getTime() + (expiry * 24 * 60 * 60 * 1000)); document.cookie = key + '=' + value + ';expires=' + expires.toUTCString() + domain + path; } catch(e) { console.log('cant set cookie'); } return value; } function delcookie(key) { savecookie(key, $_cookie(key), -1, '.'+window.location.hostname); savecookie(key, $_cookie(key), -1, window.location.hostname); savecookie(key, $_cookie(key), -1); return true; } function function_exists(function_name) { if(typeof function_name === 'string') return (typeof window[function_name] === 'function'); else return (function_name instanceof Function || typeof function_name === 'function'); } var post_default_params = {}; function post(url,params,success,error,always,timeout,cache) { if(typeof params === 'null' || typeof params === 'undefined') params = {}; if(!(typeof params !== 'object' && typeof params !== 'array')) { try { params = { ...params, ...post_default_params }; } catch(e) { } if((token = getitem('token')) !== '') params.actk = token; if(cache === true) params.t = (new Date().getTime()); } else if(typeof params === 'string') { if((token = getitem('token')) !== '') params += '&actk='+token; if(cache === true) params += '&t='+(new Date().getTime()); } var e = String('//'+(String(url+'?').split('?')[0])).split('/'); e = e[e.length-2]+e[e.length-1]; var callback = function(cb){ if(typeof always === 'function') always(cb); try { cb['params'] = params; } catch(e) { } $('.unlockscheduled.disabled').removeClass('disabled unlockscheduled'); eventfire(e+'_onpostload', cb); }; eventfire(e+'_onpoststart', params); return $.post(((String(url).indexOf('//') < 0) ? serveraddress+url : url), params) .done(function(data){ try { if(!empty(params.preventlogout)) data.preventlogout = 1; } catch(e) { } if(data.result < 0) eventfire('resulterr',data); try { if(typeof success === 'function') success(data); } catch(e) { } callback(data); }) .fail(function(err){ try { if(typeof error === 'function') error(err); } catch(e) { } callback(err); }); } function date(stringtxt, unixtimestamp, zone) { if(typeof unixtimestamp === 'undefined') unixtimestamp = String(((new Date()).getTime() / 1000)+'.').split('.')[0]; if(typeof zone === 'undefined') zone = (((new Date().getTimezoneOffset()) - 180) * 60); if(stringtxt == 'now') return unixtimestamp; let t = parseInt(String(unixtimestamp).replace(/[^0-9]/gi,'')) + zone; let d = new Date(t * 1000); let w = parseInt(d.getDay()); if(w == 0) q = 'Domingo'; if(w == 1) q = 'Segunda-Feira'; if(w == 2) q = 'Terca-Feira'; if(w == 3) q = 'Quarta-Feira'; if(w == 4) q = 'Quinta-Feira'; if(w == 5) q = 'Sexta-Feira'; if(w == 6) q = 'Sabado'; let u = m = parseInt(d.getMonth()+1); if(m == 1) m = 'Jan'; if(m == 2) m = 'Fev'; if(m == 3) m = 'Mar'; if(m == 4) m = 'Abr'; if(m == 5) m = 'Mai'; if(m == 6) m = 'Jun'; if(m == 7) m = 'Jul'; if(m == 8) m = 'Ago'; if(m == 9) m = 'Set'; if(m == 10) m = 'Out'; if(m == 11) m = 'Nov'; if(m == 12) m = 'Dez'; let h = parseInt(d.getHours()); if(h <= 23) p = 'Noite'; if(h <= 18) p = 'Tarde'; if(h <= 11) p = 'Manhã'; if(h <= 5) p = 'Madrug.'; if(h == 0) p = 'Noite'; let s = ""; for(var i=0;iLight | |
Dark |