* ✨ Added pinia support. Migrated community nodes module. * ✨ Added ui pinia store, moved some data from root store to it, updated modals to work with pinia stores * ✨ Added ui pinia store and migrated a part of the root store * ✨ Migrated `settings` store to pinia * ✨ Removing vuex store refs from router * ✨ Migrated `users` module to pinia store * ⚡ Fixing errors after sync with master * ⚡ One more error after merge * ⚡ Created `workflows` pinia store. Moved large part of root store to it. Started updating references. * ✨ Finished migrating workflows store to pinia * ⚡ Renaming some getters and actions to make more sense * ✨ Finished migrating the root store to pinia * ✨ Migrated ndv store to pinia * ⚡ Renaming main panel dimensions getter so it doesn't clash with data prop name * ✔️ Fixing lint errors * ✨ Migrated `templates` store to pinia * ✨ Migrated the `nodeTypes`store * ⚡ Removed unused pieces of code and oold vuex modules * ✨ Adding vuex calls to pinia store, fi xing wrong references * 💄 Removing leftover $store refs * ⚡ Added legacy getters and mutations to store to support webhooks * ⚡ Added missing front-end hooks, updated vuex state subscriptions to pinia * ✔️ Fixing linting errors * ⚡ Removing vue composition api plugin * ⚡ Fixing main sidebar state when loading node view * 🐛 Fixing an error when activating workflows * 🐛 Fixing isses with workflow settings and executions auto-refresh * 🐛 Removing duplicate listeners which cause import error * 🐛 Fixing route authentication * ⚡ Updating freshly pulled $store refs * Adding deleted const * ⚡ Updating store references in ee features. Reseting NodeView credentials update flag when resetting workspace * ⚡ Adding return type to email submission modal * ⚡ Making NodeView only react to paste event when active * 🐛 Fixing signup view errors * 👌 Addressing PR review comments * 👌 Addressing new PR comments * 👌 Updating invite id logic in signup view
164 lines
4.0 KiB
Vue
164 lines
4.0 KiB
Vue
<template>
|
|
<Modal
|
|
:name="modalName"
|
|
:eventBus="modalBus"
|
|
@enter="save"
|
|
:title="$locale.baseText('duplicateWorkflowDialog.duplicateWorkflow')"
|
|
:center="true"
|
|
width="420px"
|
|
>
|
|
<template v-slot: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 v-slot: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 } 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";
|
|
|
|
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.showMessage.title'),
|
|
message: this.$locale.baseText('duplicateWorkflowDialog.showMessage.message'),
|
|
type: "error",
|
|
});
|
|
|
|
return;
|
|
}
|
|
|
|
const currentWorkflowId = this.data.id;
|
|
|
|
this.isSaving = true;
|
|
|
|
const { createdAt, updatedAt, ...workflow } = await this.restApi().getWorkflow(this.data.id);
|
|
const saved = await this.saveAsNewWorkflow({
|
|
name,
|
|
data: workflow,
|
|
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,
|
|
});
|
|
}
|
|
|
|
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>
|