mirror of
https://github.com/Comfy-Org/ComfyUI_frontend.git
synced 2026-02-08 09:00:05 +00:00
Co-authored-by: Chenlei Hu <hcl@comfy.org> Co-authored-by: github-actions <github-actions@github.com>
70 lines
1.9 KiB
Vue
70 lines
1.9 KiB
Vue
<template>
|
|
<DataTable
|
|
v-model:selection="selectedTemplate"
|
|
:value="templates"
|
|
striped-rows
|
|
selection-mode="single"
|
|
>
|
|
<Column field="title" :header="t('g.title')">
|
|
<template #body="slotProps">
|
|
<span :title="getTemplateTitle(slotProps.data)">{{
|
|
getTemplateTitle(slotProps.data)
|
|
}}</span>
|
|
</template>
|
|
</Column>
|
|
<Column field="description" :header="t('g.description')">
|
|
<template #body="slotProps">
|
|
<span :title="slotProps.data.description.replace(/[-_]/g, ' ')">
|
|
{{ slotProps.data.description.replace(/[-_]/g, ' ') }}
|
|
</span>
|
|
</template>
|
|
</Column>
|
|
<Column field="actions" header="" class="w-12">
|
|
<template #body="slotProps">
|
|
<Button
|
|
icon="pi pi-arrow-right"
|
|
text
|
|
rounded
|
|
size="small"
|
|
:loading="loading === slotProps.data.name"
|
|
@click="emit('loadWorkflow', slotProps.data.name)"
|
|
/>
|
|
</template>
|
|
</Column>
|
|
</DataTable>
|
|
</template>
|
|
|
|
<script setup lang="ts">
|
|
import Button from 'primevue/button'
|
|
import Column from 'primevue/column'
|
|
import DataTable from 'primevue/datatable'
|
|
import { ref } from 'vue'
|
|
|
|
import { st, t } from '@/i18n'
|
|
import type { TemplateInfo } from '@/types/workflowTemplateTypes'
|
|
import { normalizeI18nKey } from '@/utils/formatUtil'
|
|
|
|
const { sourceModule, categoryTitle, loading, templates } = defineProps<{
|
|
sourceModule: string
|
|
categoryTitle: string
|
|
loading: string | null
|
|
templates: TemplateInfo[]
|
|
}>()
|
|
|
|
const selectedTemplate = ref(null)
|
|
|
|
const emit = defineEmits<{
|
|
loadWorkflow: [name: string]
|
|
}>()
|
|
|
|
const getTemplateTitle = (template: TemplateInfo) => {
|
|
const fallback = template.title ?? template.name ?? `${sourceModule} Template`
|
|
return sourceModule === 'default'
|
|
? st(
|
|
`templateWorkflows.template.${normalizeI18nKey(categoryTitle)}.${normalizeI18nKey(template.name)}`,
|
|
fallback
|
|
)
|
|
: fallback
|
|
}
|
|
</script>
|