2021-05-29 11:31:21 -07:00
|
|
|
<template>
|
|
|
|
<Modal
|
|
|
|
:name="modalName"
|
|
|
|
:eventBus="modalBus"
|
|
|
|
@enter="save"
|
2021-12-07 08:28:10 -08:00
|
|
|
:title="$i.baseText('duplicateWorkflowDialog.duplicateWorkflow')"
|
2021-09-22 00:23:37 -07:00
|
|
|
:center="true"
|
|
|
|
minWidth="420px"
|
|
|
|
maxWidth="420px"
|
2021-05-29 11:31:21 -07:00
|
|
|
>
|
|
|
|
<template v-slot:content>
|
2021-09-22 00:23:37 -07:00
|
|
|
<div :class="$style.content">
|
2021-10-18 20:57:49 -07:00
|
|
|
<n8n-input
|
|
|
|
v-model="name"
|
|
|
|
ref="nameInput"
|
2021-12-07 08:28:10 -08:00
|
|
|
:placeholder="$i.baseText('duplicateWorkflowDialog.enterWorkflowName')"
|
2021-10-18 20:57:49 -07:00
|
|
|
:maxlength="MAX_WORKFLOW_NAME_LENGTH"
|
|
|
|
/>
|
|
|
|
<TagsDropdown
|
|
|
|
:createEnabled="true"
|
|
|
|
:currentTagIds="currentTagIds"
|
|
|
|
:eventBus="dropdownBus"
|
|
|
|
@blur="onTagsBlur"
|
|
|
|
@esc="onTagsEsc"
|
|
|
|
@update="onTagsUpdate"
|
2021-12-07 08:28:10 -08:00
|
|
|
:placeholder="$i.baseText('duplicateWorkflowDialog.chooseOrCreateATag')"
|
2021-10-18 20:57:49 -07:00
|
|
|
ref="dropdown"
|
|
|
|
/>
|
2021-09-22 00:23:37 -07:00
|
|
|
</div>
|
2021-05-29 11:31:21 -07:00
|
|
|
</template>
|
|
|
|
<template v-slot:footer="{ close }">
|
2021-08-29 04:36:17 -07:00
|
|
|
<div :class="$style.footer">
|
2021-12-07 08:28:10 -08:00
|
|
|
<n8n-button @click="save" :loading="isSaving" :label="$i.baseText('duplicateWorkflowDialog.save')" float="right" />
|
|
|
|
<n8n-button type="outline" @click="close" :disabled="isSaving" :label="$i.baseText('duplicateWorkflowDialog.cancel')" float="right" />
|
2021-08-29 04:36:17 -07:00
|
|
|
</div>
|
2021-05-29 11:31:21 -07:00
|
|
|
</template>
|
|
|
|
</Modal>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script lang="ts">
|
|
|
|
import Vue from "vue";
|
|
|
|
import mixins from "vue-typed-mixins";
|
|
|
|
|
|
|
|
import { MAX_WORKFLOW_NAME_LENGTH } 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";
|
|
|
|
|
2021-12-07 07:14:40 -08:00
|
|
|
export default mixins(showMessage, workflowHelpers).extend({
|
2021-05-29 11:31:21 -07:00
|
|
|
components: { TagsDropdown, Modal },
|
|
|
|
name: "DuplicateWorkflow",
|
2021-10-18 20:57:49 -07:00
|
|
|
props: ["modalName", "isActive"],
|
2021-05-29 11:31:21 -07:00
|
|
|
data() {
|
|
|
|
const currentTagIds = this.$store.getters[
|
|
|
|
"workflowTags"
|
|
|
|
] as string[];
|
|
|
|
|
|
|
|
return {
|
|
|
|
name: '',
|
|
|
|
currentTagIds,
|
|
|
|
isSaving: false,
|
|
|
|
modalBus: new Vue(),
|
|
|
|
dropdownBus: new Vue(),
|
|
|
|
MAX_WORKFLOW_NAME_LENGTH,
|
|
|
|
prevTagIds: currentTagIds,
|
|
|
|
};
|
|
|
|
},
|
|
|
|
async mounted() {
|
|
|
|
this.$data.name = await this.$store.dispatch('workflows/getDuplicateCurrentWorkflowName');
|
|
|
|
this.$nextTick(() => this.focusOnNameInput());
|
|
|
|
},
|
|
|
|
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({
|
2021-12-07 08:28:10 -08:00
|
|
|
title: this.$i.baseText('duplicateWorkflowDialog.showMessage.title'),
|
|
|
|
message: this.$i.baseText('duplicateWorkflowDialog.showMessage.message'),
|
2021-05-29 11:31:21 -07:00
|
|
|
type: "error",
|
|
|
|
});
|
|
|
|
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2021-10-18 20:57:49 -07:00
|
|
|
const currentWorkflowId = this.$store.getters.workflowId;
|
|
|
|
|
2021-05-29 11:31:21 -07:00
|
|
|
this.$data.isSaving = true;
|
|
|
|
|
2021-10-07 12:59:00 -07:00
|
|
|
const saved = await this.saveAsNewWorkflow({name, tags: this.currentTagIds, resetWebhookUrls: true, openInNewWindow: true});
|
2021-05-29 11:31:21 -07:00
|
|
|
|
|
|
|
if (saved) {
|
|
|
|
this.closeDialog();
|
2021-10-18 20:57:49 -07:00
|
|
|
this.$telemetry.track('User duplicated workflow', {
|
|
|
|
old_workflow_id: currentWorkflowId,
|
|
|
|
workflow_id: this.$store.getters.workflowId,
|
|
|
|
});
|
2021-05-29 11:31:21 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
this.$data.isSaving = false;
|
|
|
|
},
|
|
|
|
closeDialog(): void {
|
|
|
|
this.modalBus.$emit("close");
|
|
|
|
},
|
|
|
|
},
|
|
|
|
});
|
2021-08-21 05:11:32 -07:00
|
|
|
</script>
|
2021-08-29 04:36:17 -07:00
|
|
|
|
|
|
|
<style lang="scss" module>
|
2021-09-22 00:23:37 -07:00
|
|
|
.content {
|
2021-10-18 20:57:49 -07:00
|
|
|
> *:not(:last-child) {
|
|
|
|
margin-bottom: var(--spacing-m);
|
2021-09-22 00:23:37 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-08-29 04:36:17 -07:00
|
|
|
.footer {
|
|
|
|
> * {
|
|
|
|
margin-left: var(--spacing-3xs);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
</style>
|