n8n/packages/editor-ui/src/components/DuplicateWorkflowDialog.vue
Mutasem Aldmour 1341958aae
Open new window when duplicating (#2237)
* update duplicate to open in new window

* remove active action
2021-10-07 14:59:00 -05:00

146 lines
3.1 KiB
Vue

<template>
<Modal
:name="modalName"
:eventBus="modalBus"
@enter="save"
title="Duplicate Workflow"
:center="true"
minWidth="420px"
maxWidth="420px"
>
<template v-slot:content>
<div :class="$style.content">
<el-row>
<n8n-input
v-model="name"
ref="nameInput"
placeholder="Enter workflow name"
:maxlength="MAX_WORKFLOW_NAME_LENGTH"
/>
</el-row>
<el-row>
<TagsDropdown
:createEnabled="true"
:currentTagIds="currentTagIds"
:eventBus="dropdownBus"
@blur="onTagsBlur"
@esc="onTagsEsc"
@update="onTagsUpdate"
placeholder="Choose or create a tag"
ref="dropdown"
/>
</el-row>
</div>
</template>
<template v-slot:footer="{ close }">
<div :class="$style.footer">
<n8n-button @click="save" :loading="isSaving" label="Save" float="right" />
<n8n-button type="outline" @click="close" :disabled="isSaving" label="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 } 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";
export default mixins(showMessage, workflowHelpers).extend({
components: { TagsDropdown, Modal },
name: "DuplicateWorkflow",
props: ["dialogVisible", "modalName", "isActive"],
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({
title: "Name missing",
message: `Please enter a name.`,
type: "error",
});
return;
}
this.$data.isSaving = true;
const saved = await this.saveAsNewWorkflow({name, tags: this.currentTagIds, resetWebhookUrls: true, openInNewWindow: true});
if (saved) {
this.closeDialog();
}
this.$data.isSaving = false;
},
closeDialog(): void {
this.modalBus.$emit("close");
},
},
});
</script>
<style lang="scss" module>
.content {
> div {
margin-bottom: 15px;
}
}
.footer {
> * {
margin-left: var(--spacing-3xs);
}
}
</style>