mirror of
https://github.com/Comfy-Org/ComfyUI_frontend.git
synced 2026-03-14 09:27:41 +00:00
34 lines
914 B
Vue
34 lines
914 B
Vue
<template>
|
|
<div
|
|
v-if="shouldShow"
|
|
aria-hidden="true"
|
|
class="pointer-events-none absolute inset-x-0 bottom-0 h-[3px]"
|
|
>
|
|
<div
|
|
class="pointer-events-none absolute inset-y-0 left-0 h-full bg-interface-panel-job-progress-primary transition-[width]"
|
|
:style="{ width: `${totalPercent}%` }"
|
|
/>
|
|
<div
|
|
class="pointer-events-none absolute inset-y-0 left-0 h-full bg-interface-panel-job-progress-secondary transition-[width]"
|
|
:style="{ width: `${currentNodePercent}%` }"
|
|
/>
|
|
</div>
|
|
</template>
|
|
|
|
<script setup lang="ts">
|
|
import { computed } from 'vue'
|
|
|
|
import { useQueueProgress } from '@/composables/queue/useQueueProgress'
|
|
|
|
const props = defineProps<{
|
|
hidden?: boolean
|
|
}>()
|
|
|
|
const { totalPercent, currentNodePercent } = useQueueProgress()
|
|
|
|
const shouldShow = computed(
|
|
() =>
|
|
!props.hidden && (totalPercent.value > 0 || currentNodePercent.value > 0)
|
|
)
|
|
</script>
|