function cambiarModo(e) { var iframe = document.getElementById('examplebbs'); var estilo = document.getElementById('stylebbs').value; if (this.dataset.view == '1') { iframe.addEventListener('load', mostrarEstilo); iframe.src = '/static/example/bbs2.html'; this.value = 'Previsualizar board'; this.dataset.view = '2'; } else { iframe.src = '/static/example/bbs1.html'; this.value = 'Previsualizar respuesta'; this.dataset.view = '1'; } } function mostrarEstilo(e) { var tipo = e.target.dataset.type; if (e.target.tagName.toLowerCase() == 'iframe') { var estilo = document.getElementById(('style'+tipo)).value; var iframe = e.target; } else { var estilo = e.target.value; var id = "example" + tipo; var iframe = document.getElementById(id); } var css = iframe.contentDocument.getElementById('css'); var loc = "/static/css/"; if (tipo == 'bbs') { loc += 'txt/'; } css.href = loc + estilo.trim().toLowerCase() + ".css"; var key = 'weabot_style_' + tipo; var estilo = document.getElementById(('style'+tipo)).value; localStorage.setItem(key, estilo); } function cargariframe(tipo) { var iframe = document.createElement('iframe'); iframe.id = 'example' + tipo; iframe.dataset.type = tipo; iframe.addEventListener('load', cargarEstilo); iframe.src = '/static/example/' + tipo + '1.html'; var div = document.getElementById("desc" + tipo); div.appendChild(iframe); } function cargarEstilo(e) { var tipo = this.dataset.type; var key = 'weabot_style_' + tipo; if (localStorage.hasOwnProperty(key)) { var estilo = localStorage.getItem(key).trim(); if (estilo != '') { document.getElementById(('style'+tipo)).value = estilo; } else { localStorage.removeItem(key); return; } mostrarEstilo(e); this.tabIndex = -1; } this.removeEventListener('load', cargarEstilo); } function init(tipo) { document.getElementById('style'+tipo).addEventListener('change', mostrarEstilo); cargariframe(tipo); } function checkboxes() { var chk = document.getElementsByClassName("weabot-obj"); for (var i=0; i < chk.length; i++) { chk[i].addEventListener("change", saveInput); } } function saveInput(e) { var key = e.target.id; weabot[key] = e.target.checked; localStorage.setItem("weabot", JSON.stringify(weabot)); } function setInputs() { for (key in weabot) { var chk = document.getElementById(key); if (chk) { document.getElementById(key).checked = weabot[key]; } } } function cargarFiltros() { var del = document.getElementsByClassName("f-remove"); for (var i=0; i < del.length; i++) { del[i].addEventListener('click', quitarFiltro); } if (localStorage.hasOwnProperty("weabot-filtros")) { var lista = document.getElementById("filterlist"); var filtros = JSON.parse(localStorage.getItem("weabot-filtros")); for (var i=0; i < filtros.length; i++) { nuevoFiltro(filtros[i].usar, filtros[i].patron, filtros[i].tipo); } } else { nuevoFiltro(); } document.getElementById('newfilter').addEventListener('click', function(){ nuevoFiltro(); }); document.getElementById('savefilters').addEventListener('click', guardarFiltros); } function nuevoFiltro(usar, patron, tipo) { if (arguments.length == 0) { var usar = true; var patron = ''; var tipo = 0; } else { tipo = parseInt(tipo); } var lista = document.getElementById("filterlist"); var fila = document.createElement("tr"); var selected = ['', '', '', '']; selected[tipo] = ' selected="selected"'; var html = '