mirror of
https://github.com/Comfy-Org/ComfyUI_frontend.git
synced 2026-02-03 14:54:37 +00:00
Backport of #8205 to `cloud/1.37` Automatically created by backport workflow. ┆Issue is synchronized with this [Notion page](https://www.notion.so/PR-8234-backport-cloud-1-37-feat-ui-add-shadcn-vue-Select-components-2f06d73d365081eb9437d7ef7487ca05) by [Unito](https://www.unito.io) Co-authored-by: Alexander Brown <drjkl@comfy.org> Co-authored-by: Amp <amp@ampcode.com> Co-authored-by: coderabbitai[bot] <136622811+coderabbitai[bot]@users.noreply.github.com>
74 lines
2.2 KiB
Vue
74 lines
2.2 KiB
Vue
<script setup lang="ts">
|
|
import type { SelectContentEmits, SelectContentProps } from 'reka-ui'
|
|
import {
|
|
SelectContent,
|
|
SelectPortal,
|
|
SelectViewport,
|
|
useForwardPropsEmits
|
|
} from 'reka-ui'
|
|
import type { HTMLAttributes } from 'vue'
|
|
import { computed } from 'vue'
|
|
|
|
import { cn } from '@/utils/tailwindUtil'
|
|
|
|
import SelectScrollDownButton from './SelectScrollDownButton.vue'
|
|
import SelectScrollUpButton from './SelectScrollUpButton.vue'
|
|
|
|
defineOptions({
|
|
inheritAttrs: false
|
|
})
|
|
|
|
const {
|
|
position = 'popper',
|
|
class: className,
|
|
...restProps
|
|
} = defineProps<SelectContentProps & { class?: HTMLAttributes['class'] }>()
|
|
const emits = defineEmits<SelectContentEmits>()
|
|
|
|
const delegatedProps = computed(() => ({
|
|
position,
|
|
...restProps
|
|
}))
|
|
|
|
const forwarded = useForwardPropsEmits(delegatedProps, emits)
|
|
</script>
|
|
|
|
<template>
|
|
<SelectPortal>
|
|
<SelectContent
|
|
v-bind="{ ...forwarded, ...$attrs }"
|
|
:class="
|
|
cn(
|
|
'relative z-3000 max-h-96 min-w-32 overflow-hidden',
|
|
'mt-2 rounded-lg p-2',
|
|
'bg-base-background text-base-foreground',
|
|
'border border-solid border-border-default',
|
|
'shadow-md',
|
|
'data-[state=open]:animate-in data-[state=closed]:animate-out',
|
|
'data-[state=closed]:fade-out-0 data-[state=open]:fade-in-0',
|
|
'data-[state=closed]:zoom-out-95 data-[state=open]:zoom-in-95',
|
|
'data-[side=bottom]:slide-in-from-top-2 data-[side=left]:slide-in-from-right-2',
|
|
'data-[side=right]:slide-in-from-left-2 data-[side=top]:slide-in-from-bottom-2',
|
|
position === 'popper' &&
|
|
'data-[side=bottom]:translate-y-1 data-[side=left]:-translate-x-1 data-[side=right]:translate-x-1 data-[side=top]:-translate-y-1',
|
|
className
|
|
)
|
|
"
|
|
>
|
|
<SelectScrollUpButton />
|
|
<SelectViewport
|
|
:class="
|
|
cn(
|
|
'scrollbar-custom flex flex-col gap-0',
|
|
position === 'popper' &&
|
|
'h-(--reka-select-trigger-height) w-full min-w-(--reka-select-trigger-width)'
|
|
)
|
|
"
|
|
>
|
|
<slot />
|
|
</SelectViewport>
|
|
<SelectScrollDownButton />
|
|
</SelectContent>
|
|
</SelectPortal>
|
|
</template>
|