Files
meadows/src/components/nodes/FlowNode.vue
Julien Calixte 69435b1315 feat(editor): animate the canvas in step with the simulation
A simulation store owns one run and one playhead, so the chart and the canvas
read off the same instant. While the panel is open, Stocks show a live value and
a fill gauge, Flows and Converters their current value; a play/pause + scrubber
drives the playhead (a wall-clock-paced clock in usePlayback), and a marker
tracks it on the chart.
2026-06-20 14:35:45 +02:00

53 lines
2.0 KiB
Vue

<script setup lang="ts">
/**
* Flow — a rate, drawn as the valve (an outlined bowtie/butterfly) sitting on
* the pipe between source and target. The pipe segments are projected edges
* (ADR-0003); this node is the valve and its name. Outlined (not filled) so it
* reads as a tap rather than two arrows. Handles sit on the valve so the pipe
* connects through it and Information Links can target/leave the rate.
*/
import { Handle, type NodeProps, Position } from "@vue-flow/core"
import { computed } from "vue"
import { useNodeLoopRing } from "@/composables/useLoopHighlight"
import { HANDLE_IN, HANDLE_OUT, type NodeData } from "@/model/projection"
import type { FlowNode } from "@/model/types"
import { useSimulationStore } from "@/store/simulation"
import { formatValue } from "./format"
import NodeLabel from "./NodeLabel.vue"
const props = defineProps<NodeProps<NodeData>>()
// The projection guarantees a flow-typed node here.
const flow = computed(() => props.data.node as FlowNode)
const loopRing = useNodeLoopRing(props.id)
const sim = useSimulationStore()
const value = computed(() => sim.valueAt(props.id))
</script>
<template>
<div class="flex flex-col items-center gap-1">
<div class="relative rounded-full" :class="loopRing">
<Handle :id="HANDLE_IN" type="target" :position="Position.Left" />
<svg
viewBox="0 0 24 24"
class="size-7 transition-colors"
:class="props.selected ? 'text-primary' : 'text-base-content/60'"
fill="none"
stroke="currentColor"
stroke-width="2"
stroke-linejoin="round"
>
<!-- Outlined bowtie valve: two hollow triangles meeting at the centre. -->
<path d="M3 5 L12 12 L3 19 Z" />
<path d="M21 5 L12 12 L21 19 Z" />
</svg>
<Handle :id="HANDLE_OUT" type="source" :position="Position.Right" />
</div>
<NodeLabel :node-id="props.id" :name="flow.name" />
<div v-if="value !== null" class="font-mono text-xs tabular-nums text-base-content/70">
{{ formatValue(value) }}
</div>
</div>
</template>