diff --git a/bin/em/variabletime/web/js/audio.js b/bin/em/variabletime/web/js/audio.js index dfebbb8..5079429 100644 --- a/bin/em/variabletime/web/js/audio.js +++ b/bin/em/variabletime/web/js/audio.js @@ -670,7 +670,6 @@ const Audio = function(tp, record) { } }; const addAudio = (layer, propTitle) => { - console.log('adding audio for', layer, propTitle); if (!started) { init(); } diff --git a/bin/em/variabletime/web/js/layer.js b/bin/em/variabletime/web/js/layer.js index 5df00d1..47de0e3 100644 --- a/bin/em/variabletime/web/js/layer.js +++ b/bin/em/variabletime/web/js/layer.js @@ -101,7 +101,6 @@ const Layer = function(tp, layerID, fontsAndAxes, autoInit = true) { let axes = fontsAndAxes[selectedFontIndex].axes; if (axes.length > 0) { let variationAxes = {}; - //let doThese = []; for (let a = 0; a < axes.length; a++) { const sanity_minMax = axes[a].minValue < axes[a].maxValue; const sanity_minDefault = axes[a].minValue <= axes[a].defaultValue; @@ -110,31 +109,11 @@ const Layer = function(tp, layerID, fontsAndAxes, autoInit = true) { variationAxes[axes[a].name] = tp.core.types.number(axes[a].defaultValue, { range: [axes[a].minValue, axes[a].maxValue], }); - //if (typeof audio === 'object' && - //typeof audio.getSavedMapping() === 'object' && - //typeof audio.getSavedMapping()[this.id()] === 'object' && - //typeof audio.getSavedMapping()[this.id()][`fontVariationAxes.${axes[a].name}`] === 'object' && - //typeof audio.getMapping() === 'object' && - //typeof audio.getMapping()[this.id()] === 'object' && - //typeof audio.getMapping()[this.id()][`fontVariationAxes.${axes[a].name}`] === 'object' && - //tp.getPanel() !== null) { - ////doThese.push(() => { - ////audio.removeAudioOptions(this, `fontVariationAxes.${axes[a].name}`); - ////audio.removeAudioMapping(this, `fontVariationAxes.${axes[a].name}`); - ////audio.getSavedMapping()[this.id()][`fontVariationAxes.${axes[a].name}`].min_out = axes[a].minValue; - ////audio.getSavedMapping()[this.id()][`fontVariationAxes.${axes[a].name}`].max_out = axes[a].maxValue; - ////audio.addAudioMapping(this, `fontVariationAxes.${axes[a].name}`); - ////audio.addAudioOptions(this, `fontVariationAxes.${axes[a].name}`); - ////}); - //} } else { console.log('js::layer::selectFont', 'this axis is insane, abort', axes[a]); } } props.fontVariationAxes = tp.core.types.compound(variationAxes); - //doThese.forEach((d) => { - //d(); - //}); } else { delete props.fontVariationAxes; } @@ -149,26 +128,21 @@ const Layer = function(tp, layerID, fontsAndAxes, autoInit = true) { return new Promise((resolve) => { // NOTE: stupid hack, seems that theatrejs tries to be too smart // detecting if reconfiguring the object is necessary. - // file bug report and test in future versions. + // file bug report and test in future versions? // // this overcomplicates some of our code though.. urgh.. // btw, we need a dummy property // this does not work //tp.changeObject(this.id(), {}); - //tp.changeObject(this.id(), {dummy:true}); - //updateTheatrePropsTimeout = setTimeout(() => { tp.changeObject(this.id(), {dummy: true}); setTimeout(() => { tp.changeObject(this.id(), props); setTimeout(() => { - //updateTheatrePropsTimeout = false; - //this.afterUpdateTheatrePropsCallback(); this.findInjectPanel(); resolve(); }, 100); }, 100); - //}, 100); }); }; const getDefaultFont = (selectableFonts) => { @@ -299,28 +273,19 @@ const Layer = function(tp, layerID, fontsAndAxes, autoInit = true) { const showBoundingBoxDiv = (boundingBox = false) => { const boundingBoxDivId = `boundingBox-${this.id()}`; - //const layerBoxDivId = `layerBox-${this.id()}`; if (document.querySelector(`#${boundingBoxDivId}`) === null) { if (boundingBox === false) { boundingBox = Module.getBoundingBox(this.id()); } const artboard = window.getArtboard(); const boundingBoxDiv = document.createElement('div'); - //const layerBoxDiv = document.createElement('div'); boundingBoxDiv.id = boundingBoxDivId; boundingBoxDiv.style.position = 'fixed'; boundingBoxDiv.style.background = 'transparent'; boundingBoxDiv.style.border = '1px dashed dimgrey'; boundingBoxDiv.style.boxSizing = 'border-box'; - //layerBoxDiv.id = layerBoxDivId; - //layerBoxDiv.style.position = 'fixed'; - //layerBoxDiv.style.background = 'transparent'; - //layerBoxDiv.style.border = '1px solid green'; - //layerBoxDiv.style.boxSizing = 'border-box'; - document.getElementById('body').append(boundingBoxDiv); - //document.getElementById('body').append(layerBoxDiv); clearInterval(boundingBoxInterval); boundingBoxInterval = setInterval(() => { updateBoundingBoxDiv(); @@ -335,7 +300,6 @@ const Layer = function(tp, layerID, fontsAndAxes, autoInit = true) { if (bb !== null) { bb.remove(); } - //document.getElementById(`layerBox-${this.id()}`).remove(); clearInterval(boundingBoxInterval); boundingBoxInterval = false; }; @@ -449,7 +413,6 @@ const Layer = function(tp, layerID, fontsAndAxes, autoInit = true) { mom.append(upButton); mom.append(downButton); mom.append(removeButton); - //window.layerOrder.add(this.id()); panel.addEventListener('mouseover', showBoundingBoxDiv); panel.addEventListener('mouseout', hideBoundingBoxDiv); @@ -715,8 +678,6 @@ const Layer = function(tp, layerID, fontsAndAxes, autoInit = true) { const alignButtonsHorizontal = panel.querySelector('.alignButtonsHorizontal'); const alignButtonsVertical = panel.querySelector('.alignButtonsVertical'); - //panelControlsWrapper.add(alignButtonsHorizontal); - //panelControlsWrapper.add(alignButtonsVertical); // first get previous textAlign buttons, // if they are already there diff --git a/bin/em/variabletime/web/js/utils.js b/bin/em/variabletime/web/js/utils.js index de2bef2..f9f3424 100644 --- a/bin/em/variabletime/web/js/utils.js +++ b/bin/em/variabletime/web/js/utils.js @@ -115,14 +115,12 @@ function uploadFile(expectedType = 'application/json') { if (files.length == 0) return; const file = files[0]; - console.log('file', file); let reader = new FileReader(); if (expectedType === 'application/zip' || file.type === 'application/zip' || file.type.indexOf('audio') === 0) { reader.onload = (e) => { const f = e.target.result; - console.log(e, file.name, file.size, file.type, f); resolve({ name: file.name, size: file.size, @@ -136,7 +134,6 @@ function uploadFile(expectedType = 'application/json') { reader.readAsArrayBuffer(file); } else if (expectedType === 'application/json') { reader.onload = (e) => { - console.log(e); const f = e.target.result; // This is a regular expression to identify carriage @@ -156,12 +153,9 @@ function uploadFile(expectedType = 'application/json') { reader.readAsText(file); } else if (expectedType.indexOf('font') >= 0) { - console.log('expect font'); reader.onload = (e) => { - console.log(e); const f = e.target.result; if (file.type.indexOf('font') >= 0) { - console.log('is font'); //var uint8View = new Uint8Array(f); //console.log('trying to save the font file, file, uint8View', file, uint8View); //FS.createDataFile(config.fs.idbfsFontDir, file.name, uint8View, true, true); @@ -182,7 +176,6 @@ function uploadFile(expectedType = 'application/json') { type: file.type, arrayBuffer: f }; - console.log({outputFile}); resolve(outputFile); } else { reject('not a font');