fix(tmux): improve installer banner layout
This commit is contained in:
parent
dd7b729520
commit
65da1b8429
1 changed files with 72 additions and 20 deletions
|
|
@ -59,24 +59,29 @@ export function TmuxInstallerBannerView(): React.JSX.Element | null {
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<div
|
<div
|
||||||
className="mb-6 rounded-lg border-l-4 px-4 py-3"
|
className="mb-6 rounded-lg border-l-4 px-4 py-4"
|
||||||
style={{
|
style={{
|
||||||
borderLeftColor: viewModel.error ? '#ef4444' : '#f59e0b',
|
borderLeftColor: viewModel.error ? '#ef4444' : '#f59e0b',
|
||||||
backgroundColor: 'rgba(245, 158, 11, 0.08)',
|
backgroundColor: 'rgba(245, 158, 11, 0.08)',
|
||||||
borderColor: 'rgba(245, 158, 11, 0.2)',
|
borderColor: 'rgba(245, 158, 11, 0.2)',
|
||||||
}}
|
}}
|
||||||
>
|
>
|
||||||
<div className="flex flex-col gap-3 md:flex-row md:items-start md:justify-between">
|
<div className="space-y-3">
|
||||||
<div className="min-w-0 flex-1">
|
<div className="min-w-0 max-w-4xl">
|
||||||
<div className="flex items-center gap-2 text-sm font-medium">
|
<div className="flex items-start gap-2 text-base font-semibold leading-6">
|
||||||
{viewModel.error ? (
|
<span className="pt-0.5">
|
||||||
<AlertTriangle className="size-4 text-red-300" />
|
{viewModel.error ? (
|
||||||
) : (
|
<AlertTriangle className="size-4 text-red-300" />
|
||||||
<Wrench className="size-4 text-amber-300" />
|
) : (
|
||||||
)}
|
<Wrench className="size-4 text-amber-300" />
|
||||||
|
)}
|
||||||
|
</span>
|
||||||
<span>{viewModel.title}</span>
|
<span>{viewModel.title}</span>
|
||||||
</div>
|
</div>
|
||||||
<p className="mt-1 text-sm" style={{ color: 'var(--color-text-secondary)' }}>
|
<p
|
||||||
|
className="mt-2 text-[15px] leading-7"
|
||||||
|
style={{ color: 'var(--color-text-secondary)' }}
|
||||||
|
>
|
||||||
{viewModel.body}
|
{viewModel.body}
|
||||||
</p>
|
</p>
|
||||||
{(viewModel.platformLabel ||
|
{(viewModel.platformLabel ||
|
||||||
|
|
@ -84,20 +89,67 @@ export function TmuxInstallerBannerView(): React.JSX.Element | null {
|
||||||
viewModel.runtimeReadyLabel ||
|
viewModel.runtimeReadyLabel ||
|
||||||
viewModel.versionLabel ||
|
viewModel.versionLabel ||
|
||||||
viewModel.phase !== 'idle') && (
|
viewModel.phase !== 'idle') && (
|
||||||
<div
|
<div className="mt-3 flex flex-wrap items-center gap-2 text-[11px]">
|
||||||
className="mt-2 flex flex-wrap items-center gap-2 text-[11px]"
|
{viewModel.platformLabel && (
|
||||||
style={{ color: 'var(--color-text-muted)' }}
|
<span
|
||||||
>
|
className="rounded-full px-2 py-1"
|
||||||
{viewModel.platformLabel && <span>Detected OS: {viewModel.platformLabel}</span>}
|
style={{
|
||||||
{viewModel.locationLabel && <span>Runtime path: {viewModel.locationLabel}</span>}
|
color: 'var(--color-text-muted)',
|
||||||
{viewModel.runtimeReadyLabel && <span>{viewModel.runtimeReadyLabel}</span>}
|
backgroundColor: 'rgba(255, 255, 255, 0.04)',
|
||||||
{viewModel.versionLabel && <span>{viewModel.versionLabel}</span>}
|
}}
|
||||||
{viewModel.phase !== 'idle' && <span>Phase: {viewModel.phase}</span>}
|
>
|
||||||
|
Detected OS: {viewModel.platformLabel}
|
||||||
|
</span>
|
||||||
|
)}
|
||||||
|
{viewModel.locationLabel && (
|
||||||
|
<span
|
||||||
|
className="rounded-full px-2 py-1"
|
||||||
|
style={{
|
||||||
|
color: 'var(--color-text-muted)',
|
||||||
|
backgroundColor: 'rgba(255, 255, 255, 0.04)',
|
||||||
|
}}
|
||||||
|
>
|
||||||
|
Runtime path: {viewModel.locationLabel}
|
||||||
|
</span>
|
||||||
|
)}
|
||||||
|
{viewModel.runtimeReadyLabel && (
|
||||||
|
<span
|
||||||
|
className="rounded-full px-2 py-1"
|
||||||
|
style={{
|
||||||
|
color: 'var(--color-text-muted)',
|
||||||
|
backgroundColor: 'rgba(255, 255, 255, 0.04)',
|
||||||
|
}}
|
||||||
|
>
|
||||||
|
{viewModel.runtimeReadyLabel}
|
||||||
|
</span>
|
||||||
|
)}
|
||||||
|
{viewModel.versionLabel && (
|
||||||
|
<span
|
||||||
|
className="rounded-full px-2 py-1"
|
||||||
|
style={{
|
||||||
|
color: 'var(--color-text-muted)',
|
||||||
|
backgroundColor: 'rgba(255, 255, 255, 0.04)',
|
||||||
|
}}
|
||||||
|
>
|
||||||
|
{viewModel.versionLabel}
|
||||||
|
</span>
|
||||||
|
)}
|
||||||
|
{viewModel.phase !== 'idle' && (
|
||||||
|
<span
|
||||||
|
className="rounded-full px-2 py-1"
|
||||||
|
style={{
|
||||||
|
color: 'var(--color-text-muted)',
|
||||||
|
backgroundColor: 'rgba(255, 255, 255, 0.04)',
|
||||||
|
}}
|
||||||
|
>
|
||||||
|
Phase: {viewModel.phase}
|
||||||
|
</span>
|
||||||
|
)}
|
||||||
</div>
|
</div>
|
||||||
)}
|
)}
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div className="flex flex-wrap items-center gap-2">
|
<div className="flex flex-wrap items-center gap-2 pt-1">
|
||||||
{viewModel.installSupported && (
|
{viewModel.installSupported && (
|
||||||
<button
|
<button
|
||||||
type="button"
|
type="button"
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue