feat(docs): wait for edge animation to finish to load node

This commit is contained in:
braks
2024-02-08 20:07:50 +01:00
committed by Braks
parent c9f8f6f974
commit fafad1e721
3 changed files with 84 additions and 16 deletions
+48 -9
View File
@@ -1,6 +1,6 @@
<script setup> <script setup>
import { computed, nextTick, ref, toRef, watch } from 'vue' import { computed, nextTick, ref, toRef, watch } from 'vue'
import { BaseEdge, EdgeLabelRenderer, Position, getSmoothStepPath, useNodesData } from '@vue-flow/core' import { BaseEdge, EdgeLabelRenderer, Position, getSmoothStepPath, useNodesData, useVueFlow } from '@vue-flow/core'
import { TransitionPresets, executeTransition } from '@vueuse/core' import { TransitionPresets, executeTransition } from '@vueuse/core'
const props = defineProps({ const props = defineProps({
@@ -42,6 +42,8 @@ const props = defineProps({
}, },
}) })
const { findEdge } = useVueFlow()
const nodesData = useNodesData([props.target, props.source]) const nodesData = useNodesData([props.target, props.source])
const edgePoint = ref(0) const edgePoint = ref(0)
@@ -58,6 +60,8 @@ const sourceNodeData = toRef(() => nodesData.value[1])
const isFinished = toRef(() => sourceNodeData.value.isFinished) const isFinished = toRef(() => sourceNodeData.value.isFinished)
const isSkipped = toRef(() => targetNodeData.value.isSkipped)
const isAnimating = ref(false) const isAnimating = ref(false)
const edgeColor = toRef(() => { const edgeColor = toRef(() => {
@@ -73,7 +77,7 @@ const edgeColor = toRef(() => {
return '#fbbf24' return '#fbbf24'
} }
if (targetNodeData.value.isRunning) { if (targetNodeData.value.isRunning || isAnimating.value) {
return '#2563eb' return '#2563eb'
} }
@@ -82,6 +86,25 @@ const edgeColor = toRef(() => {
const path = computed(() => getSmoothStepPath(props)) const path = computed(() => getSmoothStepPath(props))
watch(isSkipped, (isSkipped) => {
if (isSkipped) {
edgePoint.value = 0
currentLength.value = 0
isAnimating.value = false
}
})
watch(isAnimating, (isAnimating) => {
const edge = findEdge(props.id)
if (edge) {
edge.data = {
...edge.data,
isAnimating,
}
}
})
watch(edgePoint, (point) => { watch(edgePoint, (point) => {
const pathEl = edgeRef.value?.pathEl const pathEl = edgeRef.value?.pathEl
@@ -131,6 +154,7 @@ async function runAnimation() {
await executeTransition(edgePoint, from, totalLength, { await executeTransition(edgePoint, from, totalLength, {
transition: TransitionPresets.easeInOutCubic, transition: TransitionPresets.easeInOutCubic,
duration: Math.max(1500, totalLength / 2),
}) })
isAnimating.value = false isAnimating.value = false
@@ -149,14 +173,29 @@ export default {
<EdgeLabelRenderer v-if="isAnimating"> <EdgeLabelRenderer v-if="isAnimating">
<div <div
:style="{ :style="{ transform: `translate(-50%, -50%) translate(${labelPosition.x}px,${labelPosition.y}px)` }"
position: 'absolute', class="nodrag nopan animated-edge-label"
transform: `translate(-50%, -50%) translate(${labelPosition.x}px,${labelPosition.y}px)`,
pointerEvents: 'all',
}"
class="nodrag nopan"
> >
📦 <span class="truck">
<span class="box">📦</span>
🚚
</span>
</div> </div>
</EdgeLabelRenderer> </EdgeLabelRenderer>
</template> </template>
<style>
.animated-edge-label {
position: absolute;
}
.truck {
position: relative;
display: inline-block;
}
.box {
position: absolute;
top: -10px;
}
</style>
+15 -6
View File
@@ -68,13 +68,15 @@ const processLabel = toRef(() => {
return '😎' return '😎'
} }
return '📥' return '🏠'
}) })
</script> </script>
<template> <template>
<div class="process-node" :style="{ backgroundColor: bgColor }"> <div class="process-node" :style="{ backgroundColor: bgColor }">
<Handle v-if="!isSender" type="target" :position="targetPosition" /> <Handle v-if="!isSender" type="target" :position="targetPosition">
<div>📥</div>
</Handle>
<Handle v-if="!isReceiver" type="source" :position="sourcePosition" /> <Handle v-if="!isReceiver" type="source" :position="sourcePosition" />
<div v-if="!isSender && data.isRunning" class="spinner" /> <div v-if="!isSender && data.isRunning" class="spinner" />
@@ -88,16 +90,23 @@ const processLabel = toRef(() => {
.process-node { .process-node {
padding: 10px; padding: 10px;
color: white; color: white;
border: 1px solid #4b5563;
border-radius: 99px; border-radius: 99px;
font-size: 12px; font-size: 14px;
width: 18px; width: 24px;
height: 18px; height: 24px;
display: flex; display: flex;
align-items: center; align-items: center;
justify-content: center; justify-content: center;
} }
.process-node .vue-flow__handle {
border: none;
height: unset;
width: unset;
background: transparent;
font-size: 12px;
}
.spinner { .spinner {
border: 3px solid #f3f3f3; border: 3px solid #f3f3f3;
border-top: 3px solid #2563eb; border-top: 3px solid #2563eb;
+21 -1
View File
@@ -10,7 +10,7 @@ import { useVueFlow } from '@vue-flow/core'
* When a node has multiple descendants, it will run them in parallel. * When a node has multiple descendants, it will run them in parallel.
*/ */
export function useRunProcess(dagreGraph) { export function useRunProcess(dagreGraph) {
const { updateNodeData } = useVueFlow() const { updateNodeData, getConnectedEdges } = useVueFlow()
const graph = toRef(() => toValue(dagreGraph)) const graph = toRef(() => toValue(dagreGraph))
@@ -23,6 +23,15 @@ export function useRunProcess(dagreGraph) {
return return
} }
const incomers = getConnectedEdges(node.id).filter((connection) => connection.target === node.id)
await Promise.all(incomers.map((incomer) => until(() => !incomer.data.isAnimating)))
if (!isRunning.value) {
// The process was stopped
return
}
executedNodes.add(node.id) executedNodes.add(node.id)
updateNodeData(node.id, { isRunning: true, isFinished: false, hasError: false, isCancelled: false }) updateNodeData(node.id, { isRunning: true, isFinished: false, hasError: false, isCancelled: false })
@@ -121,3 +130,14 @@ export function useRunProcess(dagreGraph) {
return { run, stop, reset, isRunning } return { run, stop, reset, isRunning }
} }
async function until(condition) {
return new Promise((resolve) => {
const interval = setInterval(() => {
if (condition()) {
clearInterval(interval)
resolve()
}
}, 100)
})
}