mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-20 11:22:15 +00:00
* feat(editor): Load fixed template list as experiment Signed-off-by: Oleg Ivaniv <me@olegivaniv.com> * Improve templates loading Signed-off-by: Oleg Ivaniv <me@olegivaniv.com> * get rid of endResult message Signed-off-by: Oleg Ivaniv <me@olegivaniv.com> * Do not lazy-load when fixedListExperiment Signed-off-by: Oleg Ivaniv <me@olegivaniv.com> --------- Signed-off-by: Oleg Ivaniv <me@olegivaniv.com>
109 lines
3.0 KiB
Vue
109 lines
3.0 KiB
Vue
<template>
|
|
<div>
|
|
<n8n-loading :loading="loading" :rows="5" variant="p" />
|
|
|
|
<template-details-block v-if="!loading && 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
|
|
:nodeType="node"
|
|
:size="24"
|
|
:showTooltip="true"
|
|
@click="redirectToSearchPage(node)"
|
|
/>
|
|
</div>
|
|
</div>
|
|
</template-details-block>
|
|
|
|
<template-details-block
|
|
v-if="!loading && template?.categories.length > 0"
|
|
:title="$locale.baseText('template.details.categories')"
|
|
>
|
|
<n8n-tags :tags="template.categories" @click="redirectToCategory" />
|
|
</template-details-block>
|
|
|
|
<template-details-block v-if="!loading" :title="$locale.baseText('template.details.details')">
|
|
<div :class="$style.text">
|
|
<n8n-text size="small" color="text-base">
|
|
{{ $locale.baseText('template.details.created') }}
|
|
<TimeAgo :date="template.createdAt" />
|
|
<span>{{ $locale.baseText('template.details.by') }}</span>
|
|
<span v-if="template.user"> {{ template.user.username }}</span>
|
|
<span v-else> n8n team</span>
|
|
</n8n-text>
|
|
</div>
|
|
<div :class="$style.text">
|
|
<n8n-text v-if="template.totalViews !== 0" size="small" color="text-base">
|
|
{{ $locale.baseText('template.details.viewed') }}
|
|
{{ abbreviateNumber(template.totalViews) }}
|
|
{{ $locale.baseText('template.details.times') }}
|
|
</n8n-text>
|
|
</div>
|
|
</template-details-block>
|
|
</div>
|
|
</template>
|
|
<script lang="ts">
|
|
import { defineComponent } from 'vue';
|
|
import type { PropType } from 'vue';
|
|
import TemplateDetailsBlock from '@/components/TemplateDetailsBlock.vue';
|
|
import NodeIcon from '@/components/NodeIcon.vue';
|
|
import { abbreviateNumber, filterTemplateNodes } from '@/utils';
|
|
import type { ITemplatesNode, ITemplatesWorkflow, ITemplatesWorkflowFull } from '@/Interface';
|
|
import { mapStores } from 'pinia';
|
|
import { useTemplatesStore } from '@/stores/templates.store';
|
|
import TimeAgo from '@/components/TimeAgo.vue';
|
|
|
|
export default defineComponent({
|
|
name: 'TemplateDetails',
|
|
props: {
|
|
blockTitle: {
|
|
type: String,
|
|
},
|
|
loading: {
|
|
type: Boolean,
|
|
},
|
|
template: {
|
|
type: Object as PropType<ITemplatesWorkflow | ITemplatesWorkflowFull>,
|
|
},
|
|
},
|
|
components: {
|
|
NodeIcon,
|
|
TemplateDetailsBlock,
|
|
TimeAgo,
|
|
},
|
|
computed: {
|
|
...mapStores(useTemplatesStore),
|
|
},
|
|
methods: {
|
|
abbreviateNumber,
|
|
filterTemplateNodes,
|
|
redirectToCategory(id: string) {
|
|
this.templatesStore.resetSessionId();
|
|
void this.$router.push(`/templates?categories=${id}`);
|
|
},
|
|
redirectToSearchPage(node: ITemplatesNode) {
|
|
this.templatesStore.resetSessionId();
|
|
void this.$router.push(`/templates?search=${node.displayName}`);
|
|
},
|
|
},
|
|
});
|
|
</script>
|
|
<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>
|