mirror of
https://github.com/Comfy-Org/ComfyUI_frontend.git
synced 2026-02-23 00:04:06 +00:00
- Fixes some options, like decrement, being off center - Fixes button being very hard to see on light themes - Moves the popover to use our fancy new reka-ui Popover component instead of primvue - Since the display control is no longer in the ValueControlPopover, loading is now actually async Most changed lines in `ValueControlPopover` are just indentation. | Before | After | | ------ | ----- | | <img width="360" alt="before" src="https://github.com/user-attachments/assets/5867d70c-a606-4092-a5f8-dd18ecda5b6f" /> | <img width="360" alt="after" src="https://github.com/user-attachments/assets/7bbaf036-77da-4c98-acb0-4b142e4a4761" />| ┆Issue is synchronized with this [Notion page](https://www.notion.so/PR-8164-Fix-padding-color-and-move-to-reka-ui-popover-2ed6d73d3650817ea314f04699f1387f) by [Unito](https://www.unito.io) --------- Co-authored-by: github-actions <github-actions@github.com>
60 lines
1.6 KiB
Vue
60 lines
1.6 KiB
Vue
<script setup lang="ts" generic="T extends WidgetValue">
|
|
import { computed, defineAsyncComponent, ref, watch } from 'vue'
|
|
import type { Component } from 'vue'
|
|
|
|
import Popover from '@/components/ui/Popover.vue'
|
|
import Button from '@/components/ui/button/Button.vue'
|
|
import type {
|
|
SimplifiedControlWidget,
|
|
WidgetValue
|
|
} from '@/types/simplifiedWidget'
|
|
|
|
const ValueControlPopover = defineAsyncComponent(
|
|
() => import('./ValueControlPopover.vue')
|
|
)
|
|
|
|
const props = defineProps<{
|
|
widget: SimplifiedControlWidget<T>
|
|
component: Component
|
|
}>()
|
|
|
|
const modelValue = defineModel<T>()
|
|
|
|
const controlModel = ref(props.widget.controlWidget.value)
|
|
|
|
const controlButtonIcon = computed(() => {
|
|
switch (controlModel.value) {
|
|
case 'increment':
|
|
return 'pi pi-plus'
|
|
case 'decrement':
|
|
return 'pi pi-minus'
|
|
case 'fixed':
|
|
return 'icon-[lucide--pencil-off]'
|
|
default:
|
|
return 'icon-[lucide--shuffle]'
|
|
}
|
|
})
|
|
|
|
watch(controlModel, props.widget.controlWidget.update)
|
|
</script>
|
|
<template>
|
|
<div class="relative grid grid-cols-subgrid">
|
|
<component :is="component" v-bind="$attrs" v-model="modelValue" :widget>
|
|
<Popover>
|
|
<template #button>
|
|
<Button
|
|
variant="textonly"
|
|
size="sm"
|
|
class="h-4 w-7 p-0 self-center rounded-xl bg-primary-background/30 hover:bg-primary-background-hover/30"
|
|
>
|
|
<i
|
|
:class="`${controlButtonIcon} text-primary-background text-xs w-full`"
|
|
/>
|
|
</Button>
|
|
</template>
|
|
<ValueControlPopover v-model="controlModel" />
|
|
</Popover>
|
|
</component>
|
|
</div>
|
|
</template>
|