mirror of
https://github.com/Comfy-Org/ComfyUI_frontend.git
synced 2026-02-08 00:50:05 +00:00
* lint: turn on type import rules setting up for verbatimModuleSyntax * lint: --fix for type imports
98 lines
2.9 KiB
Vue
98 lines
2.9 KiB
Vue
<template>
|
|
<div
|
|
class="option-container flex justify-between items-center px-2 py-0 cursor-pointer overflow-hidden w-full"
|
|
>
|
|
<div class="option-display-name font-semibold flex flex-col">
|
|
<div>
|
|
<span v-if="isBookmarked">
|
|
<i class="pi pi-bookmark-fill text-sm mr-1" />
|
|
</span>
|
|
<span v-html="highlightQuery(nodeDef.display_name, currentQuery)" />
|
|
<span> </span>
|
|
<Tag v-if="showIdName" severity="secondary">
|
|
<span v-html="highlightQuery(nodeDef.name, currentQuery)" />
|
|
</Tag>
|
|
</div>
|
|
<div
|
|
v-if="showCategory"
|
|
class="option-category font-light text-sm text-muted overflow-hidden text-ellipsis whitespace-nowrap"
|
|
>
|
|
{{ nodeDef.category.replaceAll('/', ' > ') }}
|
|
</div>
|
|
</div>
|
|
<div class="option-badges">
|
|
<Tag
|
|
v-if="nodeDef.experimental"
|
|
:value="$t('g.experimental')"
|
|
severity="primary"
|
|
/>
|
|
<Tag
|
|
v-if="nodeDef.deprecated"
|
|
:value="$t('g.deprecated')"
|
|
severity="danger"
|
|
/>
|
|
<Tag
|
|
v-if="showNodeFrequency && nodeFrequency > 0"
|
|
:value="formatNumberWithSuffix(nodeFrequency, { roundToInt: true })"
|
|
severity="secondary"
|
|
/>
|
|
<Chip
|
|
v-if="nodeDef.nodeSource.type !== NodeSourceType.Unknown"
|
|
class="text-sm font-light"
|
|
>
|
|
{{ nodeDef.nodeSource.displayText }}
|
|
</Chip>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
|
|
<script setup lang="ts">
|
|
import Chip from 'primevue/chip'
|
|
import Tag from 'primevue/tag'
|
|
import { computed } from 'vue'
|
|
|
|
import { useSettingStore } from '@/platform/settings/settingStore'
|
|
import { useNodeBookmarkStore } from '@/stores/nodeBookmarkStore'
|
|
import type { ComfyNodeDefImpl } from '@/stores/nodeDefStore'
|
|
import { useNodeFrequencyStore } from '@/stores/nodeDefStore'
|
|
import { NodeSourceType } from '@/types/nodeSource'
|
|
import { highlightQuery } from '@/utils/formatUtil'
|
|
import { formatNumberWithSuffix } from '@/utils/formatUtil'
|
|
|
|
const settingStore = useSettingStore()
|
|
const showCategory = computed(() =>
|
|
settingStore.get('Comfy.NodeSearchBoxImpl.ShowCategory')
|
|
)
|
|
const showIdName = computed(() =>
|
|
settingStore.get('Comfy.NodeSearchBoxImpl.ShowIdName')
|
|
)
|
|
const showNodeFrequency = computed(() =>
|
|
settingStore.get('Comfy.NodeSearchBoxImpl.ShowNodeFrequency')
|
|
)
|
|
const nodeFrequencyStore = useNodeFrequencyStore()
|
|
const nodeFrequency = computed(() =>
|
|
nodeFrequencyStore.getNodeFrequency(props.nodeDef)
|
|
)
|
|
|
|
const nodeBookmarkStore = useNodeBookmarkStore()
|
|
const isBookmarked = computed(() =>
|
|
nodeBookmarkStore.isBookmarked(props.nodeDef)
|
|
)
|
|
|
|
const props = defineProps<{
|
|
nodeDef: ComfyNodeDefImpl
|
|
currentQuery: string
|
|
}>()
|
|
</script>
|
|
|
|
<style scoped>
|
|
:deep(.highlight) {
|
|
background-color: var(--p-primary-color);
|
|
color: var(--p-primary-contrast-color);
|
|
font-weight: bold;
|
|
border-radius: 0.25rem;
|
|
padding: 0 0.125rem;
|
|
margin: -0.125rem 0.125rem;
|
|
}
|
|
</style>
|