mirror of
https://github.com/Comfy-Org/ComfyUI_frontend.git
synced 2026-03-10 07:30:08 +00:00
## Summary Additional fixes and updates based on testing ## Changes - **What**: - add warning to welcome screen & when sharing an app that has had all outputs removed - fix target workflow when changing mode via tab right click menu - change build app text to be conditional "edit" vs "build" depending on if an app is already defined - update empty apps sidebar tab button text to make it clearer - remove templates button from app mode (we will reintroduce this once we have app templates) - add "exit to graph" after applying default mode of node graph - update cancel button to remove item from queue if it hasn't started yet - improve scoping of jobs/outputs to the current workflow [not perfect but should be much improved] - close sidebar tabs on entering app mode - change tooltip to be under the workflow menu rather than covering the button ┆Issue is synchronized with this [Notion page](https://www.notion.so/PR-9511-feat-fix-App-mode-QA-feedback-2-31b6d73d365081d59bbbc13111100d46) by [Unito](https://www.unito.io)
46 lines
1.2 KiB
Vue
46 lines
1.2 KiB
Vue
<script setup lang="ts">
|
|
import { useQueueProgress } from '@/composables/queue/useQueueProgress'
|
|
import { useExecutionStore } from '@/stores/executionStore'
|
|
import { cn } from '@/utils/tailwindUtil'
|
|
|
|
defineOptions({ inheritAttrs: false })
|
|
|
|
const {
|
|
class: className,
|
|
overallOpacity = 1,
|
|
activeOpacity = 1,
|
|
rounded = false
|
|
} = defineProps<{
|
|
class?: string
|
|
overallOpacity?: number
|
|
activeOpacity?: number
|
|
rounded?: boolean
|
|
}>()
|
|
|
|
const { totalPercent, currentNodePercent } = useQueueProgress()
|
|
const executionStore = useExecutionStore()
|
|
</script>
|
|
<template>
|
|
<div
|
|
:class="
|
|
cn(
|
|
'relative h-2 bg-secondary-background transition-opacity',
|
|
!executionStore.isActiveWorkflowRunning && 'opacity-0',
|
|
rounded && 'rounded-sm',
|
|
className
|
|
)
|
|
"
|
|
>
|
|
<div
|
|
class="absolute inset-0 h-full bg-interface-panel-job-progress-primary transition-[width]"
|
|
:class="cn(rounded && 'rounded-sm')"
|
|
:style="{ width: `${totalPercent}%`, opacity: overallOpacity }"
|
|
/>
|
|
<div
|
|
class="absolute inset-0 h-full bg-interface-panel-job-progress-secondary transition-[width]"
|
|
:class="cn(rounded && 'rounded-sm')"
|
|
:style="{ width: `${currentNodePercent}%`, opacity: activeOpacity }"
|
|
/>
|
|
</div>
|
|
</template>
|