-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
93 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,93 @@ | ||
var [iframe,main,dubbing ] = [document.createElement("iframe"),document.createElement("main"),document.createElement("div")]; | ||
iframe.setAttribute('style','display:block;');main.classList = 'output same'; dubbing.classList = "ss"; main.append(iframe,dubbing); ss('.Input').after(main); | ||
function flow_load (theme) { var editor = ace.edit("editor");editor.setTheme(theme); editor.session.setMode("ace/mode/html");} | ||
var editor = ace.edit("editor");editor.setTheme("ace/theme/chrome");editor.session.setMode("ace/mode/html"); var koli = editor; | ||
|
||
|
||
//koli.getTheme() setOptions ace | ||
koli.setOptions({cursorStyle:"smooth",behavioursEnabled:true,highlightGutterLine:true,animatedScroll:true, fontSize: "16px",foldStyle:"markbegin",showPrintMargin:0,enableLiveAutocompletion:true,enableBasicAutocompletion:true,}); | ||
//sort Keys | ||
koli.commands.addCommand({ name: "input_full",bindKey: {win: 'Ctrl-i', mac: 'Command-i'}, exec: function(editor) { | ||
var action = ss('.output'),ed = ss('#editor');if(action.style.display == 'none'){action.style.display = 'block'; if(action.style.width.length > 0){ ed.style.right = action.style.width } else { ed.style.right = "20%";}flow_load (koli.getTheme()) }else { action.style.display = 'none'; ed.style.right = "0"; flow_load (koli.getTheme())}}, | ||
readOnly: true // false if this command should not apply in readOnly mode | ||
}); | ||
|
||
// end sort key | ||
|
||
|
||
//output | ||
koli.setValue(`<!DOCTYPE html>\n<html>\n<head>\n<meta charset="utf-8">\n <meta name="viewport" content="width=device-width">\n <title>smaple</title></head> | ||
<body>\n\n\n\n </body>\n</html>`); // start value | ||
|
||
var sesssin = window.sessionStorage.getItem('backup'); // current bar session | ||
if(sesssin == null){ | ||
iframe.srcdoc = koli.getValue(); | ||
}else { | ||
koli.setValue(sesssin); | ||
iframe.srcdoc = sesssin; | ||
} | ||
|
||
koli.clearSelection() ; | ||
koli.on('change',function(){ | ||
window.sessionStorage.setItem('backup',koli.getValue()); | ||
iframe.srcdoc = koli.getValue(); | ||
}); | ||
|
||
|
||
|
||
|
||
interact('.output').resizable({ | ||
// resize from all edges and corners | ||
|
||
edges: { left: true, right: false, bottom: false, top: false }, | ||
onstart: function (event) {ss('.ss').style.display = 'block'}, | ||
onend : function (event) {ss('.ss').style.display = 'none'}, | ||
listeners: { | ||
move (event) { | ||
var target = event.target | ||
var x = (parseFloat(target.getAttribute('data-x')) || 0) | ||
var y = (parseFloat(target.getAttribute('data-y')) || 0) | ||
|
||
// update the element's style | ||
ss('#editor').style.right = event.rect.width+"px"; | ||
|
||
target.style.width = event.rect.width+"px"; //event.rect.width + 'px' | ||
flow_load (koli.getTheme()); | ||
|
||
|
||
|
||
x += event.deltaRect.left; | ||
// y += event.deltaRect.top | ||
|
||
target.style.transform = 'translate(' + x + 'px,' + y + 'px)' | ||
|
||
target.setAttribute('data-x', x) | ||
target.setAttribute('data-y', y) | ||
|
||
} | ||
}, | ||
modifiers: [ | ||
// keep the edges inside the parent | ||
interact.modifiers.restrictEdges({ | ||
outer: 'parent' | ||
}), | ||
|
||
// minimum size | ||
interact.modifiers.restrictSize({ | ||
min:{width:70}, | ||
max:{width:1300} | ||
}) | ||
], | ||
|
||
inertia: true | ||
}); | ||
|
||
|
||
|
||
|
||
|
||
|
||
function ss(a){return document.querySelector(a)} | ||
function all(x){return document.querySelectorAll(x)} | ||
|
||
|