| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212 |
- <script setup lang="ts">
- import "@vue-flow/core/dist/style.css";
- import "@vue-flow/core/dist/theme-default.css";
- import Icon from "./icon.vue";
- import { nextTick, ref } from "vue";
- import { useLayout } from "./useLayout";
- import { useShuffle } from "./useShuffle";
- import ProcessNode from "./processNode.vue";
- import { useRunProcess } from "./useRunProcess";
- import AnimationEdge from "./animationEdge.vue";
- import { Background } from "@vue-flow/background";
- import { Panel, VueFlow, useVueFlow } from "@vue-flow/core";
- import { initialEdges, initialNodes } from "./initialElements";
- const nodes = ref(initialNodes);
- const edges = ref(initialEdges);
- const cancelOnError = ref(true);
- const shuffle = useShuffle();
- const { graph, layout, previousDirection } = useLayout();
- // @ts-expect-error
- const { run, stop, reset, isRunning } = useRunProcess({ graph, cancelOnError });
- const { fitView } = useVueFlow();
- async function shuffleGraph() {
- await stop();
- reset(nodes.value);
- edges.value = shuffle(nodes.value);
- nextTick(() => {
- layoutGraph(previousDirection.value);
- });
- }
- async function layoutGraph(direction) {
- await stop();
- reset(nodes.value);
- nodes.value = layout(nodes.value, edges.value, direction);
- nextTick(() => {
- fitView();
- run(nodes.value);
- });
- }
- </script>
- <template>
- <div class="layout-flow">
- <VueFlow
- :nodes="nodes"
- :edges="edges"
- @nodes-initialized="layoutGraph('LR')"
- >
- <template #node-process="props">
- <ProcessNode
- :data="props.data"
- :source-position="props.sourcePosition"
- :target-position="props.targetPosition"
- />
- </template>
- <template #edge-animation="edgeProps">
- <AnimationEdge
- :id="edgeProps.id"
- :source="edgeProps.source"
- :target="edgeProps.target"
- :source-x="edgeProps.sourceX"
- :source-y="edgeProps.sourceY"
- :targetX="edgeProps.targetX"
- :targetY="edgeProps.targetY"
- :source-position="edgeProps.sourcePosition"
- :target-position="edgeProps.targetPosition"
- />
- </template>
- <Background />
- <Panel class="process-panel" position="top-left">
- <div class="layout-panel">
- <button v-if="isRunning" class="stop-btn" title="stop" @click="stop">
- <Icon name="stop" />
- <span class="spinner" />
- </button>
- <button v-else title="start" @click="run(nodes)">
- <Icon name="play" />
- </button>
- <button title="set horizontal layout" @click="layoutGraph('LR')">
- <Icon name="horizontal" />
- </button>
- <button title="set vertical layout" @click="layoutGraph('TB')">
- <Icon name="vertical" />
- </button>
- <button title="shuffle graph" @click="shuffleGraph">
- <Icon name="shuffle" />
- </button>
- </div>
- <!-- <div class="checkbox-panel">
- <label>Cancel on error</label>
- <input v-model="cancelOnError" type="checkbox" />
- </div> -->
- </Panel>
- </VueFlow>
- </div>
- </template>
- <style scoped>
- @keyframes spin {
- 0% {
- transform: rotate(0deg);
- }
- 100% {
- transform: rotate(360deg);
- }
- }
- *,
- ::before,
- ::after {
- box-sizing: content-box;
- }
- .main-content {
- margin: 0 !important;
- }
- .layout-flow {
- width: 100%;
- height: 100%;
- }
- .process-panel,
- .layout-panel {
- display: flex;
- gap: 10px;
- }
- .process-panel {
- display: flex;
- flex-direction: column;
- padding: 10px;
- background-color: #2d3748;
- border-radius: 8px;
- box-shadow: 0 0 10px rgb(0 0 0 / 50%);
- }
- .process-panel button {
- display: flex;
- align-items: center;
- justify-content: center;
- width: 40px;
- height: 40px;
- font-size: 16px;
- color: white;
- cursor: pointer;
- background-color: #4a5568;
- border: none;
- border-radius: 8px;
- box-shadow: 0 0 10px rgb(0 0 0 / 50%);
- }
- /* .checkbox-panel {
- display: flex;
- align-items: center;
- gap: 10px;
- } */
- .process-panel button:hover,
- .layout-panel button:hover {
- background-color: #2563eb;
- transition: background-color 0.2s;
- }
- .process-panel label {
- font-size: 12px;
- color: white;
- }
- .stop-btn svg {
- display: none;
- }
- .stop-btn:hover svg {
- display: block;
- }
- .stop-btn:hover .spinner {
- display: none;
- }
- .spinner {
- width: 20px;
- height: 20px;
- border: 3px solid #f3f3f3;
- border-top: 3px solid #2563eb;
- border-radius: 50%;
- animation: spin 1s linear infinite;
- }
- </style>
|