Spaces:
Sleeping
Sleeping
File size: 4,811 Bytes
bd27e5d | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 | import { Sphere, Bus } from 'https://cdn.jsdelivr.net/npm/@mundorum/collections@0.3.0/full.js'
// import { Sphere, Bus } from '@mundorum/oid/oid.js'
// if (!new URL(document.location).searchParams.has('dev')) {
// await import('@mundorum/collections/full.js')
// }
export class EditorPg {
start () {
this._controlSphere = Sphere.get('control').bus
this._controlSphere.subscribe(
'file/loaded', this._renderFile.bind(this))
this._controlSphere.subscribe(
'control/download/code', this._downloadCode.bind(this))
this._controlSphere.subscribe(
'control/download/page', this._downloadPage.bind(this))
this._controlSphere.subscribe(
'control/render', this._renderOids.bind(this))
this._controlSphere.subscribe(
'control/code', this._codeOids.bind(this))
this._controlSphere.subscribe(
'control/clear', this._clearOids.bind(this))
Bus.i.subscribe('#', this._busMonitor.bind(this))
}
_renderFile (topic, message) {
this._template = message.value
document.querySelector("#pg-render").innerHTML = this._template
this._showTree()
}
_showTree () {
const root = document.querySelector("#pg-render")
this._controlSphere.publish('tree/clear')
document.querySelector("#oid-list").innerHTML =
'<option value="">Select an OID</option>'
for (let childId = 1; childId <= root.children.length; childId++)
this._buildTree(root.children[childId-1], null, childId)
}
_buildTree (element, parentId, childId) {
const id = (parentId != null) ? `${parentId}.${childId}` : `${childId}`
const name = element.nodeName.toLowerCase()
// node
const node = { id: id,
label: name + (element.id ? `: ${element.id}` : '') }
if (!name.endsWith('-oid'))
node.format = 'light'
this._controlSphere.publish('tree/node', node)
if (element.id) {
const option = document.createElement('option')
option.value = element.id
option.text = element.id
document.querySelector("#oid-list").appendChild(option)
}
// edge
if (parentId != null) {
const edge = { source: parentId,
target: id }
this._controlSphere.publish('tree/edge', edge)
}
for (let childId = 1; childId <= element.children.length; childId++)
this._buildTree(element.children[childId-1], id, childId)
}
_renderOids () {
const div = document.createElement('div')
div.innerHTML = document.querySelector("#pg-editor").value
const selectedOption = document.querySelector("#oid-list").value
let base = document.querySelector(
(selectedOption === '') ? '#pg-render' : `#${selectedOption}`)
if (base instanceof SVGElement) {
const foreignObject = document.createElementNS('http://www.w3.org/2000/svg', 'foreignObject')
foreignObject.setAttribute('width', '100%')
foreignObject.setAttribute('height', '100%')
base.appendChild(foreignObject)
base = foreignObject
}
while (div.firstChild)
base.appendChild(div.firstChild)
this._showTree()
}
_codeOids () {
const selectedOption = document.querySelector("#oid-list").value
const base = document.querySelector(
(selectedOption === '') ? '#pg-render' : `#${selectedOption}`)
document.querySelector("#pg-editor").value = base.innerHTML
}
_clearOids () {
document.querySelector("#pg-render").innerHTML =
(this._template != null) ? this._template : ''
this._showTree()
}
_busMonitor (topic, message) {
Sphere.get('control').bus.
publish('control/monitor', {value: `[${topic}] ${JSON.stringify(message)}`})
}
_downloadCode () {
this._download('code.html', document.querySelector('#pg-render').innerHTML)
}
_downloadPage () {
this._download('page.html',
EditorPg.pageBegin +
document.querySelector('#pg-render').innerHTML +
EditorPg.pageEnd)
}
_download (fileName, content) {
const a = document.createElement('a')
a.style.display = 'none'
document.body.appendChild(a)
a.href = window.URL.createObjectURL(
new Blob([content], {type: 'text/plain'}))
a.setAttribute('download', fileName)
a.click()
window.URL.revokeObjectURL(a.href)
document.body.removeChild(a)
}
}
EditorPg.i = new EditorPg()
EditorPg.pageBegin =
`<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@mundorum/oid/oid.min.css">
<script src="https://cdn.jsdelivr.net/npm/@mundorum/collections/full.min.js"></script>
</head>
<body>
<oid-sphere assets="https://mundorum.github.io/oid/oid/playground/assets/" stydefault="https://cdn.jsdelivr.net/npm/@mundorum/oid/oid.min.css" global></oid-sphere>`
EditorPg.pageEnd =
`</body>
</html>` |