mirror of
https://github.com/jkingsman/Remote-Terminal-for-MeshCore.git
synced 2026-05-08 06:15:02 +02:00
370 lines
13 KiB
TypeScript
370 lines
13 KiB
TypeScript
import { useState } from 'react';
|
|
import { Logs, MessageSquare } from 'lucide-react';
|
|
import { Input } from '../ui/input';
|
|
import { Label } from '../ui/label';
|
|
import { Separator } from '../ui/separator';
|
|
import { ContactAvatar } from '../ContactAvatar';
|
|
import {
|
|
captureLastViewedConversationFromHash,
|
|
getReopenLastConversationEnabled,
|
|
setReopenLastConversationEnabled,
|
|
} from '../../utils/lastViewedConversation';
|
|
import { ThemeSelector } from './ThemeSelector';
|
|
import { getLocalLabel, setLocalLabel, type LocalLabel } from '../../utils/localLabel';
|
|
import {
|
|
DISTANCE_UNIT_LABELS,
|
|
DISTANCE_UNITS,
|
|
setSavedDistanceUnit,
|
|
} from '../../utils/distanceUnits';
|
|
import { useDistanceUnit } from '../../contexts/DistanceUnitContext';
|
|
import {
|
|
DEFAULT_FONT_SCALE,
|
|
FONT_SCALE_SLIDER_STEP,
|
|
MAX_FONT_SCALE,
|
|
MIN_FONT_SCALE,
|
|
getSavedFontScale,
|
|
setSavedFontScale,
|
|
} from '../../utils/fontScale';
|
|
|
|
export function SettingsLocalSection({
|
|
onLocalLabelChange,
|
|
className,
|
|
}: {
|
|
onLocalLabelChange?: (label: LocalLabel) => void;
|
|
className?: string;
|
|
}) {
|
|
const { distanceUnit, setDistanceUnit } = useDistanceUnit();
|
|
const [reopenLastConversation, setReopenLastConversation] = useState(
|
|
getReopenLastConversationEnabled
|
|
);
|
|
const [localLabelText, setLocalLabelText] = useState(() => getLocalLabel().text);
|
|
const [localLabelColor, setLocalLabelColor] = useState(() => getLocalLabel().color);
|
|
const [fontScale, setFontScale] = useState(getSavedFontScale);
|
|
const [fontScaleSlider, setFontScaleSlider] = useState(getSavedFontScale);
|
|
const [fontScaleInput, setFontScaleInput] = useState(() => String(getSavedFontScale()));
|
|
|
|
const commitFontScale = (nextScale: number) => {
|
|
const normalized = setSavedFontScale(nextScale);
|
|
setFontScale(normalized);
|
|
setFontScaleSlider(normalized);
|
|
setFontScaleInput(String(normalized));
|
|
};
|
|
|
|
const restoreFontScaleInput = () => {
|
|
setFontScaleInput(String(fontScale));
|
|
};
|
|
|
|
const handleSliderChange = (nextScale: number) => {
|
|
setFontScaleSlider(nextScale);
|
|
setFontScaleInput(String(nextScale));
|
|
};
|
|
|
|
const handleSliderCommit = (nextScale: number) => {
|
|
commitFontScale(nextScale);
|
|
};
|
|
|
|
const handleToggleReopenLastConversation = (enabled: boolean) => {
|
|
setReopenLastConversation(enabled);
|
|
setReopenLastConversationEnabled(enabled);
|
|
if (enabled) {
|
|
captureLastViewedConversationFromHash();
|
|
}
|
|
};
|
|
|
|
return (
|
|
<div className={className}>
|
|
<p className="text-sm text-muted-foreground">
|
|
These settings apply only to this device/browser.
|
|
</p>
|
|
|
|
<div className="space-y-1">
|
|
<Label>Color Scheme</Label>
|
|
<ThemeSelector />
|
|
<ThemePreview className="mt-6" />
|
|
</div>
|
|
|
|
<Separator />
|
|
|
|
<div className="space-y-3">
|
|
<Label>Local Label</Label>
|
|
<div className="flex items-center gap-2">
|
|
<Input
|
|
value={localLabelText}
|
|
onChange={(e) => {
|
|
const text = e.target.value;
|
|
setLocalLabelText(text);
|
|
setLocalLabel(text, localLabelColor);
|
|
onLocalLabelChange?.({ text, color: localLabelColor });
|
|
}}
|
|
placeholder="e.g. Home Base, Field Radio 2"
|
|
aria-label="Local label text"
|
|
className="flex-1"
|
|
/>
|
|
<input
|
|
type="color"
|
|
value={localLabelColor}
|
|
onChange={(e) => {
|
|
const color = e.target.value;
|
|
setLocalLabelColor(color);
|
|
setLocalLabel(localLabelText, color);
|
|
onLocalLabelChange?.({ text: localLabelText, color });
|
|
}}
|
|
aria-label="Local label color"
|
|
className="w-10 h-9 rounded border border-input cursor-pointer bg-transparent p-0.5"
|
|
/>
|
|
</div>
|
|
<p className="text-xs text-muted-foreground">
|
|
Display a colored banner at the top of the page to identify this instance.
|
|
</p>
|
|
</div>
|
|
|
|
<Separator />
|
|
|
|
<div className="space-y-3">
|
|
<Label htmlFor="font-scale-input">Relative Font Size</Label>
|
|
<div className="flex flex-col gap-3 sm:flex-row sm:items-center">
|
|
<input
|
|
type="range"
|
|
min={MIN_FONT_SCALE}
|
|
max={MAX_FONT_SCALE}
|
|
step={FONT_SCALE_SLIDER_STEP}
|
|
value={fontScaleSlider}
|
|
onChange={(event) => handleSliderChange(Number(event.target.value))}
|
|
onMouseUp={(event) => handleSliderCommit(Number(event.currentTarget.value))}
|
|
onTouchEnd={(event) => handleSliderCommit(Number(event.currentTarget.value))}
|
|
onKeyUp={(event) => handleSliderCommit(Number(event.currentTarget.value))}
|
|
onBlur={(event) => handleSliderCommit(Number(event.currentTarget.value))}
|
|
aria-label="Relative font size slider"
|
|
className="w-full accent-primary sm:flex-1"
|
|
/>
|
|
<div className="flex items-center gap-2 sm:w-40">
|
|
<Input
|
|
id="font-scale-input"
|
|
type="number"
|
|
inputMode="decimal"
|
|
min={MIN_FONT_SCALE}
|
|
max={MAX_FONT_SCALE}
|
|
step="any"
|
|
value={fontScaleInput}
|
|
onChange={(event) => {
|
|
const nextValue = event.target.value;
|
|
setFontScaleInput(nextValue);
|
|
|
|
if (nextValue === '') {
|
|
return;
|
|
}
|
|
|
|
if (event.target.validity.valid && Number.isFinite(event.target.valueAsNumber)) {
|
|
commitFontScale(event.target.valueAsNumber);
|
|
}
|
|
}}
|
|
onBlur={() => {
|
|
const parsed = Number.parseFloat(fontScaleInput);
|
|
if (!Number.isFinite(parsed)) {
|
|
restoreFontScaleInput();
|
|
return;
|
|
}
|
|
commitFontScale(parsed);
|
|
}}
|
|
onKeyDown={(event) => {
|
|
if (event.key !== 'Enter') {
|
|
return;
|
|
}
|
|
event.preventDefault();
|
|
const parsed = Number.parseFloat(fontScaleInput);
|
|
if (!Number.isFinite(parsed)) {
|
|
restoreFontScaleInput();
|
|
return;
|
|
}
|
|
commitFontScale(parsed);
|
|
}}
|
|
aria-label="Relative font size percentage"
|
|
/>
|
|
<span className="text-sm text-muted-foreground">%</span>
|
|
</div>
|
|
<button
|
|
type="button"
|
|
onClick={() => commitFontScale(DEFAULT_FONT_SCALE)}
|
|
className="inline-flex h-9 items-center justify-center rounded-md border border-input px-3 text-sm font-medium transition-colors hover:bg-accent focus-visible:outline-none focus-visible:ring-2 focus-visible:ring-ring disabled:cursor-not-allowed disabled:opacity-50"
|
|
disabled={fontScale === DEFAULT_FONT_SCALE}
|
|
>
|
|
Reset
|
|
</button>
|
|
</div>
|
|
<p className="text-xs text-muted-foreground">
|
|
Scales the app's typography for this browser only. The slider moves in 5% steps; the
|
|
number field accepts any value from 25% to 400%.
|
|
</p>
|
|
</div>
|
|
|
|
<Separator />
|
|
|
|
<div className="space-y-3">
|
|
<Label htmlFor="distance-units">Distance Units</Label>
|
|
<select
|
|
id="distance-units"
|
|
value={distanceUnit}
|
|
onChange={(event) => {
|
|
const nextUnit = event.target.value as (typeof DISTANCE_UNITS)[number];
|
|
setSavedDistanceUnit(nextUnit);
|
|
setDistanceUnit(nextUnit);
|
|
}}
|
|
className="w-full rounded-md border border-input bg-background px-3 py-2 text-sm"
|
|
>
|
|
{DISTANCE_UNITS.map((unit) => (
|
|
<option key={unit} value={unit}>
|
|
{DISTANCE_UNIT_LABELS[unit]}
|
|
</option>
|
|
))}
|
|
</select>
|
|
<p className="text-xs text-muted-foreground">
|
|
Controls how distances are shown throughout the app.
|
|
</p>
|
|
</div>
|
|
|
|
<Separator />
|
|
|
|
<label className="flex items-center gap-3 cursor-pointer">
|
|
<input
|
|
type="checkbox"
|
|
checked={reopenLastConversation}
|
|
onChange={(e) => handleToggleReopenLastConversation(e.target.checked)}
|
|
className="w-4 h-4 rounded border-input accent-primary"
|
|
/>
|
|
<span className="text-sm">Reopen to last viewed channel/conversation</span>
|
|
</label>
|
|
</div>
|
|
);
|
|
}
|
|
|
|
function ThemePreview({ className }: { className?: string }) {
|
|
return (
|
|
<div className={`rounded-lg border border-border bg-card p-3 ${className ?? ''}`}>
|
|
<p className="text-xs text-muted-foreground mb-3">
|
|
Preview alert, message, sidebar, and badge contrast for the selected theme.
|
|
</p>
|
|
|
|
<div className="space-y-2">
|
|
<PreviewBanner className="border border-status-connected/30 bg-status-connected/15 text-status-connected">
|
|
Connected preview: radio link healthy and syncing.
|
|
</PreviewBanner>
|
|
<PreviewBanner className="border border-warning/50 bg-warning/10 text-warning">
|
|
Warning preview: packet audit suggests missing history.
|
|
</PreviewBanner>
|
|
<PreviewBanner className="border border-destructive/30 bg-destructive/10 text-destructive">
|
|
Error preview: radio reconnect failed.
|
|
</PreviewBanner>
|
|
</div>
|
|
|
|
<div className="mt-4 space-y-2">
|
|
<PreviewMessage
|
|
sender="Alice"
|
|
bubbleClassName="bg-msg-incoming text-foreground"
|
|
text="Hello, mesh!"
|
|
/>
|
|
<PreviewMessage
|
|
sender="You"
|
|
alignRight
|
|
bubbleClassName="bg-msg-outgoing text-foreground"
|
|
text="Hi there! I'm using RemoteTerm."
|
|
/>
|
|
</div>
|
|
|
|
<div className="mt-4 rounded-md border border-border bg-background p-2">
|
|
<p className="mb-2 text-[11px] font-medium text-muted-foreground">Sidebar preview</p>
|
|
<div className="space-y-1">
|
|
<PreviewSidebarRow
|
|
active
|
|
leading={
|
|
<span
|
|
className="flex h-6 w-6 items-center justify-center rounded-md bg-primary/10 text-primary"
|
|
aria-hidden="true"
|
|
>
|
|
<Logs className="h-3.5 w-3.5" />
|
|
</span>
|
|
}
|
|
label="Packet Feed"
|
|
/>
|
|
<PreviewSidebarRow
|
|
leading={<ContactAvatar name="Alice" publicKey={'ab'.repeat(32)} size={24} />}
|
|
label="Alice"
|
|
badge={
|
|
<span className="rounded-full bg-badge-unread/90 px-1.5 py-0.5 text-[10px] font-semibold text-badge-unread-foreground">
|
|
3
|
|
</span>
|
|
}
|
|
/>
|
|
<PreviewSidebarRow
|
|
leading={<ContactAvatar name="Mesh Ops" publicKey={'cd'.repeat(32)} size={24} />}
|
|
label="Mesh Ops"
|
|
badge={
|
|
<span className="rounded-full bg-badge-mention px-1.5 py-0.5 text-[10px] font-semibold text-badge-mention-foreground">
|
|
@2
|
|
</span>
|
|
}
|
|
/>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
);
|
|
}
|
|
|
|
function PreviewBanner({ children, className }: { children: React.ReactNode; className: string }) {
|
|
return <div className={`rounded-md px-3 py-2 text-xs ${className}`}>{children}</div>;
|
|
}
|
|
|
|
function PreviewMessage({
|
|
sender,
|
|
text,
|
|
bubbleClassName,
|
|
alignRight = false,
|
|
}: {
|
|
sender: string;
|
|
text: string;
|
|
bubbleClassName: string;
|
|
alignRight?: boolean;
|
|
}) {
|
|
return (
|
|
<div className={`flex ${alignRight ? 'justify-end' : 'justify-start'}`}>
|
|
<div className={`max-w-[85%] ${alignRight ? 'items-end' : 'items-start'} flex flex-col`}>
|
|
<span className="mb-1 text-[11px] text-muted-foreground">{sender}</span>
|
|
<div className={`rounded-2xl px-3 py-2 text-sm break-words ${bubbleClassName}`}>{text}</div>
|
|
</div>
|
|
</div>
|
|
);
|
|
}
|
|
|
|
function PreviewSidebarRow({
|
|
leading,
|
|
label,
|
|
badge,
|
|
active = false,
|
|
}: {
|
|
leading: React.ReactNode;
|
|
label: string;
|
|
badge?: React.ReactNode;
|
|
active?: boolean;
|
|
}) {
|
|
return (
|
|
<div
|
|
data-active={active ? 'true' : undefined}
|
|
className={`sidebar-action-row flex items-center gap-2 rounded-md border-l-2 px-3 py-2 text-[13px] ${
|
|
active ? 'border-l-primary bg-accent text-foreground' : 'border-l-transparent'
|
|
}`}
|
|
>
|
|
<span className="sidebar-tool-icon" aria-hidden="true">
|
|
{leading}
|
|
</span>
|
|
<span className={`sidebar-tool-label min-w-0 flex-1 truncate ${active ? 'font-medium' : ''}`}>
|
|
{label}
|
|
</span>
|
|
{badge}
|
|
{!badge && (
|
|
<span className="sidebar-tool-icon" aria-hidden="true">
|
|
<MessageSquare className="h-3.5 w-3.5" />
|
|
</span>
|
|
)}
|
|
</div>
|
|
);
|
|
}
|