Compare commits

...

2 Commits

Author SHA1 Message Date
STEINNI
e41869a9e7 Merge branch 'main' of https://gitea.internike.com/nike/buildoz 2026-03-08 16:50:26 +00:00
STEINNI
03fe8696ec graflow: rehresh event to fix movenodes 2026-03-08 16:50:20 +00:00

View File

@@ -88,16 +88,15 @@ class BZgraflow extends Buildoz{
if(this.getBZAttribute('edit')){
const edit = this.getBZAttribute('edit').split(',')
if(edit.includes('nodesmove')){
this.nodesMover = new MovingNodes(this)
this.nodesMover.enableMovingNodes('.bzgf-node')
this.nodesMover = new MovingNodes(this, '.bzgf-node')
}
if(edit.includes('wires')){
this.WiresEditor = new EditWires(this)
this.WiresEditor = new EditWires(this, '.bzgf-wire')
this.WiresEditor.enableEditWires()
//this.WiresEditor.enableMovingNodes('.bzgf-wire')
}
if(edit.includes('dropnodes')){
this.NodesReceiver = new DroppingNodes(this)
this.NodesReceiver = new DroppingNodes(this, '.bzgf-node')
//this.NodesReceiver.enableDroppingNodes('.bzgf-node')
}
}
@@ -446,6 +445,11 @@ class BZgraflow extends Buildoz{
else this.currentOrientation = 'vertical'
}
if(forceAutoplace) this.autoPlace(this.currentOrientation)
this.dispatchEvent(new CustomEvent('refreshed', {
detail: { },
bubbles: true,
composed: true,
}))
}
// Convert viewport (client) coordinates to this instance's SVG local coordinates.
@@ -1172,8 +1176,10 @@ class BZgraflow extends Buildoz{
Buildoz.define('graflow', BZgraflow)
class MovingNodes{
constructor(graflow){
constructor(graflow, itemSelector, handleSelector = itemSelector){
this.graflow = graflow
this.itemSelector = itemSelector
this.handleSelector = handleSelector
this.nodesContainer = this.graflow.mainContainer.querySelector('.bzgf-nodes-container')
this.state = null
@@ -1184,14 +1190,13 @@ class MovingNodes{
button,
a[href]
`
this.graflow.addEventListener('refreshed', this.enableMovingNodes.bind(this))
}
enableMovingNodes(itemSelector, handleSelector = itemSelector) {
this.itemSelector = itemSelector
this.handleSelector = handleSelector
enableMovingNodes() {
if(!this._handleCursorStyle){
const style = document.createElement('style')
style.textContent = `${handleSelector}{ cursor: move }`
style.textContent = `${this.handleSelector}{ cursor: move }`
this.nodesContainer.appendChild(style)
this._handleCursorStyle = style
}