2019-06-23 03:35:23 -07:00
|
|
|
<template>
|
2022-04-11 06:12:13 -07:00
|
|
|
<div :class="$style.container">
|
2022-08-02 01:36:11 -07:00
|
|
|
<n8n-callout
|
2022-07-20 08:50:39 -07:00
|
|
|
v-if="canPinData && hasPinData && !editMode.enabled"
|
|
|
|
theme="secondary"
|
|
|
|
icon="thumbtack"
|
|
|
|
:class="$style['pinned-data-callout']"
|
|
|
|
>
|
|
|
|
{{ $locale.baseText('runData.pindata.thisDataIsPinned') }}
|
|
|
|
<span class="ml-4xs" v-if="!isReadOnly">
|
|
|
|
<n8n-link
|
|
|
|
theme="secondary"
|
|
|
|
size="small"
|
|
|
|
underline
|
|
|
|
bold
|
|
|
|
@click="onTogglePinData({ source: 'banner-link' })"
|
|
|
|
>
|
|
|
|
{{ $locale.baseText('runData.pindata.unpin') }}
|
|
|
|
</n8n-link>
|
|
|
|
</span>
|
|
|
|
<template #trailingContent>
|
|
|
|
<n8n-link
|
|
|
|
:to="dataPinningDocsUrl"
|
|
|
|
size="small"
|
|
|
|
theme="secondary"
|
|
|
|
bold
|
|
|
|
underline
|
|
|
|
@click="onClickDataPinningDocsLink"
|
|
|
|
>
|
|
|
|
{{ $locale.baseText('runData.pindata.learnMore') }}
|
|
|
|
</n8n-link>
|
|
|
|
</template>
|
2022-08-02 01:36:11 -07:00
|
|
|
</n8n-callout>
|
2022-07-20 08:50:39 -07:00
|
|
|
|
2019-06-23 03:35:23 -07:00
|
|
|
<BinaryDataDisplay :windowVisible="binaryDataDisplayVisible" :displayData="binaryDataDisplayData" @close="closeBinaryDataDisplay"/>
|
|
|
|
|
2022-04-11 06:12:13 -07:00
|
|
|
<div :class="$style.header">
|
2022-05-23 08:56:15 -07:00
|
|
|
<slot name="header"></slot>
|
2022-04-11 06:12:13 -07:00
|
|
|
|
2022-07-20 08:50:39 -07:00
|
|
|
<div v-show="!hasRunError" @click.stop :class="$style.displayModes">
|
2022-04-11 06:12:13 -07:00
|
|
|
<n8n-radio-buttons
|
2022-07-20 08:50:39 -07:00
|
|
|
v-show="hasNodeRun && ((jsonData && jsonData.length > 0) || (binaryData && binaryData.length > 0)) && !editMode.enabled"
|
2022-04-11 06:12:13 -07:00
|
|
|
:value="displayMode"
|
|
|
|
:options="buttons"
|
|
|
|
@input="onDisplayModeChange"
|
|
|
|
/>
|
2022-07-20 08:50:39 -07:00
|
|
|
<n8n-icon-button
|
|
|
|
v-if="canPinData && !isReadOnly"
|
|
|
|
v-show="!editMode.enabled"
|
|
|
|
:title="$locale.baseText('runData.editOutput')"
|
|
|
|
:circle="false"
|
|
|
|
:disabled="node.disabled"
|
|
|
|
class="ml-2xs"
|
|
|
|
icon="pencil-alt"
|
|
|
|
type="tertiary"
|
|
|
|
@click="enterEditMode({ origin: 'editIconButton' })"
|
|
|
|
/>
|
|
|
|
<n8n-tooltip
|
|
|
|
placement="bottom-end"
|
|
|
|
v-if="canPinData && (jsonData && jsonData.length > 0)"
|
|
|
|
v-show="!editMode.enabled"
|
|
|
|
:value="pinDataDiscoveryTooltipVisible"
|
|
|
|
:manual="isControlledPinDataTooltip"
|
|
|
|
>
|
|
|
|
<template #content v-if="!isControlledPinDataTooltip">
|
|
|
|
<div :class="$style['tooltip-container']">
|
|
|
|
<strong>{{ $locale.baseText('ndv.pinData.pin.title') }}</strong>
|
|
|
|
<n8n-text size="small" tag="p">
|
|
|
|
{{ $locale.baseText('ndv.pinData.pin.description') }}
|
|
|
|
|
|
|
|
<n8n-link :to="dataPinningDocsUrl" size="small">
|
|
|
|
{{ $locale.baseText('ndv.pinData.pin.link') }}
|
|
|
|
</n8n-link>
|
|
|
|
</n8n-text>
|
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
<template #content v-else>
|
|
|
|
<div :class="$style['tooltip-container']">
|
|
|
|
{{ $locale.baseText('node.discovery.pinData.ndv') }}
|
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
<n8n-icon-button
|
|
|
|
:class="`ml-2xs ${$style['pin-data-button']} ${hasPinData ? $style['pin-data-button-active'] : ''}`"
|
|
|
|
type="tertiary"
|
|
|
|
active
|
|
|
|
icon="thumbtack"
|
|
|
|
:disabled="editMode.enabled || (inputData.length === 0 && !hasPinData) || isReadOnly"
|
|
|
|
@click="onTogglePinData({ source: 'pin-icon-click' })"
|
|
|
|
/>
|
|
|
|
</n8n-tooltip>
|
|
|
|
|
|
|
|
<div :class="$style['edit-mode-actions']" v-show="editMode.enabled">
|
|
|
|
<n8n-button
|
|
|
|
type="tertiary"
|
|
|
|
:label="$locale.baseText('runData.editor.cancel')"
|
|
|
|
@click="onClickCancelEdit"
|
|
|
|
/>
|
|
|
|
<n8n-button
|
|
|
|
class="ml-2xs"
|
|
|
|
type="primary"
|
|
|
|
:label="$locale.baseText('runData.editor.save')"
|
|
|
|
@click="onClickSaveEdit"
|
|
|
|
/>
|
|
|
|
</div>
|
2019-06-23 03:35:23 -07:00
|
|
|
</div>
|
2022-04-11 06:12:13 -07:00
|
|
|
</div>
|
|
|
|
|
2022-07-20 08:50:39 -07:00
|
|
|
<div :class="$style.runSelector" v-if="maxRunIndex > 0" v-show="!editMode.enabled">
|
2022-05-23 08:56:15 -07:00
|
|
|
<n8n-select size="small" :value="runIndex" @input="onRunIndexChange" @click.stop>
|
2022-04-11 06:12:13 -07:00
|
|
|
<template slot="prepend">{{ $locale.baseText('ndv.output.run') }}</template>
|
|
|
|
<n8n-option v-for="option in (maxRunIndex + 1)" :label="getRunLabel(option)" :value="option - 1" :key="option"></n8n-option>
|
|
|
|
</n8n-select>
|
2022-05-23 08:56:15 -07:00
|
|
|
|
|
|
|
|
|
|
|
<n8n-tooltip placement="right" v-if="canLinkRuns" :content="$locale.baseText(linkedRuns ? 'runData.unlinking.hint': 'runData.linking.hint')">
|
2022-07-26 00:55:27 -07:00
|
|
|
<n8n-icon-button v-if="linkedRuns" icon="unlink" text type="tertiary" size="small" @click="unlinkRun" />
|
|
|
|
<n8n-icon-button v-else icon="link" text type="tertiary" size="small" @click="linkRun" />
|
2022-05-23 08:56:15 -07:00
|
|
|
</n8n-tooltip>
|
|
|
|
|
|
|
|
<slot name="run-info"></slot>
|
2022-04-11 06:12:13 -07:00
|
|
|
</div>
|
|
|
|
|
2022-07-20 07:27:35 -07:00
|
|
|
<div v-if="maxOutputIndex > 0 && branches.length > 1" :class="{[$style.tabs]: displayMode === 'table'}">
|
2022-05-23 08:56:15 -07:00
|
|
|
<n8n-tabs :value="currentOutputIndex" @input="onBranchChange" :options="branches" />
|
2022-04-11 06:12:13 -07:00
|
|
|
</div>
|
|
|
|
|
2022-07-20 08:50:39 -07:00
|
|
|
<div v-else-if="hasNodeRun && dataCount > 0 && maxRunIndex === 0" v-show="!editMode.enabled" :class="$style.itemsCount">
|
2022-04-11 06:12:13 -07:00
|
|
|
<n8n-text>
|
2022-05-23 08:56:15 -07:00
|
|
|
{{ dataCount }} {{ $locale.baseText('ndv.output.items', {adjustToNumber: dataCount}) }}
|
2022-04-11 06:12:13 -07:00
|
|
|
</n8n-text>
|
|
|
|
</div>
|
|
|
|
|
2022-07-20 08:50:39 -07:00
|
|
|
<div
|
|
|
|
:class="[$style['data-container'], copyDropdownOpen ? $style['copy-dropdown-open'] : '']"
|
|
|
|
ref="dataContainer"
|
|
|
|
>
|
|
|
|
<div v-if="hasNodeRun && !hasRunError && displayMode === 'json'" v-show="!editMode.enabled" :class="$style['actions-group']">
|
|
|
|
<el-dropdown
|
|
|
|
trigger="click"
|
|
|
|
@command="handleCopyClick"
|
|
|
|
@visible-change="copyDropdownOpen = $event"
|
|
|
|
>
|
2020-12-18 09:55:53 -08:00
|
|
|
<span class="el-dropdown-link">
|
2022-07-20 08:50:39 -07:00
|
|
|
<n8n-icon-button
|
|
|
|
:title="$locale.baseText('runData.copyToClipboard')"
|
|
|
|
icon="copy"
|
|
|
|
type="tertiary"
|
|
|
|
:circle="false"
|
|
|
|
/>
|
2020-12-18 09:55:53 -08:00
|
|
|
</span>
|
|
|
|
<el-dropdown-menu slot="dropdown">
|
2022-07-20 08:50:39 -07:00
|
|
|
<el-dropdown-item :command="{command: 'value'}">
|
|
|
|
{{ $locale.baseText('runData.copyValue') }}
|
|
|
|
</el-dropdown-item>
|
|
|
|
<el-dropdown-item :command="{command: 'itemPath'}" divided>
|
2021-12-15 04:16:53 -08:00
|
|
|
{{ $locale.baseText('runData.copyItemPath') }}
|
2021-11-10 10:41:40 -08:00
|
|
|
</el-dropdown-item>
|
|
|
|
<el-dropdown-item :command="{command: 'parameterPath'}">
|
2021-12-15 04:16:53 -08:00
|
|
|
{{ $locale.baseText('runData.copyParameterPath') }}
|
2021-11-10 10:41:40 -08:00
|
|
|
</el-dropdown-item>
|
2020-12-18 09:55:53 -08:00
|
|
|
</el-dropdown-menu>
|
|
|
|
</el-dropdown>
|
|
|
|
</div>
|
2022-04-11 06:12:13 -07:00
|
|
|
|
2022-05-23 08:56:15 -07:00
|
|
|
<div v-if="isExecuting" :class="$style.center">
|
|
|
|
<div :class="$style.spinner"><n8n-spinner type="ring" /></div>
|
|
|
|
<n8n-text>{{ executingMessage }}</n8n-text>
|
|
|
|
</div>
|
|
|
|
|
2022-07-20 08:50:39 -07:00
|
|
|
<div v-else-if="editMode.enabled" :class="$style['edit-mode']">
|
|
|
|
<div :class="$style['edit-mode-body']">
|
|
|
|
<code-editor
|
|
|
|
:value="editMode.value"
|
|
|
|
:options="{ scrollBeyondLastLine: false }"
|
|
|
|
type="json"
|
|
|
|
@input="$store.commit('ui/setOutputPanelEditModeValue', $event)"
|
|
|
|
/>
|
|
|
|
</div>
|
|
|
|
<div :class="$style['edit-mode-footer']">
|
|
|
|
<n8n-info-tip :bold="false" :class="$style['edit-mode-footer-infotip']">
|
|
|
|
{{ $locale.baseText('runData.editor.copyDataInfo') }}
|
2022-08-04 05:57:19 -07:00
|
|
|
<n8n-link :to="dataEditingDocsUrl" size="small">
|
2022-07-20 08:50:39 -07:00
|
|
|
{{ $locale.baseText('generic.learnMore') }}
|
|
|
|
</n8n-link>
|
|
|
|
</n8n-info-tip>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
2022-05-23 08:56:15 -07:00
|
|
|
<div v-else-if="!hasNodeRun" :class="$style.center">
|
|
|
|
<slot name="node-not-run"></slot>
|
2022-04-11 06:12:13 -07:00
|
|
|
</div>
|
2019-10-02 06:30:51 -07:00
|
|
|
|
2022-07-20 08:50:39 -07:00
|
|
|
<div v-else-if="paneType === 'input' && node.disabled" :class="$style.center">
|
|
|
|
<n8n-text>
|
|
|
|
{{ $locale.baseText('ndv.input.disabled', { interpolate: { nodeName: node.name } }) }}
|
|
|
|
<n8n-link @click="enableNode">
|
|
|
|
{{ $locale.baseText('ndv.input.disabled.cta') }}
|
|
|
|
</n8n-link>
|
|
|
|
</n8n-text>
|
|
|
|
</div>
|
|
|
|
|
2022-09-19 03:26:02 -07:00
|
|
|
<div v-else-if="hasNodeRun && hasRunError" :class="$style.stretchVertically">
|
|
|
|
<n8n-text v-if="isPaneTypeInput" :class="$style.center" size="large" tag="p" bold>
|
|
|
|
{{ $locale.baseText('nodeErrorView.inputPanel.previousNodeError.title', { interpolate: { nodeName: node.name } }) }}
|
|
|
|
<n8n-link @click="goToErroredNode">
|
|
|
|
{{ $locale.baseText('nodeErrorView.inputPanel.previousNodeError.text') }}
|
|
|
|
</n8n-link>
|
|
|
|
</n8n-text>
|
|
|
|
<NodeErrorView v-else :error="workflowRunData[node.name][runIndex].error" :class="$style.errorDisplay" />
|
2022-04-11 06:12:13 -07:00
|
|
|
</div>
|
|
|
|
|
|
|
|
<div v-else-if="hasNodeRun && jsonData && jsonData.length === 0 && branches.length > 1" :class="$style.center">
|
|
|
|
<n8n-text>
|
2022-05-23 08:56:15 -07:00
|
|
|
{{ noDataInBranchMessage }}
|
2022-04-11 06:12:13 -07:00
|
|
|
</n8n-text>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div v-else-if="hasNodeRun && jsonData && jsonData.length === 0" :class="$style.center">
|
2022-05-23 08:56:15 -07:00
|
|
|
<slot name="no-output-data"></slot>
|
2022-04-11 06:12:13 -07:00
|
|
|
</div>
|
|
|
|
|
|
|
|
<div v-else-if="hasNodeRun && !showData" :class="$style.center">
|
2022-05-23 08:56:15 -07:00
|
|
|
<n8n-text :bold="true" color="text-dark" size="large">{{ tooMuchDataTitle }}</n8n-text>
|
2022-04-11 06:12:13 -07:00
|
|
|
<n8n-text align="center" tag="div"><span v-html="$locale.baseText('ndv.output.tooMuchData.message', { interpolate: {size: dataSizeInMB }})"></span></n8n-text>
|
|
|
|
|
|
|
|
<n8n-button
|
2022-07-20 08:50:39 -07:00
|
|
|
outline
|
2022-04-11 06:12:13 -07:00
|
|
|
:label="$locale.baseText('ndv.output.tooMuchData.showDataAnyway')"
|
2022-05-23 08:56:15 -07:00
|
|
|
@click="showTooMuchData"
|
2022-04-11 06:12:13 -07:00
|
|
|
/>
|
|
|
|
</div>
|
|
|
|
|
2022-08-24 05:47:42 -07:00
|
|
|
<div v-else-if="hasNodeRun && displayMode === 'table' && binaryData.length > 0 && jsonData.length === 1 && Object.keys(jsonData[0] || {}).length === 0" :class="$style.center">
|
2022-05-23 08:56:15 -07:00
|
|
|
<n8n-text>
|
|
|
|
{{ $locale.baseText('runData.switchToBinary.info') }}
|
|
|
|
<a @click="switchToBinary">
|
|
|
|
{{ $locale.baseText('runData.switchToBinary.binary') }}
|
|
|
|
</a>
|
|
|
|
</n8n-text>
|
|
|
|
</div>
|
|
|
|
|
2022-09-21 01:20:29 -07:00
|
|
|
<div v-else-if="hasNodeRun && displayMode === 'table'" class="ph-no-capture" :class="$style.dataDisplay">
|
2022-08-24 05:47:42 -07:00
|
|
|
<RunDataTable :node="node" :inputData="inputData" :mappingEnabled="mappingEnabled" :distanceFromActive="distanceFromActive" :showMappingHint="showMappingHint" :runIndex="runIndex" :totalRuns="maxRunIndex" @mounted="$emit('tableMounted', $event)" />
|
2022-04-11 06:12:13 -07:00
|
|
|
</div>
|
|
|
|
|
2022-09-21 01:20:29 -07:00
|
|
|
<div v-else-if="hasNodeRun && displayMode === 'json'" class="ph-no-capture" :class="$style.jsonDisplay">
|
2022-04-11 06:12:13 -07:00
|
|
|
<vue-json-pretty
|
|
|
|
:data="jsonData"
|
|
|
|
:deep="10"
|
2022-07-20 08:50:39 -07:00
|
|
|
v-model="selectedOutput.path"
|
2022-04-11 06:12:13 -07:00
|
|
|
:showLine="true"
|
|
|
|
:showLength="true"
|
|
|
|
selectableType="single"
|
|
|
|
path=""
|
|
|
|
:highlightSelectedNode="true"
|
|
|
|
:selectOnClickNode="true"
|
|
|
|
@click="dataItemClicked"
|
|
|
|
class="json-data"
|
|
|
|
/>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div v-else-if="displayMode === 'binary' && binaryData.length === 0" :class="$style.center">
|
|
|
|
<n8n-text align="center" tag="div">{{ $locale.baseText('runData.noBinaryDataFound') }}</n8n-text>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div v-else-if="displayMode === 'binary'" :class="$style.dataDisplay">
|
|
|
|
<div v-for="(binaryDataEntry, index) in binaryData" :key="index">
|
|
|
|
<div :class="$style.binaryIndex" v-if="binaryData.length > 1">
|
|
|
|
<div>
|
|
|
|
{{index + 1}}
|
2019-06-23 03:35:23 -07:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
2022-04-11 06:12:13 -07:00
|
|
|
<div :class="$style.binaryRow">
|
|
|
|
<div :class="$style.binaryCell" v-for="(binaryData, key) in binaryDataEntry" :key="index + '_' + key">
|
|
|
|
<div>
|
|
|
|
<div :class="$style.binaryHeader">
|
|
|
|
{{key}}
|
|
|
|
</div>
|
|
|
|
<div v-if="binaryData.fileName">
|
|
|
|
<div><n8n-text size="small" :bold="true">{{ $locale.baseText('runData.fileName') }}: </n8n-text></div>
|
|
|
|
<div :class="$style.binaryValue">{{binaryData.fileName}}</div>
|
|
|
|
</div>
|
|
|
|
<div v-if="binaryData.directory">
|
|
|
|
<div><n8n-text size="small" :bold="true">{{ $locale.baseText('runData.directory') }}: </n8n-text></div>
|
|
|
|
<div :class="$style.binaryValue">{{binaryData.directory}}</div>
|
|
|
|
</div>
|
|
|
|
<div v-if="binaryData.fileExtension">
|
|
|
|
<div><n8n-text size="small" :bold="true">{{ $locale.baseText('runData.fileExtension') }}:</n8n-text></div>
|
|
|
|
<div :class="$style.binaryValue">{{binaryData.fileExtension}}</div>
|
|
|
|
</div>
|
|
|
|
<div v-if="binaryData.mimeType">
|
|
|
|
<div><n8n-text size="small" :bold="true">{{ $locale.baseText('runData.mimeType') }}: </n8n-text></div>
|
|
|
|
<div :class="$style.binaryValue">{{binaryData.mimeType}}</div>
|
2019-06-23 03:35:23 -07:00
|
|
|
</div>
|
|
|
|
|
2022-04-11 06:12:13 -07:00
|
|
|
<div :class="$style.binaryButtonContainer">
|
|
|
|
<n8n-button size="small" :label="$locale.baseText('runData.showBinaryData')" class="binary-data-show-data-button" @click="displayBinaryData(index, key)" />
|
2022-07-20 08:50:39 -07:00
|
|
|
<n8n-button v-if="isDownloadable(index, key)" size="small" type="secondary" :label="$locale.baseText('runData.downloadBinaryData')" class="binary-data-show-data-button" @click="downloadBinaryData(index, key)" />
|
2019-06-23 03:35:23 -07:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
2022-07-20 08:50:39 -07:00
|
|
|
<div :class="$style.pagination" v-if="hasNodeRun && !hasRunError && dataCount > pageSize" v-show="!editMode.enabled">
|
2022-04-11 06:12:13 -07:00
|
|
|
<el-pagination
|
|
|
|
background
|
|
|
|
:hide-on-single-page="true"
|
|
|
|
:current-page.sync="currentPage"
|
|
|
|
:pager-count="5"
|
|
|
|
:page-size="pageSize"
|
|
|
|
layout="prev, pager, next"
|
2022-05-23 08:56:15 -07:00
|
|
|
@current-change="onCurrentPageChange"
|
2022-04-11 06:12:13 -07:00
|
|
|
:total="dataCount">
|
|
|
|
</el-pagination>
|
|
|
|
|
|
|
|
<div :class="$style.pageSizeSelector">
|
|
|
|
<n8n-select size="mini" :value="pageSize" @input="onPageSizeChange">
|
|
|
|
<template slot="prepend">{{ $locale.baseText('ndv.output.pageSize') }}</template>
|
|
|
|
<n8n-option
|
|
|
|
v-for="size in pageSizes"
|
|
|
|
:key="size"
|
|
|
|
:label="size"
|
|
|
|
:value="size">
|
|
|
|
</n8n-option>
|
|
|
|
<n8n-option
|
|
|
|
:label="$locale.baseText('ndv.output.all')"
|
|
|
|
:value="dataCount"
|
|
|
|
>
|
|
|
|
</n8n-option>
|
|
|
|
</n8n-select>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
2019-06-23 03:35:23 -07:00
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script lang="ts">
|
2020-12-18 09:55:53 -08:00
|
|
|
//@ts-ignore
|
|
|
|
import VueJsonPretty from 'vue-json-pretty';
|
2019-06-23 03:35:23 -07:00
|
|
|
import {
|
2022-03-28 03:59:53 -07:00
|
|
|
IBinaryData,
|
2019-06-23 03:35:23 -07:00
|
|
|
IBinaryKeyData,
|
|
|
|
IDataObject,
|
|
|
|
INodeExecutionData,
|
2021-11-19 01:17:13 -08:00
|
|
|
INodeTypeDescription,
|
2019-06-23 03:35:23 -07:00
|
|
|
IRunData,
|
|
|
|
IRunExecutionData,
|
|
|
|
} from 'n8n-workflow';
|
|
|
|
|
|
|
|
import {
|
|
|
|
IBinaryDisplayData,
|
|
|
|
IExecutionResponse,
|
|
|
|
INodeUi,
|
2022-05-23 08:56:15 -07:00
|
|
|
IRunDataDisplayMode,
|
2022-04-11 06:12:13 -07:00
|
|
|
ITab,
|
2019-06-23 03:35:23 -07:00
|
|
|
} from '@/Interface';
|
|
|
|
|
2020-05-23 15:53:06 -07:00
|
|
|
import {
|
2022-07-20 08:50:39 -07:00
|
|
|
DATA_PINNING_DOCS_URL,
|
2022-08-04 05:57:19 -07:00
|
|
|
DATA_EDITING_DOCS_URL,
|
2022-07-20 08:50:39 -07:00
|
|
|
LOCAL_STORAGE_PIN_DATA_DISCOVERY_NDV_FLAG,
|
|
|
|
LOCAL_STORAGE_PIN_DATA_DISCOVERY_CANVAS_FLAG,
|
2020-05-23 15:53:06 -07:00
|
|
|
MAX_DISPLAY_DATA_SIZE,
|
|
|
|
MAX_DISPLAY_ITEMS_AUTO_ALL,
|
2022-07-20 08:50:39 -07:00
|
|
|
TEST_PIN_DATA,
|
2020-05-23 15:53:06 -07:00
|
|
|
} from '@/constants';
|
|
|
|
|
2019-06-23 03:35:23 -07:00
|
|
|
import BinaryDataDisplay from '@/components/BinaryDataDisplay.vue';
|
2022-04-11 06:12:13 -07:00
|
|
|
import WarningTooltip from '@/components/WarningTooltip.vue';
|
2021-11-10 10:41:40 -08:00
|
|
|
import NodeErrorView from '@/components/Error/NodeErrorView.vue';
|
2019-06-23 03:35:23 -07:00
|
|
|
|
2020-12-18 09:55:53 -08:00
|
|
|
import { copyPaste } from '@/components/mixins/copyPaste';
|
2021-05-05 17:46:33 -07:00
|
|
|
import { externalHooks } from "@/components/mixins/externalHooks";
|
2019-06-23 03:35:23 -07:00
|
|
|
import { genericHelpers } from '@/components/mixins/genericHelpers';
|
|
|
|
import { nodeHelpers } from '@/components/mixins/nodeHelpers';
|
2022-07-20 08:50:39 -07:00
|
|
|
import { pinData } from '@/components/mixins/pinData';
|
2019-06-23 03:35:23 -07:00
|
|
|
|
|
|
|
import mixins from 'vue-typed-mixins';
|
|
|
|
|
2022-03-28 03:59:53 -07:00
|
|
|
import { saveAs } from 'file-saver';
|
2022-07-20 08:50:39 -07:00
|
|
|
import { CodeEditor } from "@/components/forms";
|
|
|
|
import { dataPinningEventBus } from '../event-bus/data-pinning-event-bus';
|
|
|
|
import { stringSizeInBytes } from './helpers';
|
2022-07-20 04:32:51 -07:00
|
|
|
import RunDataTable from './RunDataTable.vue';
|
2022-08-22 08:46:22 -07:00
|
|
|
import { isJsonKeyObject } from '@/utils';
|
2022-03-28 03:59:53 -07:00
|
|
|
|
2020-12-18 09:55:53 -08:00
|
|
|
// A path that does not exist so that nothing is selected by default
|
|
|
|
const deselectedPlaceholder = '_!^&*';
|
|
|
|
|
2022-07-20 08:50:39 -07:00
|
|
|
export type EnterEditModeArgs = {
|
|
|
|
origin: 'editIconButton' | 'insertTestDataLink',
|
|
|
|
};
|
|
|
|
|
2019-06-23 03:35:23 -07:00
|
|
|
export default mixins(
|
2020-12-18 09:55:53 -08:00
|
|
|
copyPaste,
|
2021-05-05 17:46:33 -07:00
|
|
|
externalHooks,
|
2019-06-23 03:35:23 -07:00
|
|
|
genericHelpers,
|
|
|
|
nodeHelpers,
|
2022-07-20 08:50:39 -07:00
|
|
|
pinData,
|
2019-06-23 03:35:23 -07:00
|
|
|
)
|
|
|
|
.extend({
|
|
|
|
name: 'RunData',
|
|
|
|
components: {
|
|
|
|
BinaryDataDisplay,
|
2021-04-16 09:33:36 -07:00
|
|
|
NodeErrorView,
|
2020-12-18 09:55:53 -08:00
|
|
|
VueJsonPretty,
|
2022-04-11 06:12:13 -07:00
|
|
|
WarningTooltip,
|
2022-07-20 08:50:39 -07:00
|
|
|
CodeEditor,
|
2022-07-20 04:32:51 -07:00
|
|
|
RunDataTable,
|
2019-06-23 03:35:23 -07:00
|
|
|
},
|
2022-05-23 08:56:15 -07:00
|
|
|
props: {
|
|
|
|
nodeUi: {
|
|
|
|
}, // INodeUi | null
|
|
|
|
runIndex: {
|
|
|
|
type: Number,
|
|
|
|
},
|
|
|
|
linkedRuns: {
|
|
|
|
type: Boolean,
|
|
|
|
},
|
|
|
|
canLinkRuns: {
|
|
|
|
type: Boolean,
|
|
|
|
},
|
|
|
|
tooMuchDataTitle: {
|
|
|
|
type: String,
|
|
|
|
},
|
|
|
|
noDataInBranchMessage: {
|
|
|
|
type: String,
|
|
|
|
},
|
|
|
|
isExecuting: {
|
|
|
|
type: Boolean,
|
|
|
|
},
|
|
|
|
executingMessage: {
|
|
|
|
type: String,
|
|
|
|
},
|
|
|
|
sessionId: {
|
|
|
|
type: String,
|
|
|
|
},
|
|
|
|
paneType: {
|
|
|
|
type: String,
|
|
|
|
},
|
|
|
|
overrideOutputs: {
|
|
|
|
type: Array,
|
|
|
|
},
|
2022-07-20 04:32:51 -07:00
|
|
|
mappingEnabled: {
|
|
|
|
type: Boolean,
|
|
|
|
},
|
|
|
|
distanceFromActive: {
|
|
|
|
type: Number,
|
|
|
|
},
|
|
|
|
showMappingHint: {
|
|
|
|
type: Boolean,
|
|
|
|
},
|
2022-05-23 08:56:15 -07:00
|
|
|
},
|
2019-06-23 03:35:23 -07:00
|
|
|
data () {
|
|
|
|
return {
|
|
|
|
binaryDataPreviewActive: false,
|
2019-10-02 06:30:51 -07:00
|
|
|
dataSize: 0,
|
2020-12-18 09:55:53 -08:00
|
|
|
deselectedPlaceholder,
|
2022-07-20 08:50:39 -07:00
|
|
|
selectedOutput: {
|
2020-12-18 09:55:53 -08:00
|
|
|
value: '' as object | number | string,
|
|
|
|
path: deselectedPlaceholder,
|
|
|
|
},
|
2019-10-02 06:30:51 -07:00
|
|
|
showData: false,
|
2019-06-23 03:35:23 -07:00
|
|
|
outputIndex: 0,
|
|
|
|
binaryDataDisplayVisible: false,
|
|
|
|
binaryDataDisplayData: null as IBinaryDisplayData | null,
|
2020-05-23 15:53:06 -07:00
|
|
|
|
|
|
|
MAX_DISPLAY_DATA_SIZE,
|
|
|
|
MAX_DISPLAY_ITEMS_AUTO_ALL,
|
2022-04-11 06:12:13 -07:00
|
|
|
currentPage: 1,
|
|
|
|
pageSize: 10,
|
|
|
|
pageSizes: [10, 25, 50, 100],
|
2022-07-20 08:50:39 -07:00
|
|
|
copyDropdownOpen: false,
|
|
|
|
eventBus: dataPinningEventBus,
|
|
|
|
|
|
|
|
pinDataDiscoveryTooltipVisible: false,
|
|
|
|
isControlledPinDataTooltip: false,
|
2019-06-23 03:35:23 -07:00
|
|
|
};
|
|
|
|
},
|
2021-09-15 01:11:59 -07:00
|
|
|
mounted() {
|
|
|
|
this.init();
|
2022-07-20 08:50:39 -07:00
|
|
|
|
2022-09-19 03:26:02 -07:00
|
|
|
if (!this.isPaneTypeInput) {
|
2022-07-20 08:50:39 -07:00
|
|
|
this.eventBus.$on('data-pinning-error', this.onDataPinningError);
|
|
|
|
this.eventBus.$on('data-unpinning', this.onDataUnpinning);
|
|
|
|
|
|
|
|
const hasSeenPinDataTooltip = localStorage.getItem(LOCAL_STORAGE_PIN_DATA_DISCOVERY_NDV_FLAG);
|
|
|
|
if (!hasSeenPinDataTooltip) {
|
|
|
|
this.showPinDataDiscoveryTooltip(this.jsonData);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
},
|
|
|
|
destroyed() {
|
|
|
|
this.hidePinDataDiscoveryTooltip();
|
|
|
|
this.eventBus.$off('data-pinning-error', this.onDataPinningError);
|
|
|
|
this.eventBus.$off('data-unpinning', this.onDataUnpinning);
|
2021-09-15 01:11:59 -07:00
|
|
|
},
|
2019-06-23 03:35:23 -07:00
|
|
|
computed: {
|
2022-05-23 08:56:15 -07:00
|
|
|
activeNode(): INodeUi {
|
|
|
|
return this.$store.getters.activeNode;
|
|
|
|
},
|
2022-07-20 08:50:39 -07:00
|
|
|
dataPinningDocsUrl(): string {
|
|
|
|
return DATA_PINNING_DOCS_URL;
|
|
|
|
},
|
2022-08-04 05:57:19 -07:00
|
|
|
dataEditingDocsUrl(): string{
|
|
|
|
return DATA_EDITING_DOCS_URL;
|
|
|
|
},
|
2022-05-23 08:56:15 -07:00
|
|
|
displayMode(): IRunDataDisplayMode {
|
|
|
|
return this.$store.getters['ui/getPanelDisplayMode'](this.paneType);
|
|
|
|
},
|
|
|
|
node(): INodeUi | null {
|
|
|
|
return (this.nodeUi as INodeUi | null) || null;
|
|
|
|
},
|
2022-04-11 06:12:13 -07:00
|
|
|
nodeType (): INodeTypeDescription | null {
|
|
|
|
if (this.node) {
|
2022-08-01 13:43:50 -07:00
|
|
|
return this.$store.getters['nodeTypes/getNodeType'](this.node.type, this.node.typeVersion);
|
2022-04-11 06:12:13 -07:00
|
|
|
}
|
|
|
|
return null;
|
|
|
|
},
|
2022-07-20 08:50:39 -07:00
|
|
|
isTriggerNode (): boolean {
|
|
|
|
return !!(this.nodeType && this.nodeType.group.includes('trigger'));
|
|
|
|
},
|
|
|
|
canPinData (): boolean {
|
2022-09-19 03:26:02 -07:00
|
|
|
return !this.isPaneTypeInput &&
|
2022-07-20 08:50:39 -07:00
|
|
|
this.isPinDataNodeType &&
|
|
|
|
!(this.binaryData && this.binaryData.length > 0);
|
|
|
|
},
|
2022-04-11 06:12:13 -07:00
|
|
|
buttons(): Array<{label: string, value: string}> {
|
|
|
|
const defaults = [
|
|
|
|
{ label: this.$locale.baseText('runData.table'), value: 'table'},
|
|
|
|
{ label: this.$locale.baseText('runData.json'), value: 'json'},
|
|
|
|
];
|
|
|
|
if (this.binaryData.length) {
|
|
|
|
return [ ...defaults,
|
|
|
|
{ label: this.$locale.baseText('runData.binary'), value: 'binary'},
|
|
|
|
];
|
|
|
|
}
|
|
|
|
|
|
|
|
return defaults;
|
|
|
|
},
|
2021-08-29 04:36:17 -07:00
|
|
|
hasNodeRun(): boolean {
|
2022-07-20 08:50:39 -07:00
|
|
|
return Boolean(!this.isExecuting && this.node && (this.workflowRunData && this.workflowRunData.hasOwnProperty(this.node.name) || this.hasPinData));
|
2021-08-29 04:36:17 -07:00
|
|
|
},
|
|
|
|
hasRunError(): boolean {
|
|
|
|
return Boolean(this.node && this.workflowRunData && this.workflowRunData[this.node.name] && this.workflowRunData[this.node.name][this.runIndex] && this.workflowRunData[this.node.name][this.runIndex].error);
|
|
|
|
},
|
2019-06-23 03:35:23 -07:00
|
|
|
workflowExecution (): IExecutionResponse | null {
|
|
|
|
return this.$store.getters.getWorkflowExecution;
|
|
|
|
},
|
|
|
|
workflowRunData (): IRunData | null {
|
|
|
|
if (this.workflowExecution === null) {
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
const executionData: IRunExecutionData = this.workflowExecution.data;
|
2022-04-11 06:12:13 -07:00
|
|
|
if (executionData && executionData.resultData) {
|
|
|
|
return executionData.resultData.runData;
|
2020-07-10 01:12:30 -07:00
|
|
|
}
|
2022-04-11 06:12:13 -07:00
|
|
|
return null;
|
2020-05-23 15:53:06 -07:00
|
|
|
},
|
2022-04-11 06:12:13 -07:00
|
|
|
dataCount (): number {
|
2022-05-23 08:56:15 -07:00
|
|
|
return this.getDataCount(this.runIndex, this.currentOutputIndex);
|
2022-04-11 06:12:13 -07:00
|
|
|
},
|
|
|
|
dataSizeInMB(): string {
|
|
|
|
return (this.dataSize / 1024 / 1000).toLocaleString();
|
2019-06-23 03:35:23 -07:00
|
|
|
},
|
|
|
|
maxOutputIndex (): number {
|
|
|
|
if (this.node === null) {
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
const runData: IRunData | null = this.workflowRunData;
|
|
|
|
|
|
|
|
if (runData === null || !runData.hasOwnProperty(this.node.name)) {
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (runData[this.node.name].length < this.runIndex) {
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2022-05-23 08:56:15 -07:00
|
|
|
if (runData[this.node.name][this.runIndex]) {
|
|
|
|
const taskData = runData[this.node.name][this.runIndex].data;
|
|
|
|
if (taskData && taskData.main) {
|
|
|
|
return taskData.main.length - 1;
|
|
|
|
}
|
2019-06-23 03:35:23 -07:00
|
|
|
}
|
|
|
|
|
2022-05-23 08:56:15 -07:00
|
|
|
return 0;
|
2019-06-23 03:35:23 -07:00
|
|
|
},
|
|
|
|
maxRunIndex (): number {
|
|
|
|
if (this.node === null) {
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
const runData: IRunData | null = this.workflowRunData;
|
|
|
|
|
|
|
|
if (runData === null || !runData.hasOwnProperty(this.node.name)) {
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (runData[this.node.name].length) {
|
|
|
|
return runData[this.node.name].length - 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
},
|
2022-07-20 08:50:39 -07:00
|
|
|
rawInputData (): INodeExecutionData[] {
|
|
|
|
let inputData: INodeExecutionData[] = [];
|
|
|
|
|
|
|
|
if (this.node) {
|
|
|
|
inputData = this.getNodeInputData(this.node, this.runIndex, this.currentOutputIndex);
|
|
|
|
}
|
|
|
|
|
2019-12-23 12:54:27 -08:00
|
|
|
if (inputData.length === 0 || !Array.isArray(inputData)) {
|
2019-06-23 03:35:23 -07:00
|
|
|
return [];
|
|
|
|
}
|
|
|
|
|
2022-07-20 08:50:39 -07:00
|
|
|
return inputData;
|
|
|
|
},
|
|
|
|
inputData (): INodeExecutionData[] {
|
|
|
|
let inputData = this.rawInputData;
|
|
|
|
|
|
|
|
if (this.node && this.pinData) {
|
2022-08-23 08:29:09 -07:00
|
|
|
inputData = Array.isArray(this.pinData)
|
|
|
|
? this.pinData.map((value) => ({
|
|
|
|
json: value,
|
|
|
|
}))
|
|
|
|
: [{
|
|
|
|
json: this.pinData,
|
|
|
|
}];
|
2022-07-20 08:50:39 -07:00
|
|
|
}
|
|
|
|
|
2022-04-11 06:12:13 -07:00
|
|
|
const offset = this.pageSize * (this.currentPage - 1);
|
|
|
|
inputData = inputData.slice(offset, offset + this.pageSize);
|
2020-05-23 15:53:06 -07:00
|
|
|
|
2022-04-11 06:12:13 -07:00
|
|
|
return inputData;
|
|
|
|
},
|
|
|
|
jsonData (): IDataObject[] {
|
|
|
|
return this.convertToJson(this.inputData);
|
2019-06-23 03:35:23 -07:00
|
|
|
},
|
|
|
|
binaryData (): IBinaryKeyData[] {
|
2022-05-23 08:56:15 -07:00
|
|
|
if (!this.node) {
|
2019-06-23 03:35:23 -07:00
|
|
|
return [];
|
|
|
|
}
|
|
|
|
|
2022-06-20 12:39:24 -07:00
|
|
|
const binaryData = this.getBinaryData(this.workflowRunData, this.node.name, this.runIndex, this.currentOutputIndex);
|
|
|
|
return binaryData.filter((data) => Boolean(data && Object.keys(data).length));
|
2022-05-23 08:56:15 -07:00
|
|
|
},
|
|
|
|
currentOutputIndex(): number {
|
|
|
|
if (this.overrideOutputs && this.overrideOutputs.length && !this.overrideOutputs.includes(this.outputIndex)) {
|
|
|
|
return this.overrideOutputs[0] as number;
|
|
|
|
}
|
|
|
|
|
|
|
|
return this.outputIndex;
|
2019-06-23 03:35:23 -07:00
|
|
|
},
|
2022-04-11 06:12:13 -07:00
|
|
|
branches (): ITab[] {
|
|
|
|
function capitalize(name: string) {
|
|
|
|
return name.charAt(0).toLocaleUpperCase() + name.slice(1);
|
|
|
|
}
|
|
|
|
const branches: ITab[] = [];
|
|
|
|
for (let i = 0; i <= this.maxOutputIndex; i++) {
|
2022-05-23 08:56:15 -07:00
|
|
|
if (this.overrideOutputs && !this.overrideOutputs.includes(i)) {
|
|
|
|
continue;
|
|
|
|
}
|
2022-04-11 06:12:13 -07:00
|
|
|
const itemsCount = this.getDataCount(this.runIndex, i);
|
2022-05-23 08:56:15 -07:00
|
|
|
const items = this.$locale.baseText('ndv.output.items', {adjustToNumber: itemsCount});
|
2022-04-11 06:12:13 -07:00
|
|
|
let outputName = this.getOutputName(i);
|
|
|
|
if (`${outputName}` === `${i}`) {
|
|
|
|
outputName = `${this.$locale.baseText('ndv.output')} ${outputName}`;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
outputName = capitalize(`${this.getOutputName(i)} ${this.$locale.baseText('ndv.output.branch')}`);
|
|
|
|
}
|
|
|
|
branches.push({
|
|
|
|
label: itemsCount ? `${outputName} (${itemsCount} ${items})` : outputName,
|
|
|
|
value: i,
|
|
|
|
});
|
|
|
|
}
|
|
|
|
return branches;
|
|
|
|
},
|
2022-07-20 08:50:39 -07:00
|
|
|
editMode(): { enabled: boolean; value: string; } {
|
2022-09-19 03:26:02 -07:00
|
|
|
return this.isPaneTypeInput
|
|
|
|
? { enabled: false, value: '' }
|
|
|
|
: this.$store.getters['ui/outputPanelEditMode'];
|
|
|
|
},
|
|
|
|
isPaneTypeInput(): boolean {
|
|
|
|
return this.paneType === 'input';
|
2022-07-20 08:50:39 -07:00
|
|
|
},
|
2019-06-23 03:35:23 -07:00
|
|
|
},
|
|
|
|
methods: {
|
2022-07-20 08:50:39 -07:00
|
|
|
onClickDataPinningDocsLink() {
|
|
|
|
this.$telemetry.track('User clicked ndv link', {
|
|
|
|
workflow_id: this.$store.getters.workflowId,
|
|
|
|
session_id: this.sessionId,
|
|
|
|
node_type: this.activeNode.type,
|
|
|
|
pane: 'output',
|
|
|
|
type: 'data-pinning-docs',
|
|
|
|
});
|
|
|
|
},
|
|
|
|
showPinDataDiscoveryTooltip(value: IDataObject[]) {
|
|
|
|
if (!this.isTriggerNode) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (value && value.length > 0) {
|
|
|
|
this.pinDataDiscoveryComplete();
|
|
|
|
|
|
|
|
setTimeout(() => {
|
|
|
|
this.isControlledPinDataTooltip = true;
|
|
|
|
this.pinDataDiscoveryTooltipVisible = true;
|
|
|
|
this.eventBus.$emit('data-pinning-discovery', { isTooltipVisible: true });
|
|
|
|
}, 500); // Wait for NDV to open
|
|
|
|
}
|
|
|
|
},
|
|
|
|
hidePinDataDiscoveryTooltip() {
|
|
|
|
if (this.pinDataDiscoveryTooltipVisible) {
|
|
|
|
this.isControlledPinDataTooltip = false;
|
|
|
|
this.pinDataDiscoveryTooltipVisible = false;
|
|
|
|
this.eventBus.$emit('data-pinning-discovery', { isTooltipVisible: false });
|
|
|
|
}
|
|
|
|
},
|
|
|
|
pinDataDiscoveryComplete() {
|
|
|
|
localStorage.setItem(LOCAL_STORAGE_PIN_DATA_DISCOVERY_NDV_FLAG, 'true');
|
|
|
|
localStorage.setItem(LOCAL_STORAGE_PIN_DATA_DISCOVERY_CANVAS_FLAG, 'true');
|
|
|
|
},
|
|
|
|
enterEditMode({ origin }: EnterEditModeArgs) {
|
2022-08-22 08:46:22 -07:00
|
|
|
const inputData = this.pinData
|
|
|
|
? this.clearJsonKey(this.pinData)
|
|
|
|
: this.convertToJson(this.rawInputData);
|
|
|
|
|
2022-07-20 08:50:39 -07:00
|
|
|
const data = inputData.length > 0
|
|
|
|
? inputData
|
|
|
|
: TEST_PIN_DATA;
|
|
|
|
|
|
|
|
this.$store.commit('ui/setOutputPanelEditModeEnabled', true);
|
|
|
|
this.$store.commit('ui/setOutputPanelEditModeValue', JSON.stringify(data, null, 2));
|
|
|
|
|
|
|
|
this.$telemetry.track('User opened ndv edit state', {
|
|
|
|
node_type: this.activeNode.type,
|
|
|
|
click_type: origin === 'editIconButton' ? 'button' : 'link',
|
|
|
|
session_id: this.sessionId,
|
|
|
|
run_index: this.runIndex,
|
|
|
|
is_output_present: this.hasNodeRun || this.hasPinData,
|
|
|
|
view: !this.hasNodeRun && !this.hasPinData ? 'undefined' : this.displayMode,
|
|
|
|
is_data_pinned: this.hasPinData,
|
|
|
|
});
|
|
|
|
},
|
|
|
|
onClickCancelEdit() {
|
|
|
|
this.$store.commit('ui/setOutputPanelEditModeEnabled', false);
|
|
|
|
this.$store.commit('ui/setOutputPanelEditModeValue', '');
|
|
|
|
this.onExitEditMode({ type: 'cancel' });
|
|
|
|
},
|
|
|
|
onClickSaveEdit() {
|
|
|
|
const { value } = this.editMode;
|
|
|
|
|
|
|
|
this.clearAllStickyNotifications();
|
|
|
|
|
|
|
|
if (!this.isValidPinDataSize(value)) {
|
|
|
|
this.onDataPinningError({ errorType: 'data-too-large', source: 'save-edit' });
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!this.isValidPinDataJSON(value)) {
|
|
|
|
this.onDataPinningError({ errorType: 'invalid-json', source: 'save-edit' });
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
this.$store.commit('ui/setOutputPanelEditModeEnabled', false);
|
2022-08-22 08:46:22 -07:00
|
|
|
this.$store.commit('pinData', { node: this.node, data: this.clearJsonKey(value) });
|
2022-07-20 08:50:39 -07:00
|
|
|
|
|
|
|
this.onDataPinningSuccess({ source: 'save-edit' });
|
|
|
|
|
|
|
|
this.onExitEditMode({ type: 'save' });
|
|
|
|
},
|
2022-08-22 08:46:22 -07:00
|
|
|
clearJsonKey(userInput: string | object) {
|
|
|
|
const parsedUserInput = typeof userInput === 'string' ? JSON.parse(userInput) : userInput;
|
2022-07-20 08:50:39 -07:00
|
|
|
|
2022-08-22 08:46:22 -07:00
|
|
|
if (!Array.isArray(parsedUserInput)) return parsedUserInput;
|
2022-07-20 08:50:39 -07:00
|
|
|
|
2022-08-22 08:46:22 -07:00
|
|
|
return parsedUserInput.map(item => isJsonKeyObject(item) ? item.json : item);
|
2022-07-20 08:50:39 -07:00
|
|
|
},
|
|
|
|
onExitEditMode({ type }: { type: 'save' | 'cancel' }) {
|
|
|
|
this.$telemetry.track('User closed ndv edit state', {
|
|
|
|
node_type: this.activeNode.type,
|
|
|
|
session_id: this.sessionId,
|
|
|
|
run_index: this.runIndex,
|
|
|
|
view: this.displayMode,
|
|
|
|
type,
|
|
|
|
});
|
|
|
|
},
|
|
|
|
onDataUnpinning(
|
|
|
|
{ source }: { source: 'banner-link' | 'pin-icon-click' | 'unpin-and-execute-modal' },
|
|
|
|
) {
|
|
|
|
this.$telemetry.track('User unpinned ndv data', {
|
|
|
|
node_type: this.activeNode.type,
|
|
|
|
session_id: this.sessionId,
|
|
|
|
run_index: this.runIndex,
|
|
|
|
source,
|
|
|
|
data_size: stringSizeInBytes(this.pinData),
|
|
|
|
});
|
|
|
|
},
|
|
|
|
onDataPinningSuccess({ source }: { source: 'pin-icon-click' | 'save-edit' }) {
|
2022-08-19 06:35:39 -07:00
|
|
|
const telemetryPayload = {
|
2022-07-20 08:50:39 -07:00
|
|
|
pinning_source: source,
|
|
|
|
node_type: this.activeNode.type,
|
|
|
|
session_id: this.sessionId,
|
|
|
|
data_size: stringSizeInBytes(this.pinData),
|
|
|
|
view: this.displayMode,
|
|
|
|
run_index: this.runIndex,
|
2022-08-19 06:35:39 -07:00
|
|
|
};
|
|
|
|
this.$externalHooks().run('runData.onDataPinningSuccess', telemetryPayload);
|
|
|
|
this.$telemetry.track('Ndv data pinning success', telemetryPayload);
|
2022-07-20 08:50:39 -07:00
|
|
|
},
|
|
|
|
onDataPinningError(
|
|
|
|
{ errorType, source }: {
|
|
|
|
errorType: 'data-too-large' | 'invalid-json',
|
|
|
|
source: 'on-ndv-close-modal' | 'pin-icon-click' | 'save-edit'
|
|
|
|
},
|
|
|
|
) {
|
|
|
|
this.$telemetry.track('Ndv data pinning failure', {
|
|
|
|
pinning_source: source,
|
|
|
|
node_type: this.activeNode.type,
|
|
|
|
session_id: this.sessionId,
|
|
|
|
data_size: stringSizeInBytes(this.pinData),
|
|
|
|
view: this.displayMode,
|
|
|
|
run_index: this.runIndex,
|
|
|
|
error_type: errorType,
|
|
|
|
});
|
|
|
|
},
|
|
|
|
async onTogglePinData(
|
|
|
|
{ source }: { source: 'banner-link' | 'pin-icon-click' | 'unpin-and-execute-modal' },
|
|
|
|
) {
|
|
|
|
if (source === 'pin-icon-click') {
|
2022-08-19 06:35:39 -07:00
|
|
|
const telemetryPayload = {
|
2022-07-20 08:50:39 -07:00
|
|
|
node_type: this.activeNode.type,
|
|
|
|
session_id: this.sessionId,
|
|
|
|
run_index: this.runIndex,
|
|
|
|
view: !this.hasNodeRun && !this.hasPinData ? 'none' : this.displayMode,
|
2022-08-19 06:35:39 -07:00
|
|
|
};
|
|
|
|
|
|
|
|
this.$externalHooks().run('runData.onTogglePinData', telemetryPayload);
|
|
|
|
this.$telemetry.track('User clicked pin data icon', telemetryPayload);
|
2022-07-20 08:50:39 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
this.updateNodeParameterIssues(this.node);
|
|
|
|
|
|
|
|
if (this.hasPinData) {
|
|
|
|
this.onDataUnpinning({ source });
|
|
|
|
this.$store.commit('unpinData', { node: this.node });
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
const data = this.convertToJson(this.rawInputData);
|
|
|
|
|
|
|
|
if (!this.isValidPinDataSize(data)) {
|
|
|
|
this.onDataPinningError({ errorType: 'data-too-large', source: 'pin-icon-click' });
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
this.onDataPinningSuccess({ source: 'save-edit' });
|
|
|
|
|
|
|
|
this.$store.commit('pinData', { node: this.node, data });
|
|
|
|
|
|
|
|
if (this.maxRunIndex > 0) {
|
|
|
|
this.$showToast({
|
|
|
|
title: this.$locale.baseText('ndv.pinData.pin.multipleRuns.title', {
|
|
|
|
interpolate: {
|
|
|
|
index: `${this.runIndex}`,
|
|
|
|
},
|
|
|
|
}),
|
|
|
|
message: this.$locale.baseText('ndv.pinData.pin.multipleRuns.description'),
|
|
|
|
type: 'success',
|
|
|
|
duration: 2000,
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
this.hidePinDataDiscoveryTooltip();
|
|
|
|
this.pinDataDiscoveryComplete();
|
|
|
|
},
|
2022-05-23 08:56:15 -07:00
|
|
|
switchToBinary() {
|
|
|
|
this.onDisplayModeChange('binary');
|
|
|
|
},
|
|
|
|
onBranchChange(value: number) {
|
|
|
|
this.outputIndex = value;
|
|
|
|
|
|
|
|
this.$telemetry.track('User changed ndv branch', {
|
|
|
|
session_id: this.sessionId,
|
|
|
|
branch_index: value,
|
|
|
|
node_type: this.activeNode.type,
|
|
|
|
node_type_input_selection: this.nodeType? this.nodeType.name: '',
|
|
|
|
pane: this.paneType,
|
|
|
|
});
|
|
|
|
},
|
|
|
|
showTooMuchData() {
|
|
|
|
this.showData = true;
|
|
|
|
this.$telemetry.track('User clicked ndv button', {
|
|
|
|
node_type: this.activeNode.type,
|
|
|
|
workflow_id: this.$store.getters.workflowId,
|
|
|
|
session_id: this.sessionId,
|
|
|
|
pane: this.paneType,
|
|
|
|
type: 'showTooMuchData',
|
|
|
|
});
|
|
|
|
},
|
|
|
|
linkRun() {
|
|
|
|
this.$emit('linkRun');
|
|
|
|
},
|
|
|
|
unlinkRun() {
|
|
|
|
this.$emit('unlinkRun');
|
|
|
|
},
|
|
|
|
onCurrentPageChange() {
|
|
|
|
this.$telemetry.track('User changed ndv page', {
|
|
|
|
node_type: this.activeNode.type,
|
|
|
|
workflow_id: this.$store.getters.workflowId,
|
|
|
|
session_id: this.sessionId,
|
|
|
|
pane: this.paneType,
|
|
|
|
page_selected: this.currentPage,
|
|
|
|
page_size: this.pageSize,
|
|
|
|
items_total: this.dataCount,
|
|
|
|
});
|
|
|
|
},
|
2022-04-11 06:12:13 -07:00
|
|
|
onPageSizeChange(pageSize: number) {
|
|
|
|
this.pageSize = pageSize;
|
|
|
|
const maxPage = Math.ceil(this.dataCount / this.pageSize);
|
|
|
|
if (maxPage < this.currentPage) {
|
|
|
|
this.currentPage = maxPage;
|
|
|
|
}
|
2022-05-23 08:56:15 -07:00
|
|
|
|
|
|
|
this.$telemetry.track('User changed ndv page size', {
|
|
|
|
node_type: this.activeNode.type,
|
|
|
|
workflow_id: this.$store.getters.workflowId,
|
|
|
|
session_id: this.sessionId,
|
|
|
|
pane: this.paneType,
|
|
|
|
page_selected: this.currentPage,
|
|
|
|
page_size: this.pageSize,
|
|
|
|
items_total: this.dataCount,
|
|
|
|
});
|
2022-04-11 06:12:13 -07:00
|
|
|
},
|
2022-05-23 08:56:15 -07:00
|
|
|
onDisplayModeChange(displayMode: IRunDataDisplayMode) {
|
2022-04-11 06:12:13 -07:00
|
|
|
const previous = this.displayMode;
|
2022-05-23 08:56:15 -07:00
|
|
|
this.$store.commit('ui/setPanelDisplayMode', {pane: this.paneType, mode: displayMode});
|
2022-04-11 06:12:13 -07:00
|
|
|
|
|
|
|
const dataContainer = this.$refs.dataContainer;
|
|
|
|
if (dataContainer) {
|
|
|
|
const dataDisplay = (dataContainer as Element).children[0];
|
|
|
|
|
|
|
|
if (dataDisplay){
|
|
|
|
dataDisplay.scrollTo(0, 0);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
this.closeBinaryDataDisplay();
|
|
|
|
this.$externalHooks().run('runData.displayModeChanged', { newValue: displayMode, oldValue: previous });
|
2022-05-23 08:56:15 -07:00
|
|
|
if(this.activeNode) {
|
|
|
|
this.$telemetry.track('User changed ndv item view', {
|
|
|
|
previous_view: previous,
|
|
|
|
new_view: displayMode,
|
|
|
|
node_type: this.activeNode.type,
|
|
|
|
workflow_id: this.$store.getters.workflowId,
|
|
|
|
session_id: this.sessionId,
|
|
|
|
pane: this.paneType,
|
|
|
|
});
|
2022-04-11 06:12:13 -07:00
|
|
|
}
|
|
|
|
},
|
|
|
|
getRunLabel(option: number) {
|
|
|
|
let itemsCount = 0;
|
|
|
|
for (let i = 0; i <= this.maxOutputIndex; i++) {
|
|
|
|
itemsCount += this.getDataCount(option - 1, i);
|
|
|
|
}
|
2022-05-23 08:56:15 -07:00
|
|
|
const items = this.$locale.baseText('ndv.output.items', {adjustToNumber: itemsCount});
|
2022-04-11 06:12:13 -07:00
|
|
|
const itemsLabel = itemsCount > 0 ? ` (${itemsCount} ${items})` : '';
|
|
|
|
return option + this.$locale.baseText('ndv.output.of') + (this.maxRunIndex+1) + itemsLabel;
|
|
|
|
},
|
|
|
|
getDataCount(runIndex: number, outputIndex: number) {
|
|
|
|
if (this.node === null) {
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
const runData: IRunData | null = this.workflowRunData;
|
|
|
|
|
|
|
|
if (runData === null || !runData.hasOwnProperty(this.node.name)) {
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (runData[this.node.name].length <= runIndex) {
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (runData[this.node.name][runIndex].hasOwnProperty('error')) {
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!runData[this.node.name][runIndex].hasOwnProperty('data') ||
|
|
|
|
runData[this.node.name][runIndex].data === undefined
|
|
|
|
) {
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
const inputData = this.getMainInputData(runData[this.node.name][runIndex].data!, outputIndex);
|
|
|
|
|
|
|
|
return inputData.length;
|
|
|
|
},
|
2021-09-15 01:11:59 -07:00
|
|
|
init() {
|
|
|
|
// Reset the selected output index every time another node gets selected
|
|
|
|
this.outputIndex = 0;
|
|
|
|
this.refreshDataSize();
|
2022-05-23 08:56:15 -07:00
|
|
|
this.closeBinaryDataDisplay();
|
|
|
|
if (this.binaryData.length > 0) {
|
|
|
|
this.$store.commit('ui/setPanelDisplayMode', {pane: this.paneType, mode: 'binary'});
|
|
|
|
}
|
|
|
|
else if (this.displayMode === 'binary') {
|
|
|
|
this.$store.commit('ui/setPanelDisplayMode', {pane: this.paneType, mode: 'table'});
|
2021-09-15 01:11:59 -07:00
|
|
|
}
|
|
|
|
},
|
2019-06-23 03:35:23 -07:00
|
|
|
closeBinaryDataDisplay () {
|
|
|
|
this.binaryDataDisplayVisible = false;
|
|
|
|
this.binaryDataDisplayData = null;
|
|
|
|
},
|
|
|
|
convertToJson (inputData: INodeExecutionData[]): IDataObject[] {
|
|
|
|
const returnData: IDataObject[] = [];
|
|
|
|
inputData.forEach((data) => {
|
|
|
|
if (!data.hasOwnProperty('json')) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
returnData.push(data.json);
|
|
|
|
});
|
|
|
|
|
|
|
|
return returnData;
|
|
|
|
},
|
|
|
|
clearExecutionData () {
|
|
|
|
this.$store.commit('setWorkflowExecutionData', null);
|
|
|
|
this.updateNodesExecutionIssues();
|
|
|
|
},
|
2020-12-18 09:55:53 -08:00
|
|
|
dataItemClicked (path: string, data: object | number | string) {
|
2022-07-20 08:50:39 -07:00
|
|
|
this.selectedOutput.value = data;
|
2020-12-18 09:55:53 -08:00
|
|
|
},
|
2022-03-28 03:59:53 -07:00
|
|
|
isDownloadable (index: number, key: string): boolean {
|
|
|
|
const binaryDataItem: IBinaryData = this.binaryData[index][key];
|
|
|
|
return !!(binaryDataItem.mimeType && binaryDataItem.fileName);
|
|
|
|
},
|
|
|
|
async downloadBinaryData (index: number, key: string) {
|
|
|
|
const binaryDataItem: IBinaryData = this.binaryData[index][key];
|
|
|
|
|
|
|
|
let bufferString = 'data:' + binaryDataItem.mimeType + ';base64,';
|
|
|
|
if(binaryDataItem.id) {
|
|
|
|
bufferString += await this.restApi().getBinaryBufferString(binaryDataItem.id);
|
|
|
|
} else {
|
|
|
|
bufferString += binaryDataItem.data;
|
|
|
|
}
|
|
|
|
|
|
|
|
const data = await fetch(bufferString);
|
|
|
|
const blob = await data.blob();
|
|
|
|
saveAs(blob, binaryDataItem.fileName);
|
|
|
|
},
|
2019-06-23 03:35:23 -07:00
|
|
|
displayBinaryData (index: number, key: string) {
|
|
|
|
this.binaryDataDisplayVisible = true;
|
|
|
|
|
|
|
|
this.binaryDataDisplayData = {
|
|
|
|
node: this.node!.name,
|
|
|
|
runIndex: this.runIndex,
|
2022-05-23 08:56:15 -07:00
|
|
|
outputIndex: this.currentOutputIndex,
|
2019-06-23 03:35:23 -07:00
|
|
|
index,
|
|
|
|
key,
|
|
|
|
};
|
|
|
|
},
|
2020-12-18 09:55:53 -08:00
|
|
|
getOutputName (outputIndex: number) {
|
|
|
|
if (this.node === null) {
|
|
|
|
return outputIndex + 1;
|
|
|
|
}
|
|
|
|
|
2022-04-11 06:12:13 -07:00
|
|
|
const nodeType = this.nodeType;
|
2021-11-19 01:17:13 -08:00
|
|
|
if (!nodeType || !nodeType.outputNames || nodeType.outputNames.length <= outputIndex) {
|
2020-12-18 09:55:53 -08:00
|
|
|
return outputIndex + 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
return nodeType.outputNames[outputIndex];
|
|
|
|
},
|
|
|
|
convertPath (path: string): string {
|
|
|
|
// TODO: That can for sure be done fancier but for now it works
|
|
|
|
const placeholder = '*___~#^#~___*';
|
|
|
|
let inBrackets = path.match(/\[(.*?)\]/g);
|
|
|
|
|
|
|
|
if (inBrackets === null) {
|
|
|
|
inBrackets = [];
|
|
|
|
} else {
|
|
|
|
inBrackets = inBrackets.map(item => item.slice(1, -1)).map(item => {
|
|
|
|
if (item.startsWith('"') && item.endsWith('"')) {
|
|
|
|
return item.slice(1, -1);
|
|
|
|
}
|
|
|
|
return item;
|
|
|
|
});
|
|
|
|
}
|
|
|
|
const withoutBrackets = path.replace(/\[(.*?)\]/g, placeholder);
|
|
|
|
const pathParts = withoutBrackets.split('.');
|
|
|
|
const allParts = [] as string[];
|
|
|
|
pathParts.forEach(part => {
|
|
|
|
let index = part.indexOf(placeholder);
|
|
|
|
while(index !== -1) {
|
|
|
|
if (index === 0) {
|
|
|
|
allParts.push(inBrackets!.shift() as string);
|
|
|
|
part = part.substr(placeholder.length);
|
|
|
|
} else {
|
|
|
|
allParts.push(part.substr(0, index));
|
|
|
|
part = part.substr(index);
|
|
|
|
}
|
|
|
|
index = part.indexOf(placeholder);
|
|
|
|
}
|
|
|
|
if (part !== '') {
|
|
|
|
allParts.push(part);
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
return '["' + allParts.join('"]["') + '"]';
|
|
|
|
},
|
|
|
|
handleCopyClick (commandData: { command: string }) {
|
2022-07-20 08:50:39 -07:00
|
|
|
const isNotSelected = this.selectedOutput.path === deselectedPlaceholder;
|
|
|
|
const selectedPath = isNotSelected ? '[""]' : this.selectedOutput.path;
|
|
|
|
|
|
|
|
let selectedValue = this.selectedOutput.value;
|
|
|
|
if (isNotSelected) {
|
|
|
|
if (this.hasPinData) {
|
2022-08-22 08:46:22 -07:00
|
|
|
selectedValue = this.clearJsonKey(this.pinData as object);
|
2022-07-20 08:50:39 -07:00
|
|
|
} else {
|
|
|
|
selectedValue = this.convertToJson(this.getNodeInputData(this.node, this.runIndex, this.currentOutputIndex));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
const newPath = this.convertPath(selectedPath);
|
2020-12-18 09:55:53 -08:00
|
|
|
|
|
|
|
let value: string;
|
|
|
|
if (commandData.command === 'value') {
|
2022-07-20 08:50:39 -07:00
|
|
|
if (typeof selectedValue === 'object') {
|
|
|
|
value = JSON.stringify(selectedValue, null, 2);
|
2020-12-18 09:55:53 -08:00
|
|
|
} else {
|
2022-07-20 08:50:39 -07:00
|
|
|
value = selectedValue.toString();
|
2020-12-18 09:55:53 -08:00
|
|
|
}
|
2022-07-20 08:50:39 -07:00
|
|
|
|
|
|
|
this.$showToast({
|
|
|
|
title: this.$locale.baseText('runData.copyValue.toast'),
|
|
|
|
message: '',
|
|
|
|
type: 'success',
|
|
|
|
duration: 2000,
|
|
|
|
});
|
2020-12-18 09:55:53 -08:00
|
|
|
} else {
|
|
|
|
let startPath = '';
|
|
|
|
let path = '';
|
|
|
|
if (commandData.command === 'itemPath') {
|
|
|
|
const pathParts = newPath.split(']');
|
|
|
|
const index = pathParts[0].slice(1);
|
|
|
|
path = pathParts.slice(1).join(']');
|
|
|
|
startPath = `$item(${index}).$node["${this.node!.name}"].json`;
|
2022-07-20 08:50:39 -07:00
|
|
|
|
|
|
|
this.$showToast({
|
|
|
|
title: this.$locale.baseText('runData.copyItemPath.toast'),
|
|
|
|
message: '',
|
|
|
|
type: 'success',
|
|
|
|
duration: 2000,
|
|
|
|
});
|
2020-12-18 09:55:53 -08:00
|
|
|
} else if (commandData.command === 'parameterPath') {
|
|
|
|
path = newPath.split(']').slice(1).join(']');
|
|
|
|
startPath = `$node["${this.node!.name}"].json`;
|
2022-07-20 08:50:39 -07:00
|
|
|
|
|
|
|
this.$showToast({
|
|
|
|
title: this.$locale.baseText('runData.copyParameterPath.toast'),
|
|
|
|
message: '',
|
|
|
|
type: 'success',
|
|
|
|
duration: 2000,
|
|
|
|
});
|
2020-12-18 09:55:53 -08:00
|
|
|
}
|
|
|
|
if (!path.startsWith('[') && !path.startsWith('.') && path) {
|
|
|
|
path += '.';
|
|
|
|
}
|
|
|
|
value = `{{ ${startPath + path} }}`;
|
|
|
|
}
|
|
|
|
|
2022-07-20 08:50:39 -07:00
|
|
|
const copyType = {
|
|
|
|
value: 'selection',
|
|
|
|
itemPath: 'item_path',
|
|
|
|
parameterPath: 'parameter_path',
|
|
|
|
}[commandData.command];
|
|
|
|
|
|
|
|
this.$telemetry.track('User copied ndv data', {
|
|
|
|
node_type: this.activeNode.type,
|
|
|
|
session_id: this.sessionId,
|
|
|
|
run_index: this.runIndex,
|
|
|
|
view: this.displayMode,
|
|
|
|
copy_type: copyType,
|
|
|
|
workflow_id: this.$store.getters.workflowId,
|
|
|
|
pane: 'output',
|
|
|
|
in_execution_log: this.isReadOnly,
|
|
|
|
});
|
|
|
|
|
2020-12-18 09:55:53 -08:00
|
|
|
this.copyToClipboard(value);
|
|
|
|
},
|
2019-10-04 04:27:50 -07:00
|
|
|
refreshDataSize () {
|
2019-10-02 06:30:51 -07:00
|
|
|
// Hide by default the data from being displayed
|
|
|
|
this.showData = false;
|
|
|
|
|
|
|
|
// Check how much data there is to display
|
2022-05-23 08:56:15 -07:00
|
|
|
const inputData = this.getNodeInputData(this.node, this.runIndex, this.currentOutputIndex);
|
2020-05-23 14:54:56 -07:00
|
|
|
|
2022-04-11 06:12:13 -07:00
|
|
|
const offset = this.pageSize * (this.currentPage - 1);
|
|
|
|
const jsonItems = inputData.slice(offset, offset + this.pageSize).map(item => item.json);
|
2020-05-23 14:54:56 -07:00
|
|
|
|
|
|
|
this.dataSize = JSON.stringify(jsonItems).length;
|
2019-10-04 04:27:50 -07:00
|
|
|
|
2020-05-23 15:53:06 -07:00
|
|
|
if (this.dataSize < this.MAX_DISPLAY_DATA_SIZE) {
|
2019-10-04 04:27:50 -07:00
|
|
|
// Data is reasonable small (< 200kb) so display it directly
|
2019-10-02 06:30:51 -07:00
|
|
|
this.showData = true;
|
|
|
|
}
|
2019-06-23 03:35:23 -07:00
|
|
|
},
|
2022-05-23 08:56:15 -07:00
|
|
|
onRunIndexChange(run: number) {
|
|
|
|
this.$emit('runChange', run);
|
|
|
|
},
|
2022-07-20 08:50:39 -07:00
|
|
|
enableNode() {
|
|
|
|
if (this.node) {
|
|
|
|
const updateInformation = {
|
|
|
|
name: this.node.name,
|
|
|
|
properties: {
|
|
|
|
disabled: !this.node.disabled,
|
|
|
|
},
|
|
|
|
};
|
|
|
|
|
|
|
|
this.$store.commit('updateNodeProperties', updateInformation);
|
|
|
|
}
|
|
|
|
},
|
2022-09-19 03:26:02 -07:00
|
|
|
goToErroredNode() {
|
|
|
|
if (this.node) {
|
|
|
|
this.$store.commit('setActiveNode', this.node.name);
|
|
|
|
}
|
|
|
|
},
|
2019-10-04 04:27:50 -07:00
|
|
|
},
|
|
|
|
watch: {
|
2021-09-15 01:11:59 -07:00
|
|
|
node() {
|
|
|
|
this.init();
|
2019-10-04 04:27:50 -07:00
|
|
|
},
|
2022-07-20 08:50:39 -07:00
|
|
|
jsonData (value: IDataObject[]) {
|
2019-10-04 04:27:50 -07:00
|
|
|
this.refreshDataSize();
|
2022-07-20 08:50:39 -07:00
|
|
|
|
|
|
|
const hasSeenPinDataTooltip = localStorage.getItem(LOCAL_STORAGE_PIN_DATA_DISCOVERY_NDV_FLAG);
|
|
|
|
if (!hasSeenPinDataTooltip) {
|
|
|
|
this.showPinDataDiscoveryTooltip(value);
|
|
|
|
}
|
2019-10-04 04:27:50 -07:00
|
|
|
},
|
2022-05-23 08:56:15 -07:00
|
|
|
binaryData (newData: IBinaryKeyData[], prevData: IBinaryKeyData[]) {
|
|
|
|
if (newData.length && !prevData.length && this.displayMode !== 'binary') {
|
|
|
|
this.switchToBinary();
|
|
|
|
}
|
|
|
|
else if (!newData.length && this.displayMode === 'binary') {
|
|
|
|
this.onDisplayModeChange('table');
|
|
|
|
}
|
2019-06-23 03:35:23 -07:00
|
|
|
},
|
|
|
|
},
|
|
|
|
});
|
|
|
|
</script>
|
|
|
|
|
2022-04-11 06:12:13 -07:00
|
|
|
<style lang="scss" module>
|
|
|
|
.infoIcon {
|
|
|
|
color: var(--color-foreground-dark);
|
|
|
|
}
|
2019-06-23 03:35:23 -07:00
|
|
|
|
2022-04-11 06:12:13 -07:00
|
|
|
.center {
|
|
|
|
display: flex;
|
|
|
|
height: 100%;
|
|
|
|
flex-direction: column;
|
|
|
|
align-items: center;
|
|
|
|
justify-content: center;
|
2022-05-23 08:56:15 -07:00
|
|
|
padding: var(--spacing-s) var(--spacing-s) var(--spacing-xl) var(--spacing-s);
|
2022-04-11 06:12:13 -07:00
|
|
|
text-align: center;
|
|
|
|
|
|
|
|
> * {
|
|
|
|
max-width: 316px;
|
|
|
|
margin-bottom: var(--spacing-2xs);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.container {
|
2019-06-23 03:35:23 -07:00
|
|
|
position: relative;
|
2021-09-11 01:15:36 -07:00
|
|
|
width: 100%;
|
2019-06-23 03:35:23 -07:00
|
|
|
height: 100%;
|
2022-05-23 08:56:15 -07:00
|
|
|
background-color: var(--color-background-base);
|
2022-04-11 06:12:13 -07:00
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
}
|
2019-06-23 03:35:23 -07:00
|
|
|
|
2022-07-20 08:50:39 -07:00
|
|
|
.pinned-data-callout {
|
|
|
|
border-radius: inherit;
|
|
|
|
border-bottom-right-radius: 0;
|
|
|
|
border-top: 0;
|
|
|
|
border-left: 0;
|
|
|
|
border-right: 0;
|
|
|
|
}
|
|
|
|
|
2022-04-11 06:12:13 -07:00
|
|
|
.header {
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
margin-bottom: var(--spacing-s);
|
|
|
|
padding: var(--spacing-s) var(--spacing-s) 0 var(--spacing-s);
|
|
|
|
position: relative;
|
2022-03-28 03:59:53 -07:00
|
|
|
|
2022-04-11 06:12:13 -07:00
|
|
|
> *:first-child {
|
|
|
|
flex-grow: 1;
|
|
|
|
}
|
|
|
|
}
|
2019-06-23 03:35:23 -07:00
|
|
|
|
2022-07-20 08:50:39 -07:00
|
|
|
.data-container {
|
2022-04-11 06:12:13 -07:00
|
|
|
position: relative;
|
|
|
|
height: 100%;
|
2022-07-20 08:50:39 -07:00
|
|
|
|
|
|
|
&:hover,
|
|
|
|
&.copy-dropdown-open {
|
|
|
|
.actions-group {
|
|
|
|
opacity: 1;
|
|
|
|
}
|
|
|
|
}
|
2022-04-11 06:12:13 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
.dataDisplay {
|
|
|
|
position: absolute;
|
|
|
|
top: 0;
|
|
|
|
left: 0;
|
|
|
|
padding-left: var(--spacing-s);
|
|
|
|
right: 0;
|
|
|
|
overflow-y: auto;
|
|
|
|
line-height: 1.5;
|
|
|
|
word-break: normal;
|
|
|
|
height: 100%;
|
|
|
|
padding-bottom: var(--spacing-3xl);
|
|
|
|
}
|
|
|
|
|
2022-05-23 08:56:15 -07:00
|
|
|
.errorDisplay {
|
|
|
|
composes: dataDisplay;
|
|
|
|
padding-right: var(--spacing-s);
|
|
|
|
}
|
|
|
|
|
2022-04-11 06:12:13 -07:00
|
|
|
.jsonDisplay {
|
|
|
|
composes: dataDisplay;
|
|
|
|
background-color: var(--color-background-base);
|
|
|
|
padding-top: var(--spacing-s);
|
|
|
|
}
|
|
|
|
|
|
|
|
.tabs {
|
|
|
|
margin-bottom: var(--spacing-s);
|
|
|
|
}
|
|
|
|
|
|
|
|
.itemsCount {
|
|
|
|
margin-left: var(--spacing-s);
|
|
|
|
margin-bottom: var(--spacing-s);
|
|
|
|
}
|
|
|
|
|
|
|
|
.runSelector {
|
2022-07-20 08:50:39 -07:00
|
|
|
max-width: 210px;
|
2022-04-11 06:12:13 -07:00
|
|
|
margin-left: var(--spacing-s);
|
|
|
|
margin-bottom: var(--spacing-s);
|
2022-05-23 08:56:15 -07:00
|
|
|
display: flex;
|
2022-07-26 00:55:27 -07:00
|
|
|
align-items: center;
|
2022-05-23 08:56:15 -07:00
|
|
|
|
|
|
|
> * {
|
|
|
|
margin-right: var(--spacing-4xs);
|
|
|
|
}
|
2022-04-11 06:12:13 -07:00
|
|
|
}
|
|
|
|
|
2022-07-20 08:50:39 -07:00
|
|
|
.actions-group {
|
2022-04-11 06:12:13 -07:00
|
|
|
position: absolute;
|
|
|
|
z-index: 10;
|
2022-07-20 08:50:39 -07:00
|
|
|
top: 12px;
|
|
|
|
right: var(--spacing-l);
|
|
|
|
opacity: 0;
|
|
|
|
transition: opacity 0.3s ease;
|
2022-04-11 06:12:13 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
.pagination {
|
|
|
|
width: 100%;
|
|
|
|
display: flex;
|
|
|
|
justify-content: center;
|
|
|
|
align-items: center;
|
|
|
|
bottom: 0;
|
|
|
|
padding: 5px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.binaryIndex {
|
|
|
|
display: block;
|
|
|
|
padding: var(--spacing-2xs);
|
|
|
|
font-size: var(--font-size-2xs);
|
|
|
|
|
|
|
|
> * {
|
|
|
|
display: inline-block;
|
|
|
|
width: 30px;
|
|
|
|
height: 30px;
|
|
|
|
line-height: 30px;
|
|
|
|
border-radius: var(--border-radius-base);
|
|
|
|
text-align: center;
|
|
|
|
background-color: var(--color-foreground-xdark);
|
|
|
|
font-weight: var(--font-weight-bold);
|
|
|
|
color: var(--color-text-xlight);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.binaryRow {
|
|
|
|
display: inline-flex;
|
|
|
|
font-size: var(--font-size-2xs);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.binaryCell {
|
|
|
|
display: inline-block;
|
|
|
|
width: 300px;
|
|
|
|
overflow: hidden;
|
2022-07-26 03:45:55 -07:00
|
|
|
background-color: var(--color-foreground-xlight);
|
2022-04-11 06:12:13 -07:00
|
|
|
margin-right: var(--spacing-s);
|
|
|
|
margin-bottom: var(--spacing-s);
|
|
|
|
border-radius: var(--border-radius-base);
|
|
|
|
border: var(--border-base);
|
|
|
|
padding: var(--spacing-s);
|
|
|
|
}
|
|
|
|
|
|
|
|
.binaryHeader {
|
|
|
|
color: $--color-primary;
|
|
|
|
font-weight: 600;
|
|
|
|
font-size: 1.2em;
|
|
|
|
padding-bottom: 0.5em;
|
|
|
|
margin-bottom: 0.5em;
|
2022-07-26 03:45:55 -07:00
|
|
|
border-bottom: 1px solid var(--color-text-light);
|
2022-04-11 06:12:13 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
.binaryButtonContainer {
|
|
|
|
margin-top: 1.5em;
|
|
|
|
display: flex;
|
|
|
|
flex-direction: row;
|
|
|
|
justify-content: center;
|
|
|
|
|
|
|
|
> * {
|
|
|
|
flex-grow: 0;
|
|
|
|
margin-right: var(--spacing-3xs);
|
2019-06-23 03:35:23 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-04-11 06:12:13 -07:00
|
|
|
.binaryValue {
|
|
|
|
white-space: initial;
|
|
|
|
word-wrap: break-word;
|
|
|
|
}
|
|
|
|
|
|
|
|
.pageSizeSelector {
|
|
|
|
text-transform: capitalize;
|
|
|
|
max-width: 150px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.displayModes {
|
2022-05-23 08:56:15 -07:00
|
|
|
display: flex;
|
|
|
|
justify-content: flex-end;
|
|
|
|
flex-grow: 1;
|
|
|
|
}
|
|
|
|
|
2022-07-20 08:50:39 -07:00
|
|
|
.tooltip-container {
|
|
|
|
max-width: 240px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.pin-data-button {
|
|
|
|
svg {
|
|
|
|
transition: transform 0.3s ease;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.pin-data-button-active {
|
|
|
|
&,
|
|
|
|
&:hover,
|
|
|
|
&:focus,
|
|
|
|
&:active {
|
|
|
|
border-color: var(--color-primary);
|
|
|
|
color: var(--color-primary);
|
|
|
|
background: var(--color-primary-tint-2);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-05-23 08:56:15 -07:00
|
|
|
.spinner {
|
|
|
|
* {
|
|
|
|
color: var(--color-primary);
|
|
|
|
min-height: 40px;
|
|
|
|
min-width: 40px;
|
|
|
|
}
|
|
|
|
|
|
|
|
display: flex;
|
|
|
|
justify-content: center;
|
|
|
|
margin-bottom: var(--spacing-s);
|
2022-04-11 06:12:13 -07:00
|
|
|
}
|
|
|
|
|
2022-07-20 08:50:39 -07:00
|
|
|
.edit-mode {
|
|
|
|
height: calc(100% - var(--spacing-s));
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
justify-content: flex-end;
|
|
|
|
align-items: flex-end;
|
|
|
|
padding-left: var(--spacing-s);
|
|
|
|
padding-right: var(--spacing-s);
|
|
|
|
}
|
|
|
|
|
|
|
|
.edit-mode-body {
|
|
|
|
flex: 1 1 auto;
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
overflow: hidden;
|
|
|
|
}
|
|
|
|
|
|
|
|
.edit-mode-footer {
|
|
|
|
display: flex;
|
|
|
|
width: 100%;
|
|
|
|
justify-content: space-between;
|
|
|
|
align-items: center;
|
|
|
|
padding-top: var(--spacing-s);
|
|
|
|
}
|
|
|
|
|
|
|
|
.edit-mode-footer-infotip {
|
|
|
|
display: flex;
|
|
|
|
flex: 1;
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
|
|
|
|
.edit-mode-actions {
|
|
|
|
display: flex;
|
|
|
|
justify-content: flex-end;
|
|
|
|
align-items: center;
|
|
|
|
margin-left: var(--spacing-s);
|
|
|
|
}
|
2022-09-19 03:26:02 -07:00
|
|
|
|
|
|
|
.stretchVertically {
|
|
|
|
height: 100%;
|
|
|
|
}
|
|
|
|
|
2022-04-11 06:12:13 -07:00
|
|
|
</style>
|
|
|
|
|
|
|
|
<style lang="scss">
|
|
|
|
.vjs-tree {
|
|
|
|
color: var(--color-json-default);
|
|
|
|
}
|
|
|
|
|
|
|
|
.vjs-tree.is-highlight-selected {
|
|
|
|
background-color: var(--color-json-highlight);
|
|
|
|
}
|
|
|
|
|
|
|
|
.vjs-tree .vjs-value__null {
|
|
|
|
color: var(--color-json-null);
|
|
|
|
}
|
|
|
|
|
|
|
|
.vjs-tree .vjs-value__boolean {
|
|
|
|
color: var(--color-json-boolean);
|
|
|
|
}
|
|
|
|
|
|
|
|
.vjs-tree .vjs-value__number {
|
|
|
|
color: var(--color-json-number);
|
|
|
|
}
|
|
|
|
|
|
|
|
.vjs-tree .vjs-value__string {
|
|
|
|
color: var(--color-json-string);
|
|
|
|
}
|
|
|
|
|
|
|
|
.vjs-tree .vjs-key {
|
|
|
|
color: var(--color-json-key);
|
|
|
|
}
|
|
|
|
|
|
|
|
.vjs-tree .vjs-tree__brackets {
|
|
|
|
color: var(--color-json-brackets);
|
|
|
|
}
|
|
|
|
|
|
|
|
.vjs-tree .vjs-tree__brackets:hover {
|
|
|
|
color: var(--color-json-brackets-hover);
|
|
|
|
}
|
|
|
|
|
|
|
|
.vjs-tree .vjs-tree__content.has-line {
|
|
|
|
border-left: 1px dotted var(--color-json-line);
|
|
|
|
}
|
2019-06-23 03:35:23 -07:00
|
|
|
</style>
|