Files
NetMesh/components/HostIconPicker.tsx
zhaolei 3c72efcb7f
Some checks failed
build-packages / resolve bundled mosh-client (push) Has been cancelled
build-packages / resolve bundled et-client (push) Has been cancelled
build-packages / build-macos (push) Has been cancelled
build-packages / build-windows (push) Has been cancelled
build-packages / build-linux-x64 (push) Has been cancelled
build-packages / build-linux-arm64 (push) Has been cancelled
build-packages / release (push) Has been cancelled
build-packages / update Nix release metadata (push) Has been cancelled
build-packages / bump homebrew tap (push) Has been cancelled
test / lint-and-test (push) Has been cancelled
AI automation / Route event (push) Has been cancelled
AI automation / Hand reopened issue to maintainers (push) Has been cancelled
AI automation / Clean source issue state (push) Has been cancelled
AI automation / Reconcile handoffs (push) Has been cancelled
AI automation / Classify issue (push) Has been cancelled
AI automation / Claude Code smoke (push) Has been cancelled
AI automation / Review issue follow-up (push) Has been cancelled
AI automation / Publish issue follow-up (push) Has been cancelled
AI automation / Implement with Claude Code (push) Has been cancelled
AI automation / Publish implement PR (push) Has been cancelled
AI automation / Continue queued issue comments (push) Has been cancelled
AI automation / Codex review loop (push) Has been cancelled
AI automation / Publish Codex fix (push) Has been cancelled
AI automation / Clear Codex dispatch marker (push) Has been cancelled
AI automation / Own PR re-request Codex (push) Has been cancelled
AI automation / External PR re-request Codex (push) Has been cancelled
AI automation / Poll Codex reaction / retry (push) Has been cancelled
build-et-binaries / build-linux-x64 (push) Has been cancelled
build-et-binaries / build-linux-arm64 (push) Has been cancelled
build-et-binaries / build-macos-universal (push) Has been cancelled
build-et-binaries / build-windows-x64 (push) Has been cancelled
build-et-binaries / release (push) Has been cancelled
[Init] Initial commit - NetMesh terminal manager
2026-09-13 18:24:01 +08:00

402 lines
16 KiB
TypeScript

