Files
new-api/web/default/src/features/models/components/dialogs/create-deployment-drawer.tsx
T
8b2b03d276 feat(web/default): unified UI overhaul — Base UI migration, theme presets, rankings dashboard, and table toolbar refactor (#4633)
* 🎨 feat(web/default): add shadcn-style theme presets, radius prefs, and fix selection badges

Integrate the qn-platform–style OKLCH color system into the default frontend while keeping the existing blue-tinted dark tokens for the default theme. Add [data-theme-preset] palettes for seven named presets plus the default zinc-like scale, define [data-theme-radius] overrides so user radius beats preset --radius, and align the Tailwind @custom-variant dark helper with .dark usage.

Introduce ThemeCustomizationProvider to own preset and radius state, persist choices in cookies (theme-preset, theme-radius), and sync data-theme-preset / data-theme-radius on <html>. Wrap the tree in main.tsx.

Extend ConfigDrawer with theme preset swatches (scoped data-theme-preset) and radius previews wired to context; refactor swatch/card markup so selected CircleCheck badges sit outside clipped rows (remove outer overflow-hidden that hid the centered checkmark).

Add i18n keys for preset names, radius, and accessibility labels across en, zh, fr, ja, ru, vi.

* 🎨 fix(web): align segmented controls with theme radius tokens

- Replace hard-coded inner pill radii (rounded-[5px]) on dashboard chart
  toolbars with radius-md so the active state follows --radius when users
  change Radius in Theme Settings.
- Use nested radii consistent with TabsList/TabsTrigger: outer
  rounded-lg (var(--radius)) and inner rounded-md (calc(var(--radius) - 2px))
  so the track and active thumb stay concentric at small scales (e.g.
  0.3rem) instead of a squared “focus” block inside a rounded shell.
- Apply the same pattern to pricing SegmentedControl and the segmented
  groups in consumption-distribution-chart, model-charts, and user-charts.

Verified: bun run typecheck (web/default)

*  feat(pricing): enrich model details with uptime sparkline and API documentation

Add a compact 30-day uptime sparkline (OpenRouter-style bars + aggregate %) with
per-day tooltips, surface it in a status row under quick stats and in the
per-group performance table, and extend mock data so uptime series are stable
and optionally scoped by group.

Introduce an API tab with Shiki-highlighted code samples (cURL, Python,
TypeScript, JavaScript), endpoint-type switching, authentication guidance, a
supported-parameters table, and mock per-group RPM/TPM/RPD limits. Infer
vendor, tokenizer, license, and data-retention hints for a provider & data
privacy card on the Overview tab (capabilities/modalities stay with model
identity; rate limits stay with the API tab).

Update i18n for all new user-facing strings across en, zh, fr, ja, ru, and vi.

* 🏆 feat(rankings): add comprehensive rankings dashboard

Add a mock-data powered rankings experience with period tabs, model, app, and vendor leaderboards, market share and history charts, movers, new releases, and per-category sections while backend analytics are pending.

Link ranked models to pricing details and ranked vendors to filtered pricing results, and include localized copy for all supported frontend locales.

* fix(theme): correct theme preset selection state

- update Base UI Radio selectors to use data-checked/data-unchecked states.
- fix unchecked theme options still showing selected indicators.
- isolate the default theme preview tokens to prevent preset changes from leaking into it.

* fix(setup): correct usage mode radio state

- use Base UI data-checked/data-unchecked states for RadioGroup styling.
- hide radio indicators when options are unchecked to avoid setup page display issues.
- drive usage mode card and icon selection styles from Base UI state.

* fix(auth): submit sign-in and sign-up forms

* 🎨 refactor: Align default theme with shadcn Base Nova and prune legacy customization

Migrate shadcn UI to Base UI primitives via CLI (`base-nova` / `components.json`)
and reinstall full component registry with `--overwrite`, including Hugeicons-backed
widgets and newly added registry components.

- Remove custom multi-preset/theme-radius system (`ThemeCustomizationProvider`, cookies,
  preset UI from config drawer); rely on official semantic CSS tokens + light/dark only.
- Replace `theme.css` with shadcn’s documented neutral `:root`/`.dark` palette and
  `@theme inline` mappings (plus skeleton token vars for existing shimmer usage).
- Update global styles for Base UI: collapsible animation uses `--collapsible-panel-height`;
  clarify scroll-lock override comment.

Application compatibility:
- Keep minimal shims where app code diverged from official APIs (popover collision props,
  combobox legacy `options` callers, Spinner prop typing).
- Switch interactive styling from Radix-era `data-state` / `--radix-*` selectors to Base UI
  semantics (`data-open`, `data-popup-open`, `data-panel-open`, `--anchor-width`, etc.)

Tooling / docs / build:
- Rename Rsbuild vendor chunk grouping to `@base-ui` + transitive `@radix-ui`.
- Refresh AGENTS.md / CLAUDE.md / classic→default sync skill for Base UI stack.
- Bump `package.json` / lockfile for shadcn-postinstall deps (Hugeicons, chart stack, themes, etc.)

Verified: `bun run typecheck` passes.

Note: `bun run lint` still reports pre-existing hooks rule violations elsewhere;
not addressed in this change.

* 🎨 chore(web/default): unify table toolbar, relocate usage stats, refine filters

- Refactor DataTableToolbar to a single wrapping flex row with a
  right-aligned action cluster (Reset / Search / View / Expand) for a
  cleaner Ant Design Pro–style filter bar; remove the dedicated stats row
  and the toolbar `stats` prop.
- Move Common Logs summary badges (Usage / RPM / TPM) and the sensitive-
  data visibility toggle into the page header via CommonLogsHeaderActions
  and SectionPageLayout.Actions so the toolbar stays focused on filters.
- Slim CommonLogsFilterBar props (no stats / preActions eye control).
- Improve CompactDateTimeRangePicker: show minute-precision labels on the
  trigger (seconds omitted; aligns with datetime-local inputs); widen the
  trigger on sm+ breakpoints so the full range is visible without truncation;
  apply the same width in task logs filters.
- Simplify DataTableViewOptions: text-only “View” trigger, no sliders icon.
- Earlier layout tweak: extra top padding on SectionPageLayout scroll
  content so control focus rings are not clipped by overflow.

* feat(web/default): Base UI migration and component foundation

Migrate from Radix UI to Base UI, rewrite core UI primitives,
update dependencies (recharts, date-fns, next-themes), add
shadcn agent skill documentation, and refresh AI element components.

This is the foundational work from the v2/localmain lineage that
was not covered by the individual feature commits above.

---------

Co-authored-by: t0ng7u <dev@aiass.cc>
Co-authored-by: QuentinHsu <xuquentinyang@gmail.com>
2026-05-06 12:39:36 +08:00

748 lines
25 KiB
TypeScript
Vendored

import { useEffect, useMemo } from 'react'
import { z } from 'zod'
import { useForm } from 'react-hook-form'
import { zodResolver } from '@hookform/resolvers/zod'
import { useMutation, useQuery, useQueryClient } from '@tanstack/react-query'
import { useTranslation } from 'react-i18next'
import { toast } from 'sonner'
import { Button } from '@/components/ui/button'
import {
Form,
FormControl,
FormField,
FormItem,
FormLabel,
FormMessage,
} from '@/components/ui/form'
import { Input } from '@/components/ui/input'
import {
Select,
SelectContent,
SelectItem,
SelectTrigger,
SelectValue,
} from '@/components/ui/select'
import {
Sheet,
SheetClose,
SheetContent,
SheetDescription,
SheetFooter,
SheetHeader,
SheetTitle,
} from '@/components/ui/sheet'
import { Textarea } from '@/components/ui/textarea'
import { MultiSelect } from '@/components/multi-select'
import {
checkClusterNameAvailability,
createDeployment,
estimatePrice,
getAvailableReplicas,
getHardwareTypes,
} from '../../api'
import { deploymentsQueryKeys } from '../../lib'
const BUILTIN_IMAGE = 'ollama/ollama:latest'
const DEFAULT_TRAFFIC_PORT = 11434
const schema = z.object({
resource_private_name: z.string().min(1),
image_url: z.string().min(1),
traffic_port: z.coerce.number().int().min(1).max(65535),
hardware_id: z.string().min(1),
gpus_per_container: z.coerce.number().int().min(1),
location_ids: z.array(z.string()).min(1),
replica_count: z.coerce.number().int().min(1),
duration_hours: z.coerce.number().int().min(1),
// Advanced
env_json: z.string().optional(),
secret_env_json: z.string().optional(),
entrypoint: z.string().optional(),
args: z.string().optional(),
registry_username: z.string().optional(),
registry_secret: z.string().optional(),
currency: z.string().optional(),
})
// NOTE: react-hook-form resolver uses the schema input type (coerce input is unknown)
type FormValues = z.input<typeof schema>
function toNumber(value: unknown, fallback: number) {
const n = typeof value === 'number' ? value : Number(value)
return Number.isFinite(n) ? n : fallback
}
export function CreateDeploymentDrawer({
open,
onOpenChange,
}: {
open: boolean
onOpenChange: (open: boolean) => void
}) {
const { t } = useTranslation()
const queryClient = useQueryClient()
const form = useForm<FormValues>({
resolver: zodResolver(schema),
defaultValues: {
resource_private_name: '',
image_url: BUILTIN_IMAGE,
traffic_port: DEFAULT_TRAFFIC_PORT,
hardware_id: '',
gpus_per_container: 1,
location_ids: [],
replica_count: 1,
duration_hours: 1,
env_json: '',
secret_env_json: '',
entrypoint: '',
args: '',
registry_username: '',
registry_secret: '',
currency: 'usdc',
},
})
const hardwareId = form.watch('hardware_id')
const gpuCount = toNumber(form.watch('gpus_per_container'), 1)
const locationIds = form.watch('location_ids')
const durationHours = toNumber(form.watch('duration_hours'), 1)
const replicaCount = toNumber(form.watch('replica_count'), 1)
const trafficPort = toNumber(form.watch('traffic_port'), DEFAULT_TRAFFIC_PORT)
const currency = form.watch('currency')
const resourceName = form.watch('resource_private_name')
const { data: hardwareTypesData, isLoading: isLoadingHardware } = useQuery({
queryKey: ['deployment-hardware-types'],
queryFn: getHardwareTypes,
enabled: open,
})
const hardwareOptions = useMemo(() => {
const items = hardwareTypesData?.data?.hardware_types || []
if (!Array.isArray(items)) return []
return items.map((h: Record<string, unknown>) => ({
label:
(h?.brand_name ? `${h.brand_name} ` : '') + String(h?.name ?? h?.id),
value: String(h?.id),
max_gpus: Number(h?.max_gpus || 1),
}))
}, [hardwareTypesData])
// Keep gpus_per_container <= max_gpus
useEffect(() => {
if (!hardwareId) return
const hw = hardwareOptions.find((x) => x.value === hardwareId)
if (!hw) return
const max =
Number.isFinite(hw.max_gpus) && hw.max_gpus > 0 ? hw.max_gpus : 1
if (gpuCount > max) {
form.setValue('gpus_per_container', max)
}
}, [hardwareId, hardwareOptions, gpuCount, form])
const { data: replicasData, isLoading: isLoadingReplicas } = useQuery({
queryKey: ['deployment-available-replicas', hardwareId, gpuCount],
queryFn: () =>
getAvailableReplicas({
hardware_id: hardwareId,
gpu_count: gpuCount,
}),
enabled: open && Boolean(hardwareId) && gpuCount > 0,
})
const locationOptions = useMemo(() => {
const replicas = replicasData?.data?.replicas || []
if (!Array.isArray(replicas)) return []
const map = new Map<string, { label: string; value: string }>()
replicas.forEach((r: Record<string, unknown>) => {
const id = (r?.location_id ??
(r?.location as Record<string, unknown>)?.id) as string | undefined
if (id === null || id === undefined) return
const name = (r?.location_name ??
(r?.location as Record<string, unknown>)?.name ??
r?.name ??
String(id)) as string
const key = String(id)
if (!map.has(key)) {
map.set(key, { label: String(name), value: key })
}
})
return Array.from(map.values())
}, [replicasData])
const { data: priceData, isLoading: _isLoadingPrice } = useQuery({
queryKey: [
'deployment-price',
hardwareId,
gpuCount,
durationHours,
replicaCount,
locationIds,
currency,
],
queryFn: () =>
estimatePrice({
location_ids: locationIds,
hardware_id: hardwareId,
gpus_per_container: gpuCount,
duration_hours: durationHours,
replica_count: replicaCount,
currency: currency || 'usdc',
}),
enabled:
open &&
Boolean(hardwareId) &&
gpuCount > 0 &&
durationHours > 0 &&
replicaCount > 0 &&
locationIds.length > 0,
})
const { data: nameCheckData, isFetching: isCheckingName } = useQuery({
queryKey: ['deployment-name-check', resourceName],
queryFn: async () => {
const name = (resourceName || '').trim()
if (!name) return null
return await checkClusterNameAvailability(name)
},
enabled: open && Boolean(resourceName && resourceName.trim().length > 0),
staleTime: 10_000,
})
const nameAvailable =
nameCheckData?.success === true ? nameCheckData?.data?.available : undefined
const createMutation = useMutation({
mutationFn: async (values: FormValues) => {
const env =
values.env_json && values.env_json.trim()
? (JSON.parse(values.env_json) as Record<string, unknown>)
: undefined
const secretEnv =
values.secret_env_json && values.secret_env_json.trim()
? (JSON.parse(values.secret_env_json) as Record<string, unknown>)
: undefined
const envVariables =
env && typeof env === 'object' && !Array.isArray(env)
? (Object.fromEntries(
Object.entries(env).map(([k, v]) => [k, String(v)])
) as Record<string, string>)
: undefined
const secretEnvVariables =
secretEnv && typeof secretEnv === 'object' && !Array.isArray(secretEnv)
? (Object.fromEntries(
Object.entries(secretEnv).map(([k, v]) => [k, String(v)])
) as Record<string, string>)
: undefined
const gpusPerContainer = Number(values.gpus_per_container)
const durationHoursVal = Number(values.duration_hours)
const replicaCountVal = Number(values.replica_count)
const entrypoint = values.entrypoint
? values.entrypoint
.split(' ')
.map((x) => x.trim())
.filter(Boolean)
: undefined
const args = values.args
? values.args
.split(' ')
.map((x) => x.trim())
.filter(Boolean)
: undefined
const location_ids = (values.location_ids || [])
.map((x) => Number(x))
.filter((n) => Number.isInteger(n) && n > 0)
const payload = {
resource_private_name: values.resource_private_name.trim(),
duration_hours: Number.isFinite(durationHoursVal)
? durationHoursVal
: 1,
gpus_per_container: Number.isFinite(gpusPerContainer)
? gpusPerContainer
: 1,
hardware_id: Number(values.hardware_id),
location_ids,
container_config: {
replica_count: Number.isFinite(replicaCountVal) ? replicaCountVal : 1,
traffic_port: Number.isFinite(trafficPort)
? trafficPort
: DEFAULT_TRAFFIC_PORT,
...(entrypoint?.length ? { entrypoint } : {}),
...(args?.length ? { args } : {}),
...(envVariables ? { env_variables: envVariables } : {}),
...(secretEnvVariables
? { secret_env_variables: secretEnvVariables }
: {}),
},
registry_config: {
image_url: values.image_url,
...(values.registry_username?.trim()
? { registry_username: values.registry_username.trim() }
: {}),
...(values.registry_secret?.trim()
? { registry_secret: values.registry_secret.trim() }
: {}),
},
}
return await createDeployment(payload)
},
onSuccess: (data) => {
if (data?.success) {
toast.success(t('Deployment created successfully'))
queryClient.invalidateQueries({
queryKey: deploymentsQueryKeys.lists(),
})
onOpenChange(false)
return
}
toast.error(data?.message || t('Failed to create deployment'))
},
onError: (err: Error) => {
toast.error(err.message || t('Failed to create deployment'))
},
})
// Reset form when opening
useEffect(() => {
if (!open) return
form.reset({
resource_private_name: '',
image_url: BUILTIN_IMAGE,
traffic_port: DEFAULT_TRAFFIC_PORT,
hardware_id: '',
gpus_per_container: 1,
location_ids: [],
replica_count: 1,
duration_hours: 1,
env_json: '',
secret_env_json: '',
entrypoint: '',
args: '',
registry_username: '',
registry_secret: '',
currency: 'usdc',
})
}, [open, form])
const priceSummary = useMemo<string>(() => {
const est = priceData?.data
if (!est || typeof est !== 'object') return ''
const total =
(est as Record<string, unknown>)?.total_cost ??
(est as Record<string, unknown>)?.total ??
''
const currency = (est as Record<string, unknown>)?.currency ?? ''
if (total === '' && currency === '') return ''
return `${total} ${currency}`.trim()
}, [priceData])
void priceSummary
return (
<Sheet
open={open}
onOpenChange={(v) => {
onOpenChange(v)
if (!v) {
form.reset()
}
}}
>
<SheetContent className='flex w-full flex-col sm:max-w-[600px]'>
<SheetHeader className='text-start'>
<SheetTitle>{t('Create deployment')}</SheetTitle>
<SheetDescription>
{t('Configure and deploy a new container instance.')}
</SheetDescription>
</SheetHeader>
<Form {...form}>
<form
id='deployment-form'
onSubmit={form.handleSubmit((values) =>
createMutation.mutate(values)
)}
className='flex-1 space-y-6 overflow-y-auto px-4'
>
{/* Basic Configuration */}
<div className='space-y-4'>
<h3 className='text-sm font-medium'>
{t('Basic Configuration')}
</h3>
<FormField
control={form.control}
name='resource_private_name'
render={({ field }) => (
<FormItem>
<FormLabel>{t('Container name')}</FormLabel>
<FormControl>
<Input placeholder={t('Enter a name')} {...field} />
</FormControl>
{open && field.value?.trim() ? (
<div className='text-muted-foreground text-xs'>
{isCheckingName
? t('Checking name...')
: nameAvailable === true
? t('Name is available')
: nameAvailable === false
? t('Name is not available')
: ''}
</div>
) : null}
<FormMessage />
</FormItem>
)}
/>
<FormField
control={form.control}
name='image_url'
render={({ field }) => (
<FormItem>
<FormLabel>{t('Image')}</FormLabel>
<FormControl>
<Input {...field} />
</FormControl>
<FormMessage />
</FormItem>
)}
/>
</div>
{/* Resource Configuration */}
<div className='space-y-4'>
<h3 className='text-sm font-medium'>
{t('Resource Configuration')}
</h3>
<div className='grid gap-4 sm:grid-cols-2'>
<FormField
control={form.control}
name='hardware_id'
render={({ field }) => (
<FormItem>
<FormLabel>{t('Hardware type')}</FormLabel>
<Select
value={field.value}
onValueChange={(v) => field.onChange(v)}
disabled={isLoadingHardware}
>
<FormControl>
<SelectTrigger className='w-full'>
<SelectValue placeholder={t('Select')} />
</SelectTrigger>
</FormControl>
<SelectContent>
{hardwareOptions.map((opt) => (
<SelectItem key={opt.value} value={opt.value}>
{opt.label}
</SelectItem>
))}
</SelectContent>
</Select>
<FormMessage />
</FormItem>
)}
/>
</div>
<FormField
control={form.control}
name='location_ids'
render={({ field }) => (
<FormItem>
<FormLabel>{t('Deployment location')}</FormLabel>
<FormControl>
<MultiSelect
options={locationOptions}
selected={(field.value || []) as string[]}
onChange={(vals) => {
if (isLoadingReplicas || !hardwareId) return
field.onChange(vals)
}}
placeholder={
isLoadingReplicas
? t('Loading...')
: t('Select locations')
}
className={
isLoadingReplicas || !hardwareId
? 'pointer-events-none opacity-60'
: ''
}
/>
</FormControl>
<FormMessage />
</FormItem>
)}
/>
<div className='grid gap-4 sm:grid-cols-2'>
<FormField
control={form.control}
name='gpus_per_container'
render={({ field }) => (
<FormItem>
<FormLabel>{t('GPU count')}</FormLabel>
<FormControl>
<Input
type='number'
value={toNumber(field.value, gpuCount)}
onChange={(e) =>
field.onChange(
e.target.value === '' ? 0 : Number(e.target.value)
)
}
/>
</FormControl>
<FormMessage />
</FormItem>
)}
/>
<FormField
control={form.control}
name='replica_count'
render={({ field }) => (
<FormItem>
<FormLabel>{t('Replica count')}</FormLabel>
<FormControl>
<Input
type='number'
value={toNumber(field.value, replicaCount)}
onChange={(e) =>
field.onChange(
e.target.value === '' ? 0 : Number(e.target.value)
)
}
/>
</FormControl>
<FormMessage />
</FormItem>
)}
/>
</div>
<div className='grid gap-4 sm:grid-cols-2'>
<FormField
control={form.control}
name='duration_hours'
render={({ field }) => (
<FormItem>
<FormLabel>{t('Duration (hours)')}</FormLabel>
<FormControl>
<Input
type='number'
value={toNumber(field.value, durationHours)}
onChange={(e) =>
field.onChange(
e.target.value === '' ? 0 : Number(e.target.value)
)
}
/>
</FormControl>
<FormMessage />
</FormItem>
)}
/>
<FormField
control={form.control}
name='traffic_port'
render={({ field }) => (
<FormItem>
<FormLabel>{t('Port')}</FormLabel>
<FormControl>
<Input
type='number'
value={toNumber(field.value, trafficPort)}
onChange={(e) =>
field.onChange(
e.target.value === '' ? 0 : Number(e.target.value)
)
}
/>
</FormControl>
<FormMessage />
</FormItem>
)}
/>
</div>
</div>
{/* Price Estimation */}
<div className='space-y-4'>
<h3 className='text-sm font-medium'>{t('Price estimation')}</h3>
<p className='text-muted-foreground text-xs'>
{t('Price estimation description')}
</p>
<FormField
control={form.control}
name='currency'
render={({ field }) => (
<FormItem>
<FormLabel>{t('Billing currency')}</FormLabel>
<Select
value={field.value || 'usdc'}
onValueChange={(v) => field.onChange(v)}
>
<FormControl>
<SelectTrigger className='w-full'>
<SelectValue placeholder={t('Select')} />
</SelectTrigger>
</FormControl>
<SelectContent>
<SelectItem value='usdc'>USDC</SelectItem>
<SelectItem value='iocoin'>IOCOIN</SelectItem>
</SelectContent>
</Select>
</FormItem>
)}
/>
</div>
{/* Advanced Configuration */}
<div className='space-y-4'>
<h3 className='text-sm font-medium'>
{t('Advanced Configuration')}
</h3>
<p className='text-muted-foreground text-xs'>
{t('Optional settings for advanced container configuration.')}
</p>
<div className='space-y-4'>
<div className='grid gap-4 sm:grid-cols-2'>
<FormField
control={form.control}
name='entrypoint'
render={({ field }) => (
<FormItem>
<FormLabel>
{t('Entrypoint (space separated)')}
</FormLabel>
<FormControl>
<Input placeholder='bash -lc' {...field} />
</FormControl>
<FormMessage />
</FormItem>
)}
/>
<FormField
control={form.control}
name='args'
render={({ field }) => (
<FormItem>
<FormLabel>{t('Args (space separated)')}</FormLabel>
<FormControl>
<Input placeholder='--foo bar' {...field} />
</FormControl>
<FormMessage />
</FormItem>
)}
/>
</div>
<FormField
control={form.control}
name='env_json'
render={({ field }) => (
<FormItem>
<FormLabel>{t('Environment variables (JSON)')}</FormLabel>
<FormControl>
<Textarea
className='min-h-24 font-mono text-xs'
placeholder='{"KEY":"VALUE"}'
{...field}
/>
</FormControl>
<FormMessage />
</FormItem>
)}
/>
<FormField
control={form.control}
name='secret_env_json'
render={({ field }) => (
<FormItem>
<FormLabel>
{t('Secret environment variables (JSON)')}
</FormLabel>
<FormControl>
<Textarea
className='min-h-24 font-mono text-xs'
placeholder='{"SECRET":"VALUE"}'
{...field}
/>
</FormControl>
<FormMessage />
</FormItem>
)}
/>
<div className='grid gap-4 sm:grid-cols-2'>
<FormField
control={form.control}
name='registry_username'
render={({ field }) => (
<FormItem>
<FormLabel>{t('Registry username')}</FormLabel>
<FormControl>
<Input autoComplete='off' {...field} />
</FormControl>
<FormMessage />
</FormItem>
)}
/>
<FormField
control={form.control}
name='registry_secret'
render={({ field }) => (
<FormItem>
<FormLabel>{t('Registry secret')}</FormLabel>
<FormControl>
<Input
type='password'
autoComplete='off'
{...field}
/>
</FormControl>
<FormMessage />
</FormItem>
)}
/>
</div>
</div>
</div>
</form>
</Form>
<SheetFooter className='gap-2'>
<SheetClose render={<Button variant='outline' />}>
{t('Cancel')}
</SheetClose>
<Button
form='deployment-form'
type='submit'
disabled={createMutation.isPending}
>
{createMutation.isPending ? t('Submitting...') : t('Create')}
</Button>
</SheetFooter>
</SheetContent>
</Sheet>
)
}