mirror of
https://github.com/Comfy-Org/ComfyUI_frontend.git
synced 2026-02-01 13:59:54 +00:00
Co-authored-by: Amp <amp@ampcode.com> Amp-Thread-ID: https://ampcode.com/threads/T-019bd8c8-bce1-70bc-a125-baf2a1503ee8
144 lines
3.3 KiB
Vue
144 lines
3.3 KiB
Vue
<template>
|
|
<Button
|
|
v-tooltip="{
|
|
value: computedTooltip,
|
|
showDelay: 300,
|
|
hideDelay: 300
|
|
}"
|
|
:class="
|
|
cn(
|
|
'side-bar-button cursor-pointer border-none',
|
|
selected && 'side-bar-button-selected'
|
|
)
|
|
"
|
|
variant="muted-textonly"
|
|
:aria-label="computedTooltip"
|
|
@click="emit('click', $event)"
|
|
>
|
|
<div class="side-bar-button-content">
|
|
<slot name="icon">
|
|
<OverlayBadge
|
|
v-if="shouldShowBadge"
|
|
:value="overlayValue"
|
|
>
|
|
<i
|
|
v-if="typeof icon === 'string'"
|
|
:class="icon + ' side-bar-button-icon'"
|
|
/>
|
|
<component
|
|
:is="icon"
|
|
v-else
|
|
class="side-bar-button-icon"
|
|
/>
|
|
</OverlayBadge>
|
|
<i
|
|
v-else-if="typeof icon === 'string'"
|
|
:class="icon + ' side-bar-button-icon'"
|
|
/>
|
|
<component
|
|
:is="icon"
|
|
v-else-if="typeof icon === 'object'"
|
|
class="side-bar-button-icon"
|
|
/>
|
|
</slot>
|
|
<span
|
|
v-if="label && !isSmall"
|
|
class="side-bar-button-label"
|
|
>{{
|
|
t(label)
|
|
}}</span>
|
|
</div>
|
|
</Button>
|
|
</template>
|
|
|
|
<script setup lang="ts">
|
|
import OverlayBadge from 'primevue/overlaybadge'
|
|
import { computed } from 'vue'
|
|
import type { Component } from 'vue'
|
|
import { useI18n } from 'vue-i18n'
|
|
|
|
import Button from '@/components/ui/button/Button.vue'
|
|
import { cn } from '@/utils/tailwindUtil'
|
|
|
|
const { t } = useI18n()
|
|
const {
|
|
icon = '',
|
|
selected = false,
|
|
tooltip = '',
|
|
tooltipSuffix = '',
|
|
iconBadge = '',
|
|
label = '',
|
|
isSmall = false
|
|
} = defineProps<{
|
|
icon?: string | Component
|
|
selected?: boolean
|
|
tooltip?: string
|
|
tooltipSuffix?: string
|
|
iconBadge?: string | (() => string | null)
|
|
label?: string
|
|
isSmall?: boolean
|
|
}>()
|
|
|
|
const emit = defineEmits<{
|
|
(e: 'click', event: MouseEvent): void
|
|
}>()
|
|
const overlayValue = computed(() =>
|
|
typeof iconBadge === 'function' ? (iconBadge() ?? '') : iconBadge
|
|
)
|
|
const shouldShowBadge = computed(() => !!overlayValue.value)
|
|
const computedTooltip = computed(() => t(tooltip) + tooltipSuffix)
|
|
</script>
|
|
|
|
<style>
|
|
.side-bar-button-icon {
|
|
font-size: var(--sidebar-icon-size) !important;
|
|
}
|
|
|
|
.side-bar-button-selected {
|
|
background-color: var(--interface-panel-selected-surface);
|
|
color: var(--content-hover-fg);
|
|
}
|
|
.side-bar-button:hover {
|
|
background-color: var(--interface-panel-hover-surface);
|
|
color: var(--content-hover-fg);
|
|
}
|
|
|
|
.side-bar-button-selected .side-bar-button-icon {
|
|
font-size: var(--sidebar-icon-size) !important;
|
|
}
|
|
</style>
|
|
|
|
<style scoped>
|
|
@reference '../../assets/css/style.css';
|
|
|
|
.side-bar-button {
|
|
width: var(--sidebar-width);
|
|
height: var(--sidebar-item-height);
|
|
border-radius: 0;
|
|
flex-shrink: 0;
|
|
}
|
|
|
|
.side-tool-bar-end .side-bar-button {
|
|
height: var(--sidebar-width);
|
|
}
|
|
|
|
.side-bar-button-content {
|
|
@apply flex flex-col items-center gap-2;
|
|
}
|
|
|
|
.side-bar-button-label {
|
|
@apply text-center text-[10px];
|
|
line-height: 1;
|
|
}
|
|
|
|
.comfyui-body-left .side-bar-button.side-bar-button-selected,
|
|
.comfyui-body-left .side-bar-button.side-bar-button-selected:hover {
|
|
border-left: 4px solid var(--p-button-text-primary-color);
|
|
}
|
|
|
|
.comfyui-body-right .side-bar-button.side-bar-button-selected,
|
|
.comfyui-body-right .side-bar-button.side-bar-button-selected:hover {
|
|
border-right: 4px solid var(--p-button-text-primary-color);
|
|
}
|
|
</style>
|