mirror of
https://github.com/Comfy-Org/ComfyUI_frontend.git
synced 2026-04-20 06:20:11 +00:00
## Summary Enable `better-tailwindcss/enforce-consistent-class-order` lint rule and auto-fix all 1027 violations across 263 files. Stacked on #9427. ## Changes - **What**: Sort Tailwind classes into consistent order via `eslint --fix` - Enable `enforce-consistent-class-order` as `'error'` in eslint config - Purely cosmetic reordering — no behavioral or visual changes ## Review Focus Mechanical auto-fix PR — all changes are class reordering only. This is the largest diff but lowest risk since it changes no class names, only their order. **Stack:** #9417 → #9427 → **this PR** Fixes #9300 (partial — 3 of 3 rules) ┆Issue is synchronized with this [Notion page](https://www.notion.so/PR-9428-fix-enable-enforce-consistent-class-order-tailwind-lint-rule-31a6d73d3650811c9065f5178ba3e724) by [Unito](https://www.unito.io)
130 lines
3.6 KiB
Vue
130 lines
3.6 KiB
Vue
<!-- A button that shows workspace icon (Cloud) or user avatar -->
|
|
<template>
|
|
<div>
|
|
<Button
|
|
v-if="isLoggedIn"
|
|
class="p-1 hover:bg-transparent"
|
|
variant="muted-textonly"
|
|
:aria-label="$t('g.currentUser')"
|
|
@click="popover?.toggle($event)"
|
|
>
|
|
<div
|
|
:class="
|
|
cn(
|
|
'flex items-center justify-center gap-1 rounded-full hover:bg-interface-button-hover-surface',
|
|
compact && 'size-full'
|
|
)
|
|
"
|
|
>
|
|
<Skeleton
|
|
v-if="showWorkspaceSkeleton"
|
|
shape="circle"
|
|
width="32px"
|
|
height="32px"
|
|
/>
|
|
<WorkspaceProfilePic
|
|
v-else-if="showWorkspaceIcon"
|
|
:workspace-name="workspaceName"
|
|
:class="compact && 'size-full'"
|
|
/>
|
|
<UserAvatar
|
|
v-else
|
|
:photo-url="photoURL"
|
|
:class="compact && 'size-full'"
|
|
/>
|
|
|
|
<i v-if="showArrow" class="icon-[lucide--chevron-down] size-4 px-1" />
|
|
</div>
|
|
</Button>
|
|
|
|
<Popover
|
|
ref="popover"
|
|
:show-arrow="false"
|
|
:pt="{
|
|
root: {
|
|
class: 'rounded-lg w-80'
|
|
}
|
|
}"
|
|
@show="onPopoverShow"
|
|
>
|
|
<!-- Workspace mode: workspace-aware popover (only when ready) -->
|
|
<CurrentUserPopoverWorkspace
|
|
v-if="teamWorkspacesEnabled && initState === 'ready'"
|
|
ref="workspacePopoverContent"
|
|
@close="closePopover"
|
|
/>
|
|
<!-- Legacy mode: original popover -->
|
|
<CurrentUserPopoverLegacy
|
|
v-else-if="!teamWorkspacesEnabled"
|
|
@close="closePopover"
|
|
/>
|
|
</Popover>
|
|
</div>
|
|
</template>
|
|
|
|
<script setup lang="ts">
|
|
import { storeToRefs } from 'pinia'
|
|
import Popover from 'primevue/popover'
|
|
import Skeleton from 'primevue/skeleton'
|
|
import { computed, defineAsyncComponent, ref } from 'vue'
|
|
|
|
import UserAvatar from '@/components/common/UserAvatar.vue'
|
|
import WorkspaceProfilePic from '@/platform/workspace/components/WorkspaceProfilePic.vue'
|
|
import Button from '@/components/ui/button/Button.vue'
|
|
import { useCurrentUser } from '@/composables/auth/useCurrentUser'
|
|
import { useFeatureFlags } from '@/composables/useFeatureFlags'
|
|
import { isCloud } from '@/platform/distribution/types'
|
|
import { useTeamWorkspaceStore } from '@/platform/workspace/stores/teamWorkspaceStore'
|
|
import { cn } from '@/utils/tailwindUtil'
|
|
|
|
import CurrentUserPopoverLegacy from './CurrentUserPopoverLegacy.vue'
|
|
|
|
const CurrentUserPopoverWorkspace = defineAsyncComponent(
|
|
() =>
|
|
import('../../platform/workspace/components/CurrentUserPopoverWorkspace.vue')
|
|
)
|
|
|
|
const { showArrow = true, compact = false } = defineProps<{
|
|
showArrow?: boolean
|
|
compact?: boolean
|
|
}>()
|
|
|
|
const { flags } = useFeatureFlags()
|
|
const teamWorkspacesEnabled = computed(() => flags.teamWorkspacesEnabled)
|
|
|
|
const { isLoggedIn, userPhotoUrl } = useCurrentUser()
|
|
|
|
const photoURL = computed<string | undefined>(
|
|
() => userPhotoUrl.value ?? undefined
|
|
)
|
|
|
|
const { workspaceName: teamWorkspaceName, initState } = storeToRefs(
|
|
useTeamWorkspaceStore()
|
|
)
|
|
|
|
const showWorkspaceSkeleton = computed(
|
|
() => isCloud && teamWorkspacesEnabled.value && initState.value === 'loading'
|
|
)
|
|
const showWorkspaceIcon = computed(
|
|
() => isCloud && teamWorkspacesEnabled.value && initState.value === 'ready'
|
|
)
|
|
|
|
const workspaceName = computed(() => {
|
|
if (!showWorkspaceIcon.value) return ''
|
|
return teamWorkspaceName.value
|
|
})
|
|
|
|
const popover = ref<InstanceType<typeof Popover> | null>(null)
|
|
const workspacePopoverContent = ref<{
|
|
refreshBalance: () => void
|
|
} | null>(null)
|
|
|
|
const closePopover = () => {
|
|
popover.value?.hide()
|
|
}
|
|
|
|
const onPopoverShow = () => {
|
|
workspacePopoverContent.value?.refreshBalance()
|
|
}
|
|
</script>
|