mirror of
https://github.com/Comfy-Org/ComfyUI_frontend.git
synced 2026-02-28 02:34:10 +00:00
Example with forcibly modified types for testing <img width="736" height="425" alt="image" src="https://github.com/user-attachments/assets/e885a7d0-5946-41be-b9b4-b9b195f50c92" /> Vue mode doesn't currently seem to display optional inputs, but the SVGs here include support for being made hollow with `--shape: url(#hollow)` <img width="765" height="360" alt="image" src="https://github.com/user-attachments/assets/0ea57179-99a4-4001-aa18-856e172287c0" /> ┆Issue is synchronized with this [Notion page](https://www.notion.so/PR-7457-Support-display-of-multitype-slots-2c86d73d3650818594afd988e73827e3) by [Unito](https://www.unito.io)
145 lines
4.1 KiB
Vue
145 lines
4.1 KiB
Vue
<template>
|
||
<div v-if="renderError" class="node-error p-1 text-xs text-red-500">⚠️</div>
|
||
<div
|
||
v-else
|
||
v-tooltip.left="tooltipConfig"
|
||
:class="
|
||
cn(
|
||
'lg-slot lg-slot--input flex items-center group rounded-r-lg m-0',
|
||
'cursor-crosshair',
|
||
props.dotOnly ? 'lg-slot--dot-only' : 'pr-6',
|
||
{
|
||
'lg-slot--connected': props.connected,
|
||
'lg-slot--compatible': props.compatible,
|
||
'opacity-40': shouldDim
|
||
},
|
||
props.socketless && 'pointer-events-none invisible'
|
||
)
|
||
"
|
||
>
|
||
<!-- Connection Dot -->
|
||
<SlotConnectionDot
|
||
ref="connectionDotRef"
|
||
:class="
|
||
cn(
|
||
'-translate-x-1/2 w-3',
|
||
hasSlotError && 'ring-2 ring-error ring-offset-0 rounded-full'
|
||
)
|
||
"
|
||
:slot-data
|
||
@click="onClick"
|
||
@dblclick="onDoubleClick"
|
||
@pointerdown="onPointerDown"
|
||
/>
|
||
|
||
<!-- Slot Name -->
|
||
<div class="h-full flex items-center min-w-0">
|
||
<span
|
||
v-if="!dotOnly"
|
||
:class="
|
||
cn(
|
||
'truncate text-node-component-slot-text',
|
||
hasSlotError && 'text-error font-medium'
|
||
)
|
||
"
|
||
>
|
||
{{ slotData.localized_name || slotData.name || `Input ${index}` }}
|
||
</span>
|
||
</div>
|
||
</div>
|
||
</template>
|
||
|
||
<script setup lang="ts">
|
||
import { computed, onErrorCaptured, ref, watchEffect } from 'vue'
|
||
import type { ComponentPublicInstance } from 'vue'
|
||
|
||
import { useErrorHandling } from '@/composables/useErrorHandling'
|
||
import type { INodeSlot } from '@/lib/litegraph/src/litegraph'
|
||
import { useSlotLinkDragUIState } from '@/renderer/core/canvas/links/slotLinkDragUIState'
|
||
import { getSlotKey } from '@/renderer/core/layout/slots/slotIdentifier'
|
||
import { useNodeTooltips } from '@/renderer/extensions/vueNodes/composables/useNodeTooltips'
|
||
import { useSlotElementTracking } from '@/renderer/extensions/vueNodes/composables/useSlotElementTracking'
|
||
import { useSlotLinkInteraction } from '@/renderer/extensions/vueNodes/composables/useSlotLinkInteraction'
|
||
import { useExecutionStore } from '@/stores/executionStore'
|
||
import { cn } from '@/utils/tailwindUtil'
|
||
|
||
import SlotConnectionDot from './SlotConnectionDot.vue'
|
||
|
||
interface InputSlotProps {
|
||
nodeType?: string
|
||
nodeId?: string
|
||
slotData: INodeSlot
|
||
index: number
|
||
connected?: boolean
|
||
compatible?: boolean
|
||
dotOnly?: boolean
|
||
socketless?: boolean
|
||
}
|
||
|
||
const props = defineProps<InputSlotProps>()
|
||
|
||
const executionStore = useExecutionStore()
|
||
|
||
const hasSlotError = computed(() => {
|
||
const nodeErrors = executionStore.lastNodeErrors?.[props.nodeId ?? '']
|
||
if (!nodeErrors) return false
|
||
|
||
const slotName = props.slotData.name
|
||
return nodeErrors.errors.some(
|
||
(error) => error.extra_info?.input_name === slotName
|
||
)
|
||
})
|
||
|
||
const renderError = ref<string | null>(null)
|
||
const { toastErrorHandler } = useErrorHandling()
|
||
|
||
const { getInputSlotTooltip, createTooltipConfig } = useNodeTooltips(
|
||
props.nodeType || ''
|
||
)
|
||
|
||
const tooltipConfig = computed(() => {
|
||
const slotName = props.slotData.localized_name || props.slotData.name || ''
|
||
const tooltipText = getInputSlotTooltip(slotName)
|
||
const fallbackText = tooltipText || `Input: ${slotName}`
|
||
return createTooltipConfig(fallbackText)
|
||
})
|
||
|
||
onErrorCaptured((error) => {
|
||
renderError.value = error.message
|
||
toastErrorHandler(error)
|
||
return false
|
||
})
|
||
|
||
const { state: dragState } = useSlotLinkDragUIState()
|
||
const slotKey = computed(() =>
|
||
getSlotKey(props.nodeId ?? '', props.index, true)
|
||
)
|
||
const shouldDim = computed(() => {
|
||
if (!dragState.active) return false
|
||
return !dragState.compatible.get(slotKey.value)
|
||
})
|
||
|
||
const connectionDotRef = ref<ComponentPublicInstance<{
|
||
slotElRef: HTMLElement | undefined
|
||
}> | null>(null)
|
||
const slotElRef = ref<HTMLElement | null>(null)
|
||
|
||
watchEffect(() => {
|
||
const el = connectionDotRef.value?.slotElRef
|
||
slotElRef.value = el || null
|
||
})
|
||
|
||
useSlotElementTracking({
|
||
nodeId: props.nodeId ?? '',
|
||
index: props.index,
|
||
type: 'input',
|
||
element: slotElRef
|
||
})
|
||
|
||
const { onClick, onDoubleClick, onPointerDown } = useSlotLinkInteraction({
|
||
nodeId: props.nodeId ?? '',
|
||
index: props.index,
|
||
type: 'input'
|
||
})
|
||
</script>
|