mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-17 01:56:46 +00:00
123 lines
3.4 KiB
Vue
123 lines
3.4 KiB
Vue
<script setup lang="ts">
|
|
import TemplateDetailsBlock from '@/components/TemplateDetailsBlock.vue';
|
|
import NodeIcon from '@/components/NodeIcon.vue';
|
|
import { filterTemplateNodes } from '@/utils/nodeTypesUtils';
|
|
import { abbreviateNumber } from '@/utils/typesUtils';
|
|
import type {
|
|
ITemplatesCollection,
|
|
ITemplatesCollectionFull,
|
|
ITemplatesNode,
|
|
ITemplatesWorkflow,
|
|
} from '@n8n/rest-api-client/api/templates';
|
|
import type { ITag } from '@n8n/rest-api-client/api/tags';
|
|
import { useTemplatesStore } from '@/stores/templates.store';
|
|
import TimeAgo from '@/components/TimeAgo.vue';
|
|
import { isFullTemplatesCollection, isTemplatesWorkflow } from '@/utils/templates/typeGuards';
|
|
import { useRouter } from 'vue-router';
|
|
import { useI18n } from '@n8n/i18n';
|
|
import { computed } from 'vue';
|
|
|
|
const props = defineProps<{
|
|
template: ITemplatesWorkflow | ITemplatesCollection | ITemplatesCollectionFull | null;
|
|
blockTitle: string;
|
|
loading: boolean;
|
|
}>();
|
|
|
|
const router = useRouter();
|
|
const i18n = useI18n();
|
|
|
|
const templatesStore = useTemplatesStore();
|
|
|
|
const categoriesAsTags = computed<ITag[]>(() =>
|
|
props.template && 'categories' in props.template
|
|
? props.template.categories.map((category) => ({
|
|
id: `${category.id}`,
|
|
name: category.name,
|
|
}))
|
|
: [],
|
|
);
|
|
|
|
const redirectToCategory = (id: string) => {
|
|
templatesStore.resetSessionId();
|
|
void router.push(`/templates?categories=${id}`);
|
|
};
|
|
|
|
const redirectToSearchPage = (node: ITemplatesNode) => {
|
|
templatesStore.resetSessionId();
|
|
void router.push(`/templates?search=${node.displayName}`);
|
|
};
|
|
</script>
|
|
|
|
<template>
|
|
<div>
|
|
<n8n-loading :loading="loading" :rows="5" variant="p" />
|
|
|
|
<TemplateDetailsBlock
|
|
v-if="!loading && template && template.nodes.length > 0"
|
|
:title="blockTitle"
|
|
>
|
|
<div :class="$style.icons">
|
|
<div
|
|
v-for="node in filterTemplateNodes(template.nodes)"
|
|
:key="node.name"
|
|
:class="$style.icon"
|
|
>
|
|
<NodeIcon
|
|
:node-type="node"
|
|
:size="24"
|
|
:show-tooltip="true"
|
|
@click="redirectToSearchPage(node)"
|
|
/>
|
|
</div>
|
|
</div>
|
|
</TemplateDetailsBlock>
|
|
|
|
<TemplateDetailsBlock
|
|
v-if="!loading && isFullTemplatesCollection(template) && categoriesAsTags.length > 0"
|
|
:title="i18n.baseText('template.details.categories')"
|
|
>
|
|
<n8n-tags :tags="categoriesAsTags" @click:tag="redirectToCategory" />
|
|
</TemplateDetailsBlock>
|
|
|
|
<TemplateDetailsBlock
|
|
v-if="!loading && template"
|
|
:title="i18n.baseText('template.details.details')"
|
|
>
|
|
<div :class="$style.text">
|
|
<n8n-text v-if="isTemplatesWorkflow(template)" size="small" color="text-base">
|
|
{{ i18n.baseText('template.details.created') }}
|
|
<TimeAgo :date="template.createdAt" />
|
|
{{ i18n.baseText('template.details.by') }}
|
|
{{ template.user ? template.user.username : 'n8n team' }}
|
|
</n8n-text>
|
|
</div>
|
|
<div :class="$style.text">
|
|
<n8n-text
|
|
v-if="isTemplatesWorkflow(template) && template.totalViews !== 0"
|
|
size="small"
|
|
color="text-base"
|
|
>
|
|
{{ i18n.baseText('template.details.viewed') }}
|
|
{{ abbreviateNumber(template.totalViews) }}
|
|
{{ i18n.baseText('template.details.times') }}
|
|
</n8n-text>
|
|
</div>
|
|
</TemplateDetailsBlock>
|
|
</div>
|
|
</template>
|
|
|
|
<style lang="scss" module>
|
|
.icons {
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
}
|
|
.icon {
|
|
margin-right: var(--spacing-xs);
|
|
margin-bottom: var(--spacing-xs);
|
|
cursor: pointer;
|
|
}
|
|
.text {
|
|
padding-bottom: var(--spacing-xs);
|
|
}
|
|
</style>
|