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 = $('