mirror of
https://github.com/n8n-io/n8n.git
synced 2025-03-05 20:50:17 -08:00
73 lines
1.4 KiB
Vue
73 lines
1.4 KiB
Vue
<script setup lang="ts">
|
|
import Canvas from '@/components/canvas/Canvas.vue';
|
|
import { toRef, useCssModule } from 'vue';
|
|
import type { Workflow } from 'n8n-workflow';
|
|
import type { IWorkflowDb } from '@/Interface';
|
|
import { useCanvasMapping } from '@/composables/useCanvasMapping';
|
|
|
|
const props = defineProps<{
|
|
id?: string;
|
|
workflow: IWorkflowDb;
|
|
workflowObject: Workflow;
|
|
}>();
|
|
|
|
const $style = useCssModule();
|
|
|
|
const workflow = toRef(props, 'workflow');
|
|
const workflowObject = toRef(props, 'workflowObject');
|
|
|
|
const { elements, connections } = useCanvasMapping({ workflow, workflowObject });
|
|
</script>
|
|
|
|
<template>
|
|
<div :class="$style.wrapper">
|
|
<div :class="$style.canvas">
|
|
<Canvas v-if="workflow" :elements="elements" :connections="connections" v-bind="$attrs" />
|
|
</div>
|
|
<slot />
|
|
</div>
|
|
</template>
|
|
|
|
<style lang="scss" module>
|
|
.wrapper {
|
|
display: block;
|
|
position: relative;
|
|
width: 100%;
|
|
height: 100%;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.canvas {
|
|
width: 100%;
|
|
height: 100%;
|
|
position: relative;
|
|
display: block;
|
|
}
|
|
|
|
.executionButtons {
|
|
position: absolute;
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
left: 50%;
|
|
transform: translateX(-50%);
|
|
bottom: var(--spacing-l);
|
|
width: auto;
|
|
|
|
@media (max-width: $breakpoint-2xs) {
|
|
bottom: 150px;
|
|
}
|
|
|
|
button {
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
margin-left: 0.625rem;
|
|
|
|
&:first-child {
|
|
margin: 0;
|
|
}
|
|
}
|
|
}
|
|
</style>
|