import React from "react";
import { useI18n } from "../application/i18n/I18nProvider";
import {
DEFAULT_HOST_ICON_COLOR,
DEFAULT_HOST_ICON_ID,
HOST_ICON_COLORS,
HOST_ICON_IDS,
isHostIconColorId,
isHostIconCustomColor,
isHostIconId,
resolveHostIconDefaultColorHex,
} from "../domain/hostIcon";
import type { Host } from "../domain/models";
import type { HostIconColorId, HostIconColorMode, HostIconId, HostIconMode } from "../domain/models";
import { cn } from "../lib/utils";
import { DistroAvatar } from "./DistroAvatar";
import { renderHostIconGlyph } from "./hostIconRenderer";
import { Input } from "./ui/input";
import { Select, SelectContent, SelectItem, SelectTrigger, SelectValue } from "./ui/select";
type DistroOption = {
value: string;
label: string;
icon?: string;
bgClass: string;
};
type HostIconPickerProps = {
previewHost?: Host;
distroMode?: "auto" | "manual";
manualDistro?: string;
effectiveDistro?: string;
distroOptions: DistroOption[];
getDistroOptionLabel: (value?: string) => string;
iconMode?: HostIconMode;
iconId?: HostIconId;
iconColorMode?: HostIconColorMode;
iconColor?: HostIconColorId;
iconColorCustom?: string;
manualIconMenuOpen?: boolean;
onChange: (next: {
distroMode?: "auto" | "manual";
manualDistro?: string;
iconMode?: HostIconMode;
iconId?: HostIconId;
iconColorMode?: HostIconColorMode;
iconColor?: HostIconColorId;
iconColorCustom?: string;
}) => void;
};
const renderBrandOption = (option: DistroOption) => (
<div className="flex min-w-0 items-center gap-2">
<div
className={cn(
"flex h-4 w-4 shrink-0 items-center justify-center overflow-hidden rounded-[2px]",
option.bgClass,
)}
>
{option.icon ? (
<img src={option.icon} alt={option.label} className="h-3 w-3 object-contain invert brightness-0" />
) : (
<div className="h-2 w-2 rounded-full bg-white/70" />
)}
</div>
<span className="truncate whitespace-nowrap">{option.label}</span>
</div>
);
const renderTypeOption = (iconId: HostIconId, label: string, colorHex: string) => (
<div className="flex min-w-0 items-center gap-2">
<div
className="flex h-4 w-4 shrink-0 items-center justify-center overflow-hidden rounded-[2px] text-white"
style={{ backgroundColor: colorHex }}
>
{renderHostIconGlyph(iconId, "h-3 w-3")}
</div>
<span className="truncate whitespace-nowrap">{label}</span>
</div>
);
const renderBrandColorPreview = (option: DistroOption, label: string) => (
<div className="flex min-w-0 items-center gap-2">
<span className={cn("h-4 w-4 shrink-0 rounded-full border border-border/70", option.bgClass)} />
<span className="truncate whitespace-nowrap">{label}</span>
</div>
);
const renderTypeColorPreview = (label: string, colorHex: string) => (
<div className="flex min-w-0 items-center gap-2">
<span className="h-4 w-4 shrink-0 rounded-full border border-border/70" style={{ backgroundColor: colorHex }} />
<span className="truncate whitespace-nowrap">{label}</span>
</div>
);
const colorHexForId = (colorId?: HostIconColorId) =>
HOST_ICON_COLORS.find((color) => color.id === colorId)?.hex || HOST_ICON_COLORS[0].hex;
export const HostIconPicker: React.FC<HostIconPickerProps> = ({
previewHost,
distroMode,
manualDistro,
effectiveDistro,
distroOptions,
getDistroOptionLabel,
iconMode,
iconId,
iconColorMode,
iconColor,
iconColorCustom,
manualIconMenuOpen,
onChange,
}) => {
const { t } = useI18n();
const manualSource = distroMode === "manual" || iconMode === "custom";
const selectedBrandId = manualDistro || effectiveDistro || "linux";
const selectedBrand = distroOptions.find((option) => option.value === selectedBrandId);
const selectedIconId = isHostIconId(iconId) ? iconId : DEFAULT_HOST_ICON_ID;
const selectedIconTab = iconMode === "custom" ? "type" : "brand";
const manualColor = iconColorMode === "manual" ||
(iconColorMode !== "auto" && (isHostIconColorId(iconColor) || isHostIconCustomColor(iconColorCustom)));
const selectedPresetColor = isHostIconColorId(iconColor) ? iconColor : DEFAULT_HOST_ICON_COLOR;
const selectedCustomColor = isHostIconCustomColor(iconColorCustom) ? iconColorCustom : colorHexForId(selectedPresetColor);
const selectedColorValue = isHostIconCustomColor(iconColorCustom) ? "custom" : selectedPresetColor;
const manualPreviewColor = isHostIconCustomColor(iconColorCustom)
? selectedCustomColor
: colorHexForId(selectedPresetColor);
const selectedTypePreviewColor = manualColor
? manualPreviewColor
: resolveHostIconDefaultColorHex(selectedIconId);
const autoColorPreviewLabel = selectedIconTab === "type"
? t(`hostDetails.icon.option.${selectedIconId}`)
: getDistroOptionLabel(selectedBrandId);
const selectedManualIconValue = selectedIconTab === "type" ? `type:${selectedIconId}` : `brand:${selectedBrandId}`;
const [customColorDraft, setCustomColorDraft] = React.useState(selectedCustomColor);
const [iconMenuTab, setIconMenuTab] = React.useState<"brand" | "type">(selectedIconTab);
React.useEffect(() => {
setCustomColorDraft(selectedCustomColor);
}, [selectedCustomColor]);
React.useEffect(() => {
setIconMenuTab(selectedIconTab);
}, [selectedIconTab]);
const setSource = (value: "auto" | "manual") => {
if (value === "auto") {
onChange({ distroMode: "auto", iconMode: undefined, iconId: undefined });
return;
}
onChange({
distroMode: "manual",
manualDistro: selectedBrandId,
iconMode: undefined,
iconId: undefined,
});
};
const setManualIcon = (value: string) => {
if (value.startsWith("type:")) {
const nextIconId = value.slice("type:".length);
if (isHostIconId(nextIconId)) {
onChange({ distroMode: "manual", iconMode: "custom", iconId: nextIconId });
}
return;
}
if (value.startsWith("brand:")) {
onChange({
distroMode: "manual",
manualDistro: value.slice("brand:".length),
iconMode: undefined,
iconId: undefined,
});
}
};
const switchIconMenuTab = (nextTab: "brand" | "type") => {
setIconMenuTab(nextTab);
};
const setColorMode = (value: "auto" | "manual") => {
if (value === "auto") {
onChange({ iconColorMode: "auto", iconColor: undefined, iconColorCustom: undefined });
return;
}
onChange({ iconColorMode: "manual", iconColor: selectedPresetColor, iconColorCustom: undefined });
};
const setColorChoice = (value: string) => {
if (value === "custom") {
onChange({ iconColorMode: "manual", iconColor: undefined, iconColorCustom: selectedCustomColor });
return;
}
if (isHostIconColorId(value)) {
onChange({ iconColorMode: "manual", iconColor: value, iconColorCustom: undefined });
}
};
const setCustomColor = (value: string) => {
setCustomColorDraft(value);
if (isHostIconCustomColor(value)) {
onChange({
iconColorMode: "manual",
iconColor: undefined,
iconColorCustom: value,
});
}
};
return (
<div className="space-y-4">
{previewHost ? (
<div
className="flex items-center justify-center rounded-xl border border-border/60 bg-secondary/20 py-5"
aria-label={t("hostDetails.icon.preview")}
>
<DistroAvatar
host={previewHost}
fallback={
previewHost.label?.slice(0, 2).toUpperCase()
|| previewHost.hostname?.slice(0, 2).toUpperCase()
|| "H"
}
size="lg"
/>
</div>
) : null}
<div className="grid gap-2 md:grid-cols-2">
<div className="space-y-1">
<span className="text-xs text-muted-foreground">{t("hostDetails.icon.source")}</span>
<Select value={manualSource ? "manual" : "auto"} onValueChange={(value) => setSource(value as "auto" | "manual")}>
<SelectTrigger className="h-8" aria-label={t("hostDetails.icon.source")}>
<span className="truncate whitespace-nowrap pr-2 text-left">
{manualSource ? t("hostDetails.distro.mode.manual") : t("hostDetails.distro.mode.auto")}
</span>
</SelectTrigger>
<SelectContent>
<SelectItem value="auto">{t("hostDetails.distro.mode.auto")}</SelectItem>
<SelectItem value="manual">{t("hostDetails.distro.mode.manual")}</SelectItem>
</SelectContent>
</Select>
</div>
{manualSource ? (
<div className="space-y-1">
<span className="text-xs text-muted-foreground">{t("hostDetails.icon.manualLabel")}</span>
<Select
value={selectedManualIconValue}
onValueChange={setManualIcon}
{...(manualIconMenuOpen === undefined ? {} : { open: manualIconMenuOpen })}
>
<SelectTrigger className="h-8" aria-label={t("hostDetails.icon.manualLabel")}>
{selectedIconTab === "type"
? renderTypeOption(selectedIconId, t(`hostDetails.icon.option.${selectedIconId}`), selectedTypePreviewColor)
: selectedBrand
? renderBrandOption(selectedBrand)
: <SelectValue placeholder={t("hostDetails.distro.unknown")} />}
</SelectTrigger>
<SelectContent className="min-w-[16rem]" hideScrollButtons>
<div className="sticky top-0 z-10 bg-popover px-1 pb-1">
<div className="grid h-8 grid-cols-2 rounded-md bg-muted/50 p-0.5">
<button
type="button"
role="tab"
aria-selected={iconMenuTab === "brand"}
className={cn(
"rounded-sm text-xs font-medium transition-colors",
iconMenuTab === "brand" ? "bg-background text-foreground shadow-sm" : "text-muted-foreground",
)}
onPointerDown={(event) => {
event.preventDefault();
switchIconMenuTab("brand");
}}
>
{t("hostDetails.icon.tab.brand")}
</button>
<button
type="button"
role="tab"
aria-selected={iconMenuTab === "type"}
className={cn(
"rounded-sm text-xs font-medium transition-colors",
iconMenuTab === "type" ? "bg-background text-foreground shadow-sm" : "text-muted-foreground",
)}
onPointerDown={(event) => {
event.preventDefault();
switchIconMenuTab("type");
}}
>
{t("hostDetails.icon.tab.type")}
</button>
</div>
</div>
{iconMenuTab === "brand"
? distroOptions.map((option) => (
<SelectItem key={option.value} value={`brand:${option.value}`}>
{renderBrandOption(option)}
</SelectItem>
))
: HOST_ICON_IDS.map((optionIconId) => (
<SelectItem key={optionIconId} value={`type:${optionIconId}`}>
{renderTypeOption(
optionIconId,
t(`hostDetails.icon.option.${optionIconId}`),
manualColor ? manualPreviewColor : resolveHostIconDefaultColorHex(optionIconId),
)}
</SelectItem>
))}
</SelectContent>
</Select>
</div>
) : (
<div className="space-y-1">
<span className="text-xs text-muted-foreground">{t("hostDetails.distro.detectedLabel")}</span>
<div className="flex h-8 items-center rounded-md border border-border/60 bg-background/50 px-3 text-sm">
{effectiveDistro ? getDistroOptionLabel(effectiveDistro) : t("hostDetails.distro.unknown")}
</div>
</div>
)}
</div>
<div className="border-t border-border/60 pt-3">
<div className="grid gap-2 md:grid-cols-2">
<div className="space-y-1">
<span className="text-xs text-muted-foreground">{t("hostDetails.icon.colorLabel")}</span>
<Select value={manualColor ? "manual" : "auto"} onValueChange={(value) => setColorMode(value as "auto" | "manual")}>
<SelectTrigger className="h-8" aria-label={t("hostDetails.icon.colorLabel")}>
<span className="truncate whitespace-nowrap pr-2 text-left">
{manualColor ? t("hostDetails.icon.colorManual") : t("hostDetails.icon.colorAuto")}
</span>
</SelectTrigger>
<SelectContent>
<SelectItem value="auto">{t("hostDetails.icon.colorAuto")}</SelectItem>
<SelectItem value="manual">{t("hostDetails.icon.colorManual")}</SelectItem>
</SelectContent>
</Select>
</div>
{manualColor ? (
<div className="space-y-1">
<span className="text-xs text-muted-foreground">{t("hostDetails.icon.colorChoice")}</span>
<Select value={selectedColorValue} onValueChange={setColorChoice}>
<SelectTrigger className="h-8" aria-label={t("hostDetails.icon.colorChoice")}>
<div className="flex min-w-0 items-center gap-2 pr-2">
<span className="h-4 w-4 shrink-0 rounded-full border border-border/70" style={{ backgroundColor: manualPreviewColor }} />
<span className="truncate whitespace-nowrap">
{selectedColorValue === "custom"
? t("hostDetails.icon.color.custom")
: t(`hostDetails.icon.color.${selectedPresetColor}`)}
</span>
</div>
</SelectTrigger>
<SelectContent>
{HOST_ICON_COLORS.map((color) => (
<SelectItem key={color.id} value={color.id}>
<div className="flex items-center gap-2">
<span className="h-4 w-4 rounded-full border border-border/70" style={{ backgroundColor: color.hex }} />
<span>{t(`hostDetails.icon.color.${color.id}`)}</span>
</div>
</SelectItem>
))}
<SelectItem value="custom">{t("hostDetails.icon.color.custom")}</SelectItem>
</SelectContent>
</Select>
</div>
) : (
<div className="space-y-1">
<span className="text-xs text-muted-foreground">{t("hostDetails.icon.autoColorLabel")}</span>
<div className="flex h-8 items-center rounded-md border border-border/60 bg-background/50 px-3 text-sm">
{selectedIconTab === "type"
? renderTypeColorPreview(autoColorPreviewLabel, selectedTypePreviewColor)
: selectedBrand
? renderBrandColorPreview(selectedBrand, autoColorPreviewLabel)
: renderTypeColorPreview(t("hostDetails.distro.unknown"), colorHexForId(DEFAULT_HOST_ICON_COLOR))}
</div>
</div>
)}
</div>
{manualColor && selectedColorValue === "custom" && (
<div className="mt-2 flex items-center gap-2">
<Input
type="color"
value={isHostIconCustomColor(customColorDraft) ? customColorDraft : selectedCustomColor}
onChange={(event) => setCustomColor(event.target.value)}
className="h-8 w-12 shrink-0 cursor-pointer p-1"
aria-label={t("hostDetails.icon.color.custom")}
/>
<Input
value={customColorDraft}
onChange={(event) => setCustomColor(event.target.value)}
className="h-8 font-mono text-xs"
aria-label={t("hostDetails.icon.color.custom")}
/>
</div>
)}
</div>
</div>
);
};