mirror of
https://github.com/Termix-SSH/Termix.git
synced 2026-08-29 18:31:33 +00:00
* Add Helm and GitOps deployment setup * fix: build better-sqlite3 from source in Docker (#1267) * fix: preserve runtime SSL settings (#1268) * fix: support forwarding from the memory SSH agent (#1269) * fix: support forwarding from the memory agent * style: format memory agent test * fix: prompt for encrypted SFTP key passphrases (#1270) * fix: prompt for SFTP key passphrases * style: format SSH key utility test * fix: include host context in automation notifications (#1271) * fix: include host context in automation notifications * style: format automation notification changes * fix: reserve sidebar height for host tags (#1272) * fix: keep host action rows stable at large font sizes (#1273) * fix: honor certificate setting during server probe (#1274) * fix: package standard Linux icon sizes (#1275) * fix: avoid duplicate Docker HTTPS listener (#1276) * Fix host status without metrics collection (#1277) * fix: allow eight-digit secure auth codes (#1263) Allow TOTP prompts to accept secure auth codes longer than six digits without blocking valid authentication attempts. Generated with Codebuff 🤖 Co-authored-by: Chetan <chetan.development@gmail.com> Co-authored-by: Codebuff <noreply@codebuff.com> * Harden Helm deployment defaults * Update Helm workflow action * Exclude Helm templates from Prettier * Fix browser RDP file drops (#1279) * Fix Proxmox guest credential usernames (#1280) * Add WSL local terminal option (#1281) * refactor: split the transfer engine into focused modules (#1282) * refactor: extract SFTP promisify helpers into sftp-promisify module * refactor: extract transfer timing and rate stats into transfer-stats module * refactor: extract transfer error classes and recovery checks into transfer-errors module * refactor: extract host/path utility helpers into transfer-host-utils module * refactor: extract SFTP directory tree helpers into transfer-sftp-dir module * refactor: extract segment copy job builder into transfer-segment-copy module * refactor: extract file scan and sample helpers into transfer-scan module * refactor: move throttled progress helper into transfer-stats module * style: format transfer modules * perf: optimize tmux monitor aggregation (#1283) * fix: reserve credential tag row height (#1284) * feat: edit AI provider model settings (#1285) * fix: clarify click-to-expand host setting (#1286) * fix: allow portable imports on remote databases (#1287) * fix: allow HTTPS to share the configured port (#1288) * fix: resolve synced jump hosts on the server (#1289) * fix: make terminal clipboard shortcuts layout independent (#1290) * fix: use compatible fetch dispatcher for Tailscale (#1291) * fix: add OIDC environment recovery override (#1292) * fix: coalesce rapid mobile terminal input (#1293) * fix: coalesce rapid mobile terminal input * fix: support clean xterm patch installs * fix: resolve synced remote desktop host IDs (#1295) * feat: make the SFTP file manager path bar editable (#1294) Co-authored-by: Maxime Bonillo <257463937+dropafterfree@users.noreply.github.com> Co-authored-by: ZacharyZcR <zacharyzcr1984@gmail.com> * feat: add passkey sign in to the login screen * fix: remove rounded corners from the host list search bar * fix: stop image storage settings text wrapping to one word per line * fix: prevent malformed websocket messages from crashing the server * chore: increment version * fix: remove gaps between host rows in the sidebar list Keep sub-pixel row measurements and stop wiping the size cache on hover. * fix: Failed to connect through jump hosts (#1180) https://github.com/Termix-SSH/Support/issues/1180 * feat: Progress bar for file downloads in the file manager (#1158) https://github.com/Termix-SSH/Support/issues/1158 * feat: Allow setting Silent OIDC Login via ENV var (#1174) https://github.com/Termix-SSH/Support/issues/1174 * feat: `IdentityFile` to limit the number of attempts by agents (#1165) https://github.com/Termix-SSH/Support/issues/1165 * feat: Credentials clone (#1159) https://github.com/Termix-SSH/Support/issues/1159 * chore: update release notes * docs: move helm setup guide to the docs site * fix: type errors in FilteredAgent agent identity handling * fix: remove stale better-sqlite3 prebuilds so the source build is used * fix: actually build better-sqlite3 from source so arm64 docker images work * fix: credential edit pencil in host editor and add clone action to credential list * fix: clear editingHost so the credential pencil actually opens the editor * chore: run format and lint * fix: folder drag and drop upload failing in the file manager * chore: sync Crowdin translations for 2.7.1 --------- Co-authored-by: alex-ctms <alex-ctms@users.noreply.github.com> Co-authored-by: ZacharyZcR <zacharyzcr1984@gmail.com> Co-authored-by: Chetan Kumar <74929596+ckloop@users.noreply.github.com> Co-authored-by: Chetan <chetan.development@gmail.com> Co-authored-by: Codebuff <noreply@codebuff.com> Co-authored-by: ZacharyZcR <payasonorahc@protonmail.com> Co-authored-by: dropafterfree <maxime.bonillo@gmail.com> Co-authored-by: Maxime Bonillo <257463937+dropafterfree@users.noreply.github.com>
250 lines
8.6 KiB
TypeScript
250 lines
8.6 KiB
TypeScript
import { useTranslation } from "react-i18next";
|
|
import { ImageIcon } from "lucide-react";
|
|
import { Button } from "@/components/button";
|
|
import { Input } from "@/components/input";
|
|
import type {
|
|
TerminalImageStorageMode,
|
|
TerminalImageStorageSettings,
|
|
TerminalImageStorageTestResult,
|
|
} from "@/api/settings-api";
|
|
import { AccordionSection } from "./AdminSettingsShared";
|
|
|
|
const MODE_LABEL_KEYS: Record<TerminalImageStorageMode, string> = {
|
|
auto: "admin.imageStorageModeAuto",
|
|
local: "admin.imageStorageModeLocal",
|
|
"remote-sftp": "admin.imageStorageModeRemoteSftp",
|
|
};
|
|
|
|
const SELECTED_MODE_LABEL_KEYS: Record<
|
|
TerminalImageStorageTestResult["selectedMode"],
|
|
string
|
|
> = {
|
|
local: "admin.imageStorageModeLocal",
|
|
"remote-sftp": "admin.imageStorageModeRemoteSftp",
|
|
unavailable: "admin.imageStorageSelectedModeUnavailable",
|
|
};
|
|
|
|
export function AdminImageStorageSection({
|
|
open,
|
|
onToggle,
|
|
settings,
|
|
setSettings,
|
|
localDir,
|
|
setLocalDir,
|
|
instanceId,
|
|
setInstanceId,
|
|
saving,
|
|
testing,
|
|
testResult,
|
|
onSave,
|
|
onTest,
|
|
}: {
|
|
open: boolean;
|
|
onToggle: () => void;
|
|
settings: TerminalImageStorageSettings | null;
|
|
setSettings: (settings: TerminalImageStorageSettings) => void;
|
|
localDir: string;
|
|
setLocalDir: (value: string) => void;
|
|
instanceId: string;
|
|
setInstanceId: (value: string) => void;
|
|
saving: boolean;
|
|
testing: boolean;
|
|
testResult: TerminalImageStorageTestResult | null;
|
|
onSave: () => void;
|
|
onTest: () => void;
|
|
}) {
|
|
const { t } = useTranslation();
|
|
|
|
return (
|
|
<AccordionSection
|
|
label={t("admin.sectionImageStorage")}
|
|
icon={<ImageIcon className="size-3.5" />}
|
|
open={open}
|
|
onToggle={onToggle}
|
|
>
|
|
{settings === null ? (
|
|
<div className="pt-3 text-xs text-muted-foreground">
|
|
{t("common.loading")}
|
|
</div>
|
|
) : (
|
|
<div className="@container flex flex-col gap-0 pt-2">
|
|
<div className="flex flex-col gap-2 py-3 border-b border-border">
|
|
<div className="flex flex-col gap-0.5">
|
|
<span className="text-sm font-medium leading-snug">
|
|
{t("admin.imageStorageMode")}
|
|
</span>
|
|
<span className="text-xs text-muted-foreground leading-snug">
|
|
{t("admin.imageStorageModeDesc")}
|
|
</span>
|
|
</div>
|
|
<div className="flex flex-wrap gap-1">
|
|
{(Object.keys(MODE_LABEL_KEYS) as TerminalImageStorageMode[]).map(
|
|
(mode) => (
|
|
<button
|
|
key={mode}
|
|
type="button"
|
|
aria-pressed={settings.mode === mode}
|
|
onClick={() => setSettings({ ...settings, mode })}
|
|
className={`whitespace-nowrap px-2 py-1 text-[10px] font-semibold border transition-colors ${settings.mode === mode ? "border-accent-brand/40 bg-accent-brand/10 text-accent-brand" : "border-border text-muted-foreground hover:text-foreground"}`}
|
|
>
|
|
{t(MODE_LABEL_KEYS[mode])}
|
|
</button>
|
|
),
|
|
)}
|
|
</div>
|
|
</div>
|
|
|
|
<div className="grid grid-cols-1 gap-x-4 gap-y-3 py-3 @md:grid-cols-2 border-b border-border">
|
|
<label className="flex flex-col gap-1 text-xs">
|
|
<span className="font-medium text-foreground">
|
|
{t("admin.imageStorageLocalDir")}
|
|
</span>
|
|
<Input
|
|
aria-label={t("admin.imageStorageLocalDir")}
|
|
value={localDir}
|
|
placeholder={t("admin.imageStorageLocalDirPlaceholder")}
|
|
onChange={(event) => setLocalDir(event.target.value)}
|
|
className="h-8 text-xs"
|
|
/>
|
|
<span className="text-muted-foreground">
|
|
{t("admin.imageStorageLocalDirDesc")}
|
|
</span>
|
|
</label>
|
|
<label className="flex flex-col gap-1 text-xs">
|
|
<span className="font-medium text-foreground">
|
|
{t("admin.imageStorageHostPath")}
|
|
</span>
|
|
<Input
|
|
aria-label={t("admin.imageStorageHostPath")}
|
|
value={settings.hostPath}
|
|
onChange={(event) =>
|
|
setSettings({ ...settings, hostPath: event.target.value })
|
|
}
|
|
className="h-8 text-xs"
|
|
/>
|
|
<span className="text-muted-foreground">
|
|
{t("admin.imageStorageHostPathDesc")}
|
|
</span>
|
|
</label>
|
|
<label className="flex flex-col gap-1 text-xs">
|
|
<span className="font-medium text-foreground">
|
|
{t("admin.imageStorageTtl")}
|
|
</span>
|
|
<Input
|
|
aria-label={t("admin.imageStorageTtl")}
|
|
type="number"
|
|
min={0}
|
|
value={settings.ttlMs}
|
|
onChange={(event) =>
|
|
setSettings({
|
|
...settings,
|
|
ttlMs: Number(event.target.value),
|
|
})
|
|
}
|
|
className="h-8 text-xs"
|
|
/>
|
|
</label>
|
|
<label className="flex flex-col gap-1 text-xs">
|
|
<span className="font-medium text-foreground">
|
|
{t("admin.imageStorageMaxCount")}
|
|
</span>
|
|
<Input
|
|
aria-label={t("admin.imageStorageMaxCount")}
|
|
type="number"
|
|
min={1}
|
|
value={settings.maxCount}
|
|
onChange={(event) =>
|
|
setSettings({
|
|
...settings,
|
|
maxCount: Number(event.target.value),
|
|
})
|
|
}
|
|
className="h-8 text-xs"
|
|
/>
|
|
</label>
|
|
<label className="flex flex-col gap-1 text-xs">
|
|
<span className="font-medium text-foreground">
|
|
{t("admin.imageStorageMaxBytes")}
|
|
</span>
|
|
<Input
|
|
aria-label={t("admin.imageStorageMaxBytes")}
|
|
type="number"
|
|
min={1048576}
|
|
value={settings.maxBytes}
|
|
onChange={(event) =>
|
|
setSettings({
|
|
...settings,
|
|
maxBytes: Number(event.target.value),
|
|
})
|
|
}
|
|
className="h-8 text-xs"
|
|
/>
|
|
</label>
|
|
</div>
|
|
|
|
<div className="flex flex-col gap-2 py-3 border-b border-border">
|
|
<div className="flex flex-col gap-0.5">
|
|
<span className="text-sm font-medium leading-snug">
|
|
{t("admin.imageStorageInstanceId")}
|
|
</span>
|
|
<span className="text-xs text-muted-foreground leading-snug">
|
|
{t("admin.imageStorageInstanceIdDesc")}
|
|
</span>
|
|
</div>
|
|
<Input
|
|
aria-label={t("admin.imageStorageInstanceId")}
|
|
value={instanceId}
|
|
onChange={(event) => setInstanceId(event.target.value)}
|
|
className="h-8 w-full @md:w-64 text-xs"
|
|
/>
|
|
</div>
|
|
|
|
{testResult && (
|
|
<div className="py-2 text-xs text-muted-foreground border-b border-border">
|
|
<div>
|
|
{testResult.connected
|
|
? t("admin.imageStorageTestConnected")
|
|
: t("admin.imageStorageTestNotConnected")}
|
|
</div>
|
|
<div>
|
|
{t("admin.imageStorageTestSelectedMode", {
|
|
mode: t(SELECTED_MODE_LABEL_KEYS[testResult.selectedMode]),
|
|
})}
|
|
</div>
|
|
{testResult.localHostVisible !== null && (
|
|
<div>
|
|
{testResult.localHostVisible
|
|
? t("admin.imageStorageTestLocalVisible")
|
|
: t("admin.imageStorageTestLocalNotVisible")}
|
|
</div>
|
|
)}
|
|
</div>
|
|
)}
|
|
|
|
<div className="flex gap-2 pt-3">
|
|
<Button
|
|
size="sm"
|
|
variant="outline"
|
|
className="border-accent-brand/40 text-accent-brand hover:bg-accent-brand/10 hover:text-accent-brand"
|
|
disabled={saving}
|
|
onClick={onSave}
|
|
>
|
|
{saving ? t("common.saving") : t("common.save")}
|
|
</Button>
|
|
<Button
|
|
size="sm"
|
|
variant="outline"
|
|
disabled={testing}
|
|
onClick={onTest}
|
|
>
|
|
{testing
|
|
? t("admin.imageStorageTesting")
|
|
: t("admin.imageStorageTest")}
|
|
</Button>
|
|
</div>
|
|
</div>
|
|
)}
|
|
</AccordionSection>
|
|
);
|
|
}
|