mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-15 17:14:05 -08:00
874c735d0a
* feat(editor): Load workflow sharedWith info only when opening share modal (#5125) * feat(editor): load workflow sharedWith info only when opening share modal * fix(editor): update workflow share modal loading state at the end of initialize fn * feat: initial recycle scroller commit * feat: prepare recycle scroller for dynamic item sizes (no-changelog) * feat: add recycle scroller with variable size support and caching * feat: integrated recycle scroller with existing resources list * feat: improve recycle scroller performance * fix: fix recycle-scroller storybook * fix: update recycle-scroller styles to fix scrollbar size * chore: undo vite config changes * chore: undo installed packages * chore: remove commented code * chore: remove vue-virtual-scroller code. * feat: update size cache updating mechanism * chore: remove console.log * fix: adjust code for e2e tests * fix: fix linting issues
284 lines
7 KiB
Vue
284 lines
7 KiB
Vue
<template>
|
|
<n8n-card :class="$style.cardLink" @click="onClick">
|
|
<template #header>
|
|
<n8n-heading
|
|
tag="h2"
|
|
bold
|
|
class="ph-no-capture"
|
|
:class="$style.cardHeading"
|
|
data-test-id="workflow-card-name"
|
|
>
|
|
{{ data.name }}
|
|
</n8n-heading>
|
|
</template>
|
|
<div :class="$style.cardDescription">
|
|
<n8n-text color="text-light" size="small">
|
|
<span v-show="data"
|
|
>{{ $locale.baseText('workflows.item.updated') }} <time-ago :date="data.updatedAt" /> |
|
|
</span>
|
|
<span v-show="data" class="mr-2xs"
|
|
>{{ $locale.baseText('workflows.item.created') }} {{ formattedCreatedAtDate }}
|
|
</span>
|
|
<span
|
|
v-if="settingsStore.areTagsEnabled && data.tags && data.tags.length > 0"
|
|
v-show="data"
|
|
>
|
|
<n8n-tags
|
|
:tags="data.tags"
|
|
:truncateAt="3"
|
|
truncate
|
|
@click="onClickTag"
|
|
@expand="onExpandTags"
|
|
data-test-id="workflow-card-tags"
|
|
/>
|
|
</span>
|
|
</n8n-text>
|
|
</div>
|
|
<template #append>
|
|
<div :class="$style.cardActions">
|
|
<enterprise-edition :features="[EnterpriseEditionFeature.Sharing]">
|
|
<n8n-badge v-if="workflowPermissions.isOwner" class="mr-xs" theme="tertiary" bold>
|
|
{{ $locale.baseText('workflows.item.owner') }}
|
|
</n8n-badge>
|
|
</enterprise-edition>
|
|
|
|
<workflow-activator
|
|
class="mr-s"
|
|
:workflow-active="data.active"
|
|
:workflow-id="data.id"
|
|
ref="activator"
|
|
data-test-id="workflow-card-activator"
|
|
/>
|
|
|
|
<n8n-action-toggle
|
|
:actions="actions"
|
|
theme="dark"
|
|
@action="onAction"
|
|
data-test-id="workflow-card-actions"
|
|
/>
|
|
</div>
|
|
</template>
|
|
</n8n-card>
|
|
</template>
|
|
|
|
<script lang="ts">
|
|
import mixins from 'vue-typed-mixins';
|
|
import { IWorkflowDb, IUser, ITag } from '@/Interface';
|
|
import {
|
|
DUPLICATE_MODAL_KEY,
|
|
EnterpriseEditionFeature,
|
|
VIEWS,
|
|
WORKFLOW_SHARE_MODAL_KEY,
|
|
} from '@/constants';
|
|
import { showMessage } from '@/mixins/showMessage';
|
|
import { getWorkflowPermissions, IPermissions } from '@/permissions';
|
|
import dateformat from 'dateformat';
|
|
import { restApi } from '@/mixins/restApi';
|
|
import WorkflowActivator from '@/components/WorkflowActivator.vue';
|
|
import Vue from 'vue';
|
|
import { mapStores } from 'pinia';
|
|
import { useUIStore } from '@/stores/ui';
|
|
import { useSettingsStore } from '@/stores/settings';
|
|
import { useUsersStore } from '@/stores/users';
|
|
import { useWorkflowsStore } from '@/stores/workflows';
|
|
|
|
export const WORKFLOW_LIST_ITEM_ACTIONS = {
|
|
OPEN: 'open',
|
|
SHARE: 'share',
|
|
DUPLICATE: 'duplicate',
|
|
DELETE: 'delete',
|
|
};
|
|
|
|
export default mixins(showMessage, restApi).extend({
|
|
data() {
|
|
return {
|
|
EnterpriseEditionFeature,
|
|
};
|
|
},
|
|
components: {
|
|
WorkflowActivator,
|
|
},
|
|
props: {
|
|
data: {
|
|
type: Object,
|
|
required: true,
|
|
default: (): IWorkflowDb => ({
|
|
id: '',
|
|
createdAt: '',
|
|
updatedAt: '',
|
|
active: false,
|
|
connections: {},
|
|
nodes: [],
|
|
name: '',
|
|
sharedWith: [],
|
|
ownedBy: {} as IUser,
|
|
versionId: '',
|
|
}),
|
|
},
|
|
readonly: {
|
|
type: Boolean,
|
|
default: false,
|
|
},
|
|
},
|
|
computed: {
|
|
...mapStores(useSettingsStore, useUIStore, useUsersStore, useWorkflowsStore),
|
|
currentUser(): IUser {
|
|
return this.usersStore.currentUser || ({} as IUser);
|
|
},
|
|
workflowPermissions(): IPermissions {
|
|
return getWorkflowPermissions(this.currentUser, this.data);
|
|
},
|
|
actions(): Array<{ label: string; value: string }> {
|
|
return [
|
|
{
|
|
label: this.$locale.baseText('workflows.item.open'),
|
|
value: WORKFLOW_LIST_ITEM_ACTIONS.OPEN,
|
|
},
|
|
{
|
|
label: this.$locale.baseText('workflows.item.share'),
|
|
value: WORKFLOW_LIST_ITEM_ACTIONS.SHARE,
|
|
},
|
|
{
|
|
label: this.$locale.baseText('workflows.item.duplicate'),
|
|
value: WORKFLOW_LIST_ITEM_ACTIONS.DUPLICATE,
|
|
},
|
|
].concat(
|
|
this.workflowPermissions.delete
|
|
? [
|
|
{
|
|
label: this.$locale.baseText('workflows.item.delete'),
|
|
value: WORKFLOW_LIST_ITEM_ACTIONS.DELETE,
|
|
},
|
|
]
|
|
: [],
|
|
);
|
|
},
|
|
formattedCreatedAtDate(): string {
|
|
const currentYear = new Date().getFullYear();
|
|
|
|
return dateformat(
|
|
this.data.createdAt,
|
|
`d mmmm${this.data.createdAt.startsWith(currentYear) ? '' : ', yyyy'}`,
|
|
);
|
|
},
|
|
},
|
|
methods: {
|
|
async onClick(event?: PointerEvent) {
|
|
if (event) {
|
|
if ((this.$refs.activator as Vue)?.$el.contains(event.target as HTMLElement)) {
|
|
return;
|
|
}
|
|
|
|
if (event.metaKey || event.ctrlKey) {
|
|
const route = this.$router.resolve({
|
|
name: VIEWS.WORKFLOW,
|
|
params: { name: this.data.id },
|
|
});
|
|
window.open(route.href, '_blank');
|
|
|
|
return;
|
|
}
|
|
}
|
|
|
|
this.$router.push({
|
|
name: VIEWS.WORKFLOW,
|
|
params: { name: this.data.id },
|
|
});
|
|
},
|
|
onClickTag(tagId: string, event: PointerEvent) {
|
|
event.stopPropagation();
|
|
|
|
this.$emit('click:tag', tagId, event);
|
|
},
|
|
onExpandTags() {
|
|
this.$emit('expand:tags');
|
|
},
|
|
async onAction(action: string) {
|
|
if (action === WORKFLOW_LIST_ITEM_ACTIONS.OPEN) {
|
|
await this.onClick();
|
|
} else if (action === WORKFLOW_LIST_ITEM_ACTIONS.DUPLICATE) {
|
|
this.uiStore.openModalWithData({
|
|
name: DUPLICATE_MODAL_KEY,
|
|
data: {
|
|
id: this.data.id,
|
|
name: this.data.name,
|
|
tags: (this.data.tags || []).map((tag: ITag) => tag.id),
|
|
},
|
|
});
|
|
} else if (action === WORKFLOW_LIST_ITEM_ACTIONS.SHARE) {
|
|
this.uiStore.openModalWithData({
|
|
name: WORKFLOW_SHARE_MODAL_KEY,
|
|
data: { id: this.data.id },
|
|
});
|
|
|
|
this.$telemetry.track('User opened sharing modal', {
|
|
workflow_id: this.data.id,
|
|
user_id_sharer: this.currentUser.id,
|
|
sub_view: this.$route.name === VIEWS.WORKFLOWS ? 'Workflows listing' : 'Workflow editor',
|
|
});
|
|
} else if (action === WORKFLOW_LIST_ITEM_ACTIONS.DELETE) {
|
|
const deleteConfirmed = await this.confirmMessage(
|
|
this.$locale.baseText('mainSidebar.confirmMessage.workflowDelete.message', {
|
|
interpolate: { workflowName: this.data.name },
|
|
}),
|
|
this.$locale.baseText('mainSidebar.confirmMessage.workflowDelete.headline'),
|
|
'warning',
|
|
this.$locale.baseText('mainSidebar.confirmMessage.workflowDelete.confirmButtonText'),
|
|
this.$locale.baseText('mainSidebar.confirmMessage.workflowDelete.cancelButtonText'),
|
|
);
|
|
|
|
if (deleteConfirmed === false) {
|
|
return;
|
|
}
|
|
|
|
try {
|
|
await this.restApi().deleteWorkflow(this.data.id);
|
|
this.workflowsStore.deleteWorkflow(this.data.id);
|
|
} catch (error) {
|
|
this.$showError(
|
|
error,
|
|
this.$locale.baseText('mainSidebar.showError.stopExecution.title'),
|
|
);
|
|
return;
|
|
}
|
|
|
|
// Reset tab title since workflow is deleted.
|
|
this.$showMessage({
|
|
title: this.$locale.baseText('mainSidebar.showMessage.handleSelect1.title'),
|
|
type: 'success',
|
|
});
|
|
}
|
|
},
|
|
},
|
|
});
|
|
</script>
|
|
|
|
<style lang="scss" module>
|
|
.cardLink {
|
|
transition: box-shadow 0.3s ease;
|
|
cursor: pointer;
|
|
|
|
&:hover {
|
|
box-shadow: 0 2px 8px rgba(#441c17, 0.1);
|
|
}
|
|
}
|
|
|
|
.cardHeading {
|
|
font-size: var(--font-size-s);
|
|
word-break: break-word;
|
|
}
|
|
|
|
.cardDescription {
|
|
min-height: 19px;
|
|
display: flex;
|
|
align-items: center;
|
|
}
|
|
|
|
.cardActions {
|
|
display: flex;
|
|
flex-direction: row;
|
|
justify-content: center;
|
|
align-items: center;
|
|
}
|
|
</style>
|