mirror of
https://github.com/n8n-io/n8n.git
synced 2025-01-10 04:17:28 -08:00
ac066fc9f3
* feat: Add workflow sharing telemetry * chore: fix linting issue * fix: fix telemetry typo
209 lines
5.2 KiB
Vue
209 lines
5.2 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 '@/mixins/workflowHelpers';
|
|
import { showMessage } from '@/mixins/showMessage';
|
|
import TagsDropdown from '@/components/TagsDropdown.vue';
|
|
import Modal from './Modal.vue';
|
|
import { restApi } from '@/mixins/restApi';
|
|
import { mapStores } from 'pinia';
|
|
import { useSettingsStore } from '@/stores/settings';
|
|
import { useWorkflowsStore } from '@/stores/workflows';
|
|
import { IWorkflowDataUpdate } from '@/Interface';
|
|
import { getWorkflowPermissions, IPermissions } from '@/permissions';
|
|
import { useUsersStore } from '@/stores/users';
|
|
|
|
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(useUsersStore, useSettingsStore, useWorkflowsStore),
|
|
workflowPermissions(): IPermissions {
|
|
return getWorkflowPermissions(
|
|
this.usersStore.currentUser,
|
|
this.workflowsStore.getWorkflowById(this.data.id),
|
|
);
|
|
},
|
|
},
|
|
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, usedCredentials, ...workflow } =
|
|
await this.restApi().getWorkflow(this.data.id);
|
|
workflowToUpdate = workflow;
|
|
|
|
this.removeForeignCredentialsFromWorkflow(
|
|
workflowToUpdate,
|
|
this.credentialsStore.allCredentials,
|
|
);
|
|
}
|
|
|
|
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,
|
|
sharing_role: this.workflowPermissions.isOwner ? 'owner' : 'sharee',
|
|
});
|
|
}
|
|
} 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>
|