2020-09-23 16:06:12 +08:00
|
|
|
<!DOCTYPE HTML>
|
2020-09-23 16:23:38 +08:00
|
|
|
<html lang="en">
|
2020-09-23 16:06:12 +08:00
|
|
|
<head>
|
2020-09-23 16:23:38 +08:00
|
|
|
<meta charset="utf-8">
|
|
|
|
|
2020-09-23 16:06:12 +08:00
|
|
|
<title>JSONEditor | New window</title>
|
|
|
|
|
|
|
|
<link href="../dist/jsoneditor.css" rel="stylesheet" type="text/css">
|
|
|
|
<script src="../dist/jsoneditor.js"></script>
|
|
|
|
|
|
|
|
<style type="text/css">
|
|
|
|
#jsoneditor {
|
|
|
|
width: 500px;
|
|
|
|
height: 500px;
|
|
|
|
}
|
|
|
|
</style>
|
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<p>
|
|
|
|
<button id="openNewEditor">Open Editor in New Window</button>
|
|
|
|
<button id="setJSON">Set JSON</button>
|
|
|
|
<button id="getJSON">Get JSON</button>
|
|
|
|
</p>
|
|
|
|
|
|
|
|
<script>
|
|
|
|
let editor
|
|
|
|
|
|
|
|
function openNewEditor() {
|
|
|
|
const child = window.open("", "_blank", "width=400,height=400")
|
|
|
|
child.document.title = 'JSONEditor | New window'
|
|
|
|
child.onunload = function () {
|
|
|
|
editor = undefined
|
|
|
|
}
|
|
|
|
|
|
|
|
// make the necessary styles available within the child window
|
|
|
|
// for JSONEditor
|
|
|
|
const baseUrl = window.location.href.slice(0, window.location.href.lastIndexOf('/'))
|
|
|
|
const jsonEditorStyles = child.document.createElement("link")
|
|
|
|
jsonEditorStyles.setAttribute("href", baseUrl + "/../dist/jsoneditor.css")
|
|
|
|
jsonEditorStyles.setAttribute("rel", "stylesheet")
|
|
|
|
child.document.head.append(jsonEditorStyles)
|
|
|
|
// for vanilla-picker
|
|
|
|
const colorPickerStyles = JSONEditor.VanillaPicker.StyleElement.cloneNode(true)
|
|
|
|
child.document.head.append(colorPickerStyles)
|
|
|
|
|
|
|
|
const container = child.document.createElement("div")
|
|
|
|
child.document.body.append(container)
|
|
|
|
|
|
|
|
// create the editor
|
|
|
|
const options = {
|
|
|
|
// Show sort and transform modals in the child window, not the parent.
|
|
|
|
modalAnchor: child.document.body
|
|
|
|
}
|
|
|
|
editor = new JSONEditor(container, options)
|
|
|
|
}
|
|
|
|
|
|
|
|
// create a new window
|
|
|
|
document.getElementById('openNewEditor').onclick = openNewEditor
|
|
|
|
|
|
|
|
// set json
|
|
|
|
document.getElementById('setJSON').onclick = function () {
|
|
|
|
if (!editor) {
|
|
|
|
openNewEditor()
|
|
|
|
}
|
|
|
|
const json = {
|
|
|
|
'array': [1, 2, 3],
|
|
|
|
'boolean': true,
|
|
|
|
'color': '#82b92c',
|
|
|
|
'null': null,
|
|
|
|
'number': 123,
|
|
|
|
'object': {'a': 'b', 'c': 'd'},
|
|
|
|
'time': 1575599819000,
|
|
|
|
'string': 'Hello World'
|
|
|
|
}
|
|
|
|
editor.set(json)
|
|
|
|
}
|
|
|
|
|
|
|
|
// get json
|
|
|
|
document.getElementById('getJSON').onclick = function () {
|
|
|
|
if (!editor) {
|
|
|
|
alert('No editor is open')
|
|
|
|
} else {
|
|
|
|
const json = editor.get()
|
|
|
|
alert(JSON.stringify(json, null, 2))
|
|
|
|
}
|
|
|
|
}
|
|
|
|
</script>
|
|
|
|
</body>
|
|
|
|
</html>
|