fix(ui): выровнять chrome Frame и убрать Card-оболочки
Docker images / prepare-release (push) Successful in 4s
Docker images / backend-image (push) Failing after 2m36s
Docker images / frontend-image (push) Successful in 2m22s
Docker images / notify-webhook (push) Skipped
Docker images / updater-image (push) Successful in 55s
Docker images / publish-release (push) Skipped

Подключить App Switcher, NavUser, OpsPanel и AlertDialog вместо Card-shell.

Co-authored-by: Cursor <cursoragent@cursor.com>
This commit is contained in:
Denozordec
2026-08-17 15:36:56 +07:00
co-authored by Cursor
parent d2de8d3188
commit 5f29cfaf0f
47 changed files with 1972 additions and 860 deletions
+51
View File
@@ -0,0 +1,51 @@
"use client"
import { useEffect, useState } from "react"
import {
authPortalBaseUrl,
DEFAULT_APP_SWITCHER_CONFIG,
mergeWithLocalApp,
parseAppSwitcherConfig,
type AppSwitcherConfig,
} from "@/lib/app-switcher-config"
export function useAppSwitcherConfig(): {
config: AppSwitcherConfig
isLoading: boolean
} {
const [config, setConfig] = useState<AppSwitcherConfig>(() =>
mergeWithLocalApp(DEFAULT_APP_SWITCHER_CONFIG),
)
const [isLoading, setIsLoading] = useState(Boolean(authPortalBaseUrl()))
useEffect(() => {
const base = authPortalBaseUrl()
if (!base) {
setConfig(mergeWithLocalApp(DEFAULT_APP_SWITCHER_CONFIG))
setIsLoading(false)
return
}
let cancelled = false
setIsLoading(true)
fetch(`${base}/api/v1/app-switcher`)
.then((res) => (res.ok ? res.json() : Promise.reject()))
.then((raw: unknown) => {
if (cancelled) return
const parsed = parseAppSwitcherConfig(raw)
setConfig(mergeWithLocalApp(parsed ?? DEFAULT_APP_SWITCHER_CONFIG))
})
.catch(() => {
if (!cancelled) setConfig(mergeWithLocalApp(DEFAULT_APP_SWITCHER_CONFIG))
})
.finally(() => {
if (!cancelled) setIsLoading(false)
})
return () => {
cancelled = true
}
}, [])
return { config, isLoading }
}