mirror of
https://github.com/node-red/node-red.git
synced 2025-03-01 10:36:34 +00:00
Add RED.utils.domSelection module
This commit is contained in:
parent
11a6925ae4
commit
c021c4020e
@ -152,6 +152,7 @@ module.exports = function(grunt) {
|
||||
"packages/node_modules/@node-red/editor-client/src/js/history.js",
|
||||
"packages/node_modules/@node-red/editor-client/src/js/validators.js",
|
||||
"packages/node_modules/@node-red/editor-client/src/js/ui/utils.js",
|
||||
"packages/node_modules/@node-red/editor-client/src/js/ui/utils-domselection.js",
|
||||
"packages/node_modules/@node-red/editor-client/src/js/ui/common/editableList.js",
|
||||
"packages/node_modules/@node-red/editor-client/src/js/ui/common/treeList.js",
|
||||
"packages/node_modules/@node-red/editor-client/src/js/ui/common/checkboxSet.js",
|
||||
|
61
packages/node_modules/@node-red/editor-client/src/js/ui/utils-domselection.js
vendored
Normal file
61
packages/node_modules/@node-red/editor-client/src/js/ui/utils-domselection.js
vendored
Normal file
@ -0,0 +1,61 @@
|
||||
/**
|
||||
* Modelled after `d3.selection` this provides a way to keep a mapping of
|
||||
* DOM Nodes with a data collection.
|
||||
*
|
||||
* The goal here is not to reproduce d3 functionality as-is, but to provide an
|
||||
* api that is specific to what we need to do
|
||||
*
|
||||
* const domSelection = RED.utils.domSelection(container, selector, createNode, eachNode)
|
||||
*
|
||||
* - container - a DOM Node that is the container of the DOM Nodes to track
|
||||
* - selector - CSS selector to get the DOM nodes to track
|
||||
* - createNode - function called when a DOM node must be created for a piece of data.
|
||||
* `this` is the data item. Should return the DOM Node. It will
|
||||
* get added to the container.
|
||||
* - eachNode - function called for each DOM node/data item in the selection
|
||||
*
|
||||
* DomSelection.refresh(data) - called whenever the selection should be refreshed.
|
||||
* Data is expected to be an array of objects that contain an 'id' property
|
||||
*
|
||||
*/
|
||||
RED.utils.domSelection = (function() {
|
||||
|
||||
class DomSelection {
|
||||
constructor(container, selector, createNode, eachNode) {
|
||||
this.container = container
|
||||
this.selector = selector
|
||||
this.createNode = createNode
|
||||
this.eachNode = eachNode
|
||||
this.data = []
|
||||
}
|
||||
|
||||
refresh(data) {
|
||||
const domNodes = this.container.querySelectorAll(this.selector)
|
||||
const domItems = new Map()
|
||||
const dataLength = data.length
|
||||
const domLength = domNodes.length
|
||||
for (let i = 0; i < domLength; i++) {
|
||||
const domNode = domNodes[i]
|
||||
if (domNode.__data__) {
|
||||
domItems.set(domNode.__data__.id, domNode)
|
||||
}
|
||||
}
|
||||
for (let i = 0; i < dataLength; i++) {
|
||||
const datum = data[i]
|
||||
let domNode = domItems.get(datum.id)
|
||||
if (!domNode) {
|
||||
domNode = this.createNode.call(datum)
|
||||
this.container.appendChild(domNode)
|
||||
domNode.__data__ = datum
|
||||
} else {
|
||||
domItems.delete(datum.id)
|
||||
}
|
||||
this.eachNode.call(datum, domNode)
|
||||
}
|
||||
for (const remainingDomNodes of domItems) {
|
||||
remainingDomNodes[1].remove()
|
||||
}
|
||||
}
|
||||
}
|
||||
return (container, selector, createNode, eachNode) => new DomSelection(container, selector, createNode, eachNode)
|
||||
})()
|
Loading…
x
Reference in New Issue
Block a user