mirror of
https://github.com/n8n-io/n8n.git
synced 2025-03-05 20:50:17 -08:00
Some checks failed
Test Master / install-and-build (push) Has been cancelled
Test Master / Unit tests (18.x) (push) Has been cancelled
Test Master / Unit tests (20.x) (push) Has been cancelled
Test Master / Unit tests (22.4) (push) Has been cancelled
Test Master / Lint (push) Has been cancelled
Test Master / Notify Slack on failure (push) Has been cancelled
120 lines
2.8 KiB
Vue
120 lines
2.8 KiB
Vue
<script setup lang="ts">
|
|
import { computed } from 'vue';
|
|
import type { IBinaryData, IRunData } from 'n8n-workflow';
|
|
import BinaryDataDisplayEmbed from '@/components/BinaryDataDisplayEmbed.vue';
|
|
import { useWorkflowsStore } from '@/stores/workflows.store';
|
|
import { useNodeHelpers } from '@/composables/useNodeHelpers';
|
|
|
|
const props = defineProps<{
|
|
displayData: IBinaryData;
|
|
windowVisible: boolean;
|
|
}>();
|
|
|
|
const emit = defineEmits<{
|
|
close: [];
|
|
}>();
|
|
|
|
const nodeHelpers = useNodeHelpers();
|
|
const workflowsStore = useWorkflowsStore();
|
|
|
|
const workflowRunData = computed<IRunData | null>(() => {
|
|
const workflowExecution = workflowsStore.getWorkflowExecution;
|
|
if (workflowExecution === null) {
|
|
return null;
|
|
}
|
|
const executionData = workflowExecution.data;
|
|
return executionData ? executionData.resultData.runData : null;
|
|
});
|
|
|
|
const binaryData = computed<IBinaryData | null>(() => {
|
|
if (
|
|
typeof props.displayData.node !== 'string' ||
|
|
typeof props.displayData.key !== 'string' ||
|
|
typeof props.displayData.runIndex !== 'number' ||
|
|
typeof props.displayData.index !== 'number' ||
|
|
typeof props.displayData.outputIndex !== 'number'
|
|
) {
|
|
return null;
|
|
}
|
|
|
|
const binaryDataLocal = nodeHelpers.getBinaryData(
|
|
workflowRunData.value,
|
|
props.displayData.node,
|
|
props.displayData.runIndex,
|
|
props.displayData.outputIndex,
|
|
);
|
|
|
|
if (binaryDataLocal.length === 0) {
|
|
return null;
|
|
}
|
|
|
|
if (
|
|
props.displayData.index >= binaryDataLocal.length ||
|
|
binaryDataLocal[props.displayData.index][props.displayData.key] === undefined
|
|
) {
|
|
return null;
|
|
}
|
|
|
|
const binaryDataItem: IBinaryData =
|
|
binaryDataLocal[props.displayData.index][props.displayData.key];
|
|
|
|
return binaryDataItem;
|
|
});
|
|
|
|
function closeWindow() {
|
|
// Handle the close externally as the visible parameter is an external prop
|
|
// and is so not allowed to be changed here.
|
|
emit('close');
|
|
return false;
|
|
}
|
|
</script>
|
|
|
|
<template>
|
|
<div v-if="windowVisible" :class="['binary-data-window', binaryData?.fileType]">
|
|
<n8n-button
|
|
size="small"
|
|
class="binary-data-window-back"
|
|
:title="$locale.baseText('binaryDataDisplay.backToOverviewPage')"
|
|
icon="arrow-left"
|
|
:label="$locale.baseText('binaryDataDisplay.backToList')"
|
|
@click.stop="closeWindow"
|
|
/>
|
|
|
|
<div class="binary-data-window-wrapper">
|
|
<div v-if="!binaryData">
|
|
{{ $locale.baseText('binaryDataDisplay.noDataFoundToDisplay') }}
|
|
</div>
|
|
<BinaryDataDisplayEmbed v-else :binary-data="binaryData" />
|
|
</div>
|
|
</div>
|
|
</template>
|
|
|
|
<style lang="scss">
|
|
.binary-data-window {
|
|
position: absolute;
|
|
top: 50px;
|
|
left: 0;
|
|
z-index: 10;
|
|
width: 100%;
|
|
height: calc(100% - 50px);
|
|
background-color: var(--color-run-data-background);
|
|
overflow: hidden;
|
|
text-align: center;
|
|
|
|
&.json {
|
|
overflow: auto;
|
|
}
|
|
|
|
.binary-data-window-wrapper {
|
|
margin-top: 0.5em;
|
|
padding: 0 1em;
|
|
height: calc(100% - 50px);
|
|
|
|
.el-row,
|
|
.el-col {
|
|
height: 100%;
|
|
}
|
|
}
|
|
}
|
|
</style>
|