mirror of
https://github.com/barsdeveloper/ueblueprint.git
synced 2026-02-16 10:54:42 +08:00
32 lines
1.0 KiB
JavaScript
32 lines
1.0 KiB
JavaScript
import { html } from "lit"
|
|
import ISelectableDraggableTemplate from "./ISelectableDraggableTemplate"
|
|
import PinElement from "../element/PinElement"
|
|
|
|
/** @typedef {import("../element/NodeElement").default} NodeElement */
|
|
|
|
/** @extends {ISelectableDraggableTemplate<NodeElement>} */
|
|
export default class KnotNodeTemplate extends ISelectableDraggableTemplate {
|
|
|
|
render() {
|
|
return html`
|
|
<div class="ueb-node-border"></div>
|
|
`
|
|
}
|
|
|
|
/** @param {Map} changedProperties */
|
|
firstUpdated(changedProperties) {
|
|
super.firstUpdated(changedProperties)
|
|
const content = /** @type {HTMLElement} */(this.element.querySelector(".ueb-node-border"))
|
|
Promise.all(this.element.getPinElements().map(n => n.updateComplete)).then(() => this.element.dispatchReflowEvent())
|
|
this.element.getPinElements().forEach(p => content.appendChild(p))
|
|
}
|
|
|
|
/**
|
|
* @param {NodeElement} node
|
|
* @returns {NodeListOf<PinElement>}
|
|
*/
|
|
getPinElements(node) {
|
|
return node.querySelectorAll("ueb-pin")
|
|
}
|
|
}
|