mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-15 17:14:05 -08:00
600b285a44
Co-authored-by: Alex Grozav <alex@grozav.com>
186 lines
4.7 KiB
Vue
186 lines
4.7 KiB
Vue
<template>
|
|
<Modal
|
|
:name="modalName"
|
|
:eventBus="modalBus"
|
|
@enter="save"
|
|
:title="$locale.baseText('duplicateWorkflowDialog.duplicateWorkflow')"
|
|
:center="true"
|
|
width="420px"
|
|
>
|
|
<template #content>
|
|
<div :class="$style.content">
|
|
<n8n-input
|
|
v-model="name"
|
|
ref="nameInput"
|
|
:placeholder="$locale.baseText('duplicateWorkflowDialog.enterWorkflowName')"
|
|
:maxlength="MAX_WORKFLOW_NAME_LENGTH"
|
|
/>
|
|
<TagsDropdown
|
|
v-if="settingsStore.areTagsEnabled"
|
|
:createEnabled="true"
|
|
:currentTagIds="currentTagIds"
|
|
:eventBus="dropdownBus"
|
|
@blur="onTagsBlur"
|
|
@esc="onTagsEsc"
|
|
@update="onTagsUpdate"
|
|
:placeholder="$locale.baseText('duplicateWorkflowDialog.chooseOrCreateATag')"
|
|
ref="dropdown"
|
|
/>
|
|
</div>
|
|
</template>
|
|
<template #footer="{ close }">
|
|
<div :class="$style.footer">
|
|
<n8n-button @click="save" :loading="isSaving" :label="$locale.baseText('duplicateWorkflowDialog.save')" float="right" />
|
|
<n8n-button type="secondary" @click="close" :disabled="isSaving" :label="$locale.baseText('duplicateWorkflowDialog.cancel')" float="right" />
|
|
</div>
|
|
</template>
|
|
</Modal>
|
|
</template>
|
|
|
|
<script lang="ts">
|
|
import Vue from "vue";
|
|
import mixins from "vue-typed-mixins";
|
|
|
|
import { MAX_WORKFLOW_NAME_LENGTH, PLACEHOLDER_EMPTY_WORKFLOW_ID } from "@/constants";
|
|
import { workflowHelpers } from "@/components/mixins/workflowHelpers";
|
|
import { showMessage } from "@/components/mixins/showMessage";
|
|
import TagsDropdown from "@/components/TagsDropdown.vue";
|
|
import Modal from "./Modal.vue";
|
|
import {restApi} from "@/components/mixins/restApi";
|
|
import { mapStores } from "pinia";
|
|
import { useSettingsStore } from "@/stores/settings";
|
|
import { useWorkflowsStore } from "@/stores/workflows";
|
|
import { IWorkflowDataUpdate } from "@/Interface";
|
|
|
|
export default mixins(showMessage, workflowHelpers, restApi).extend({
|
|
components: { TagsDropdown, Modal },
|
|
name: "DuplicateWorkflow",
|
|
props: ["modalName", "isActive", "data"],
|
|
data() {
|
|
const currentTagIds = this.data.tags;
|
|
|
|
return {
|
|
name: '',
|
|
currentTagIds,
|
|
isSaving: false,
|
|
modalBus: new Vue(),
|
|
dropdownBus: new Vue(),
|
|
MAX_WORKFLOW_NAME_LENGTH,
|
|
prevTagIds: currentTagIds,
|
|
};
|
|
},
|
|
async mounted() {
|
|
this.name = await this.workflowsStore.getDuplicateCurrentWorkflowName(this.data.name);
|
|
this.$nextTick(() => this.focusOnNameInput());
|
|
},
|
|
computed: {
|
|
...mapStores(
|
|
useSettingsStore,
|
|
useWorkflowsStore,
|
|
),
|
|
},
|
|
watch: {
|
|
isActive(active) {
|
|
if (active) {
|
|
this.focusOnSelect();
|
|
}
|
|
},
|
|
},
|
|
methods: {
|
|
focusOnSelect() {
|
|
this.dropdownBus.$emit('focus');
|
|
},
|
|
focusOnNameInput() {
|
|
const input = this.$refs.nameInput as HTMLElement;
|
|
if (input && input.focus) {
|
|
input.focus();
|
|
}
|
|
},
|
|
onTagsBlur() {
|
|
this.prevTagIds = this.currentTagIds;
|
|
},
|
|
onTagsEsc() {
|
|
// revert last changes
|
|
this.currentTagIds = this.prevTagIds;
|
|
},
|
|
onTagsUpdate(tagIds: string[]) {
|
|
this.currentTagIds = tagIds;
|
|
},
|
|
async save(): Promise<void> {
|
|
const name = this.name.trim();
|
|
if (!name) {
|
|
this.$showMessage({
|
|
title: this.$locale.baseText('duplicateWorkflowDialog.errors.missingName.title'),
|
|
message: this.$locale.baseText('duplicateWorkflowDialog.errors.missingName.message'),
|
|
type: "error",
|
|
});
|
|
|
|
return;
|
|
}
|
|
|
|
const currentWorkflowId = this.data.id;
|
|
|
|
this.isSaving = true;
|
|
|
|
try {
|
|
let workflowToUpdate: IWorkflowDataUpdate | undefined;
|
|
if (currentWorkflowId !== PLACEHOLDER_EMPTY_WORKFLOW_ID) {
|
|
const { createdAt, updatedAt, ...workflow } = await this.restApi().getWorkflow(this.data.id);
|
|
workflowToUpdate = workflow;
|
|
}
|
|
|
|
const saved = await this.saveAsNewWorkflow({
|
|
name,
|
|
data: workflowToUpdate,
|
|
tags: this.currentTagIds,
|
|
resetWebhookUrls: true,
|
|
openInNewWindow: true,
|
|
resetNodeIds: true,
|
|
});
|
|
|
|
if (saved) {
|
|
this.closeDialog();
|
|
this.$telemetry.track('User duplicated workflow', {
|
|
old_workflow_id: currentWorkflowId,
|
|
workflow_id: this.data.id,
|
|
});
|
|
}
|
|
} catch (error) {
|
|
if (error.httpStatusCode === 403) {
|
|
error.message = this.$locale.baseText('duplicateWorkflowDialog.errors.forbidden.message');
|
|
|
|
this.$showError(
|
|
error,
|
|
this.$locale.baseText('duplicateWorkflowDialog.errors.forbidden.title'),
|
|
);
|
|
} else {
|
|
this.$showError(
|
|
error,
|
|
this.$locale.baseText('duplicateWorkflowDialog.errors.generic.title'),
|
|
);
|
|
}
|
|
} finally {
|
|
this.isSaving = false;
|
|
}
|
|
},
|
|
closeDialog(): void {
|
|
this.modalBus.$emit("close");
|
|
},
|
|
},
|
|
});
|
|
</script>
|
|
|
|
<style lang="scss" module>
|
|
.content {
|
|
> *:not(:last-child) {
|
|
margin-bottom: var(--spacing-m);
|
|
}
|
|
}
|
|
|
|
.footer {
|
|
> * {
|
|
margin-left: var(--spacing-3xs);
|
|
}
|
|
}
|
|
</style>
|