refactor(core): resolve slots before returning default component (#1013)
This commit is contained in:
@@ -0,0 +1,5 @@
|
|||||||
|
---
|
||||||
|
"@vue-flow/core": patch
|
||||||
|
---
|
||||||
|
|
||||||
|
Deprecate template prop for nodes
|
||||||
@@ -0,0 +1,5 @@
|
|||||||
|
---
|
||||||
|
"@vue-flow/core": minor
|
||||||
|
---
|
||||||
|
|
||||||
|
Resolve slot templates before falling back to default node/edge components
|
||||||
@@ -22,6 +22,8 @@ const {
|
|||||||
emits,
|
emits,
|
||||||
} = useVueFlow()
|
} = useVueFlow()
|
||||||
|
|
||||||
|
const instance = getCurrentInstance()
|
||||||
|
|
||||||
function selectable(edgeSelectable?: boolean) {
|
function selectable(edgeSelectable?: boolean) {
|
||||||
return typeof edgeSelectable === 'undefined' ? elementsSelectable.value : edgeSelectable
|
return typeof edgeSelectable === 'undefined' ? elementsSelectable.value : edgeSelectable
|
||||||
}
|
}
|
||||||
@@ -34,8 +36,13 @@ function focusable(edgeFocusable?: boolean) {
|
|||||||
|
|
||||||
function getType(type?: string, template?: GraphEdge['template']) {
|
function getType(type?: string, template?: GraphEdge['template']) {
|
||||||
const name = type || 'default'
|
const name = type || 'default'
|
||||||
|
|
||||||
|
const slot = slots?.[`edge-${name}`]
|
||||||
|
if (slot) {
|
||||||
|
return slot
|
||||||
|
}
|
||||||
|
|
||||||
let edgeType = template ?? getEdgeTypes.value[name]
|
let edgeType = template ?? getEdgeTypes.value[name]
|
||||||
const instance = getCurrentInstance()
|
|
||||||
|
|
||||||
if (typeof edgeType === 'string') {
|
if (typeof edgeType === 'string') {
|
||||||
if (instance) {
|
if (instance) {
|
||||||
@@ -45,17 +52,14 @@ function getType(type?: string, template?: GraphEdge['template']) {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if (edgeType && typeof edgeType !== 'string') {
|
if (edgeType && typeof edgeType !== 'string') {
|
||||||
return edgeType
|
return edgeType
|
||||||
}
|
}
|
||||||
|
|
||||||
const slot = slots?.[`edge-${name}`]
|
emits.error(new VueFlowError(ErrorCode.EDGE_TYPE_MISSING, edgeType))
|
||||||
if (!slot) {
|
|
||||||
emits.error(new VueFlowError(ErrorCode.EDGE_TYPE_MISSING, edgeType))
|
|
||||||
return false
|
|
||||||
}
|
|
||||||
|
|
||||||
return slot
|
return false
|
||||||
}
|
}
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
<script lang="ts" setup>
|
<script lang="ts" setup>
|
||||||
import { getCurrentInstance, inject, nextTick, onBeforeUnmount, onMounted, resolveComponent } from 'vue'
|
import { getCurrentInstance, inject, nextTick, onBeforeUnmount, onMounted, ref, resolveComponent } from 'vue'
|
||||||
import { until } from '@vueuse/core'
|
import { until } from '@vueuse/core'
|
||||||
import { NodeWrapper } from '../../components'
|
import { NodeWrapper } from '../../components'
|
||||||
import type { GraphNode, HandleConnectable, NodeComponent } from '../../types'
|
import type { GraphNode, HandleConnectable, NodeComponent } from '../../types'
|
||||||
@@ -19,20 +19,22 @@ const {
|
|||||||
getNodeTypes,
|
getNodeTypes,
|
||||||
updateNodeDimensions,
|
updateNodeDimensions,
|
||||||
emits,
|
emits,
|
||||||
} = $(useVueFlow())
|
} = useVueFlow()
|
||||||
|
|
||||||
let resizeObserver = $ref<ResizeObserver>()
|
const resizeObserver = ref<ResizeObserver>()
|
||||||
|
|
||||||
until(() => getNodes.length > 0 && getNodesInitialized.length === getNodes.length)
|
const instance = getCurrentInstance()
|
||||||
|
|
||||||
|
until(() => getNodes.value.length > 0 && getNodesInitialized.value.length === getNodes.value.length)
|
||||||
.toBe(true)
|
.toBe(true)
|
||||||
.then(() => {
|
.then(() => {
|
||||||
nextTick(() => {
|
nextTick(() => {
|
||||||
emits.nodesInitialized(getNodesInitialized)
|
emits.nodesInitialized(getNodesInitialized.value)
|
||||||
})
|
})
|
||||||
})
|
})
|
||||||
|
|
||||||
onMounted(() => {
|
onMounted(() => {
|
||||||
resizeObserver = new ResizeObserver((entries) => {
|
resizeObserver.value = new ResizeObserver((entries) => {
|
||||||
const updates = entries.map((entry) => {
|
const updates = entries.map((entry) => {
|
||||||
const id = entry.target.getAttribute('data-id') as string
|
const id = entry.target.getAttribute('data-id') as string
|
||||||
|
|
||||||
@@ -47,25 +49,30 @@ onMounted(() => {
|
|||||||
})
|
})
|
||||||
})
|
})
|
||||||
|
|
||||||
onBeforeUnmount(() => resizeObserver?.disconnect())
|
onBeforeUnmount(() => resizeObserver.value?.disconnect())
|
||||||
|
|
||||||
function draggable(nodeDraggable?: boolean) {
|
function draggable(nodeDraggable?: boolean) {
|
||||||
return typeof nodeDraggable === 'undefined' ? nodesDraggable : nodeDraggable
|
return typeof nodeDraggable === 'undefined' ? nodesDraggable.value : nodeDraggable
|
||||||
}
|
}
|
||||||
function selectable(nodeSelectable?: boolean) {
|
function selectable(nodeSelectable?: boolean) {
|
||||||
return typeof nodeSelectable === 'undefined' ? elementsSelectable : nodeSelectable
|
return typeof nodeSelectable === 'undefined' ? elementsSelectable.value : nodeSelectable
|
||||||
}
|
}
|
||||||
function connectable(nodeConnectable?: HandleConnectable) {
|
function connectable(nodeConnectable?: HandleConnectable) {
|
||||||
return typeof nodeConnectable === 'undefined' ? nodesConnectable : nodeConnectable
|
return typeof nodeConnectable === 'undefined' ? nodesConnectable.value : nodeConnectable
|
||||||
}
|
}
|
||||||
function focusable(nodeFocusable?: boolean) {
|
function focusable(nodeFocusable?: boolean) {
|
||||||
return typeof nodeFocusable === 'undefined' ? nodesFocusable : nodeFocusable
|
return typeof nodeFocusable === 'undefined' ? nodesFocusable.value : nodeFocusable
|
||||||
}
|
}
|
||||||
|
|
||||||
function getType(type?: string, template?: GraphNode['template']) {
|
function getType(type?: string, template?: GraphNode['template']) {
|
||||||
const name = type || 'default'
|
const name = type || 'default'
|
||||||
let nodeType = template ?? getNodeTypes[name]
|
|
||||||
const instance = getCurrentInstance()
|
const slot = slots?.[`node-${name}`]
|
||||||
|
if (slot) {
|
||||||
|
return slot
|
||||||
|
}
|
||||||
|
|
||||||
|
let nodeType = template ?? getNodeTypes.value[name]
|
||||||
|
|
||||||
if (typeof nodeType === 'string') {
|
if (typeof nodeType === 'string') {
|
||||||
if (instance) {
|
if (instance) {
|
||||||
@@ -75,17 +82,14 @@ function getType(type?: string, template?: GraphNode['template']) {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
if (typeof nodeType !== 'string') {
|
|
||||||
|
if (nodeType && typeof nodeType !== 'string') {
|
||||||
return nodeType
|
return nodeType
|
||||||
}
|
}
|
||||||
|
|
||||||
const slot = slots?.[`node-${name}`]
|
emits.error(new VueFlowError(ErrorCode.NODE_TYPE_MISSING, nodeType))
|
||||||
if (!slot) {
|
|
||||||
emits.error(new VueFlowError(ErrorCode.NODE_TYPE_MISSING, nodeType))
|
|
||||||
return false
|
|
||||||
}
|
|
||||||
|
|
||||||
return slot
|
return false
|
||||||
}
|
}
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
|
|||||||
@@ -85,7 +85,10 @@ export interface Node<Data = ElementData, CustomEvents extends Record<string, Cu
|
|||||||
style?: Styles | StyleFunc<GraphNode<Data, CustomEvents>>
|
style?: Styles | StyleFunc<GraphNode<Data, CustomEvents>>
|
||||||
/** Is node hidden */
|
/** Is node hidden */
|
||||||
hidden?: boolean
|
hidden?: boolean
|
||||||
/** overwrites current node type */
|
/**
|
||||||
|
* @deprecated will be removed in the next major release
|
||||||
|
* overwrites current node type
|
||||||
|
*/
|
||||||
template?: NodeComponent
|
template?: NodeComponent
|
||||||
/** Additional data that is passed to your custom components */
|
/** Additional data that is passed to your custom components */
|
||||||
data?: Data
|
data?: Data
|
||||||
|
|||||||
Reference in New Issue
Block a user