2026-07-10 05:10:31 +00:00
|
|
|
|
import { useEffect, useState } from "react";
|
|
|
|
|
|
import { PageHeader } from "../components/layout/PageHeader";
|
2026-07-10 12:54:45 +00:00
|
|
|
|
import { ExtensionInstallCard } from "../components/settings/ExtensionInstallCard";
|
2026-07-10 05:10:31 +00:00
|
|
|
|
import { Button, Card, Input, Select } from "../components/ui";
|
|
|
|
|
|
import { useData, useRepos } from "../data/DataContext";
|
|
|
|
|
|
import type { AiSettings, PlacementSettings } from "../domain/types";
|
|
|
|
|
|
import { useI18n } from "../i18n/I18nContext";
|
|
|
|
|
|
import { CURRENCIES, LOCALES, type AppCurrency, type AppLocale } from "../lib/i18n/types";
|
|
|
|
|
|
import type { ThemePreference } from "../lib/theme";
|
|
|
|
|
|
import { useTheme } from "../theme/ThemeContext";
|
|
|
|
|
|
|
2026-07-10 12:54:45 +00:00
|
|
|
|
/** 可選 provider;文案/研究/延伸共用目前選中的那一組 */
|
|
|
|
|
|
const AI_PROVIDERS = [
|
|
|
|
|
|
{ id: "xai", label: "xAI" },
|
|
|
|
|
|
{ id: "opencode-go", label: "OpenCode Go" },
|
|
|
|
|
|
] as const;
|
|
|
|
|
|
|
|
|
|
|
|
type AiProviderId = (typeof AI_PROVIDERS)[number]["id"];
|
|
|
|
|
|
|
|
|
|
|
|
function normalizeProvider(id: string): AiProviderId {
|
|
|
|
|
|
return id === "opencode-go" ? "opencode-go" : "xai";
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2026-07-10 05:10:31 +00:00
|
|
|
|
export function SettingsPage() {
|
|
|
|
|
|
const repos = useRepos();
|
2026-07-10 12:54:45 +00:00
|
|
|
|
const { refresh, dataSource, setDataSource } = useData();
|
2026-07-10 05:10:31 +00:00
|
|
|
|
const { t, locale, currency, setPrefs } = useI18n();
|
|
|
|
|
|
const { preference, setPreference } = useTheme();
|
|
|
|
|
|
|
|
|
|
|
|
const [ai, setAi] = useState<AiSettings | null>(null);
|
|
|
|
|
|
const [placement, setPlacement] = useState<PlacementSettings | null>(null);
|
|
|
|
|
|
const [apiKey, setApiKey] = useState("");
|
|
|
|
|
|
const [exaKey, setExaKey] = useState("");
|
2026-07-10 12:54:45 +00:00
|
|
|
|
const [models, setModels] = useState<string[]>([]);
|
2026-07-10 05:10:31 +00:00
|
|
|
|
const [message, setMessage] = useState("");
|
|
|
|
|
|
const [busy, setBusy] = useState("");
|
|
|
|
|
|
const [draftLocale, setDraftLocale] = useState<AppLocale>(locale);
|
|
|
|
|
|
const [draftCurrency, setDraftCurrency] = useState<AppCurrency>(currency);
|
|
|
|
|
|
|
|
|
|
|
|
useEffect(() => {
|
|
|
|
|
|
setDraftLocale(locale);
|
|
|
|
|
|
setDraftCurrency(currency);
|
|
|
|
|
|
}, [locale, currency]);
|
|
|
|
|
|
|
2026-07-10 12:54:45 +00:00
|
|
|
|
/** 進頁:讀目前設定 + 依目前 provider 拉模型(保留已選 model,否則用預設第一個) */
|
2026-07-10 05:10:31 +00:00
|
|
|
|
useEffect(() => {
|
|
|
|
|
|
void (async () => {
|
2026-07-10 12:54:45 +00:00
|
|
|
|
const a = await repos.settings.getAi();
|
|
|
|
|
|
const p = await repos.settings.getPlacement();
|
|
|
|
|
|
const provider = normalizeProvider(a.provider);
|
|
|
|
|
|
let list: string[] = [];
|
|
|
|
|
|
try {
|
|
|
|
|
|
list = await repos.settings.listModels(provider);
|
|
|
|
|
|
} catch {
|
|
|
|
|
|
list = [a.model || "grok-3"];
|
|
|
|
|
|
}
|
|
|
|
|
|
setModels(list);
|
|
|
|
|
|
const model = list.includes(a.model) ? a.model : list[0] || a.model;
|
|
|
|
|
|
setAi({
|
|
|
|
|
|
...a,
|
|
|
|
|
|
provider,
|
|
|
|
|
|
model,
|
|
|
|
|
|
research_provider: provider,
|
|
|
|
|
|
research_model: model,
|
|
|
|
|
|
});
|
|
|
|
|
|
setPlacement(p);
|
2026-07-10 05:10:31 +00:00
|
|
|
|
})();
|
|
|
|
|
|
}, [repos.settings]);
|
|
|
|
|
|
|
2026-07-10 12:54:45 +00:00
|
|
|
|
/** 換 provider:打後端拿模型清單,保留同名 model 或落到預設 */
|
|
|
|
|
|
async function onProviderChange(nextId: string) {
|
2026-07-10 05:10:31 +00:00
|
|
|
|
if (!ai) return;
|
2026-07-10 12:54:45 +00:00
|
|
|
|
const provider = normalizeProvider(nextId);
|
|
|
|
|
|
setBusy("ai");
|
2026-07-10 05:10:31 +00:00
|
|
|
|
try {
|
2026-07-10 12:54:45 +00:00
|
|
|
|
const list = await repos.settings.listModels(provider);
|
|
|
|
|
|
setModels(list);
|
|
|
|
|
|
const model = list.includes(ai.model) ? ai.model : list[0] || ai.model;
|
|
|
|
|
|
setAi({
|
|
|
|
|
|
...ai,
|
|
|
|
|
|
provider,
|
|
|
|
|
|
model,
|
|
|
|
|
|
research_provider: provider,
|
|
|
|
|
|
research_model: model,
|
|
|
|
|
|
});
|
2026-07-10 05:10:31 +00:00
|
|
|
|
} finally {
|
|
|
|
|
|
setBusy("");
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
async function saveAi() {
|
|
|
|
|
|
if (!ai) return;
|
|
|
|
|
|
setBusy("ai");
|
|
|
|
|
|
try {
|
2026-07-10 12:54:45 +00:00
|
|
|
|
const provider = normalizeProvider(ai.provider);
|
|
|
|
|
|
// 同一 provider + 同一 model 用於文案/研究
|
2026-07-10 05:10:31 +00:00
|
|
|
|
const next = await repos.settings.saveAi({
|
2026-07-10 12:54:45 +00:00
|
|
|
|
provider,
|
|
|
|
|
|
model: ai.model,
|
|
|
|
|
|
research_provider: provider,
|
|
|
|
|
|
research_model: ai.model,
|
2026-07-10 05:10:31 +00:00
|
|
|
|
api_key: apiKey || undefined,
|
2026-07-10 12:54:45 +00:00
|
|
|
|
research_api_key: apiKey || undefined,
|
2026-07-10 05:10:31 +00:00
|
|
|
|
});
|
|
|
|
|
|
setAi(next);
|
|
|
|
|
|
setApiKey("");
|
|
|
|
|
|
setMessage(t("settings.aiSaved"));
|
|
|
|
|
|
refresh();
|
|
|
|
|
|
} finally {
|
|
|
|
|
|
setBusy("");
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
async function savePlacement() {
|
|
|
|
|
|
if (!placement) return;
|
|
|
|
|
|
setBusy("placement");
|
|
|
|
|
|
try {
|
|
|
|
|
|
const next = await repos.settings.savePlacement({
|
|
|
|
|
|
...placement,
|
2026-07-10 12:54:45 +00:00
|
|
|
|
web_search_provider: "exa",
|
2026-07-10 05:10:31 +00:00
|
|
|
|
exa_api_key: exaKey || undefined,
|
|
|
|
|
|
});
|
|
|
|
|
|
setPlacement(next);
|
|
|
|
|
|
setExaKey("");
|
|
|
|
|
|
setMessage(t("settings.searchSaved"));
|
|
|
|
|
|
refresh();
|
|
|
|
|
|
} finally {
|
|
|
|
|
|
setBusy("");
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
function saveLocaleCurrency() {
|
|
|
|
|
|
setPrefs({ locale: draftLocale, currency: draftCurrency });
|
|
|
|
|
|
setMessage(t("settings.localeSaved"));
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
function pickTheme(next: ThemePreference) {
|
|
|
|
|
|
setPreference(next);
|
|
|
|
|
|
setMessage(t("settings.themeSaved"));
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2026-07-10 12:54:45 +00:00
|
|
|
|
const modelOptions = models.length ? models : [ai?.model || "grok-3"];
|
|
|
|
|
|
|
2026-07-10 05:10:31 +00:00
|
|
|
|
return (
|
|
|
|
|
|
<>
|
|
|
|
|
|
<PageHeader title={t("settings.title")} />
|
|
|
|
|
|
|
|
|
|
|
|
{message ? (
|
|
|
|
|
|
<p className="hb-banner-ok" role="status">
|
|
|
|
|
|
{message}
|
|
|
|
|
|
</p>
|
|
|
|
|
|
) : null}
|
|
|
|
|
|
|
|
|
|
|
|
<Card title={t("settings.appearance")}>
|
|
|
|
|
|
<div className="hb-stack">
|
|
|
|
|
|
<p className="hb-field__label" style={{ margin: 0 }}>
|
|
|
|
|
|
{t("settings.theme")}
|
|
|
|
|
|
</p>
|
|
|
|
|
|
<div className="hb-theme-picker" role="group" aria-label={t("settings.theme")}>
|
|
|
|
|
|
{(
|
|
|
|
|
|
[
|
|
|
|
|
|
["light", t("settings.themeLight")],
|
|
|
|
|
|
["dark", t("settings.themeDark")],
|
|
|
|
|
|
["system", t("settings.themeSystem")],
|
|
|
|
|
|
] as const
|
|
|
|
|
|
).map(([id, label]) => (
|
|
|
|
|
|
<button
|
|
|
|
|
|
key={id}
|
|
|
|
|
|
type="button"
|
|
|
|
|
|
className={`hb-theme-picker__btn${preference === id ? " is-active" : ""}`}
|
|
|
|
|
|
onClick={() => pickTheme(id)}
|
|
|
|
|
|
>
|
|
|
|
|
|
<span className={`hb-theme-picker__swatch hb-theme-picker__swatch--${id}`} aria-hidden />
|
|
|
|
|
|
{label}
|
|
|
|
|
|
</button>
|
|
|
|
|
|
))}
|
|
|
|
|
|
</div>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
</Card>
|
|
|
|
|
|
|
2026-07-10 12:54:45 +00:00
|
|
|
|
<Card title={t("settings.dataSource")}>
|
|
|
|
|
|
<div className="hb-stack">
|
|
|
|
|
|
<p className="text-muted" style={{ margin: 0, fontSize: "0.85rem" }}>
|
|
|
|
|
|
{t("settings.dataSourceHint")}
|
|
|
|
|
|
</p>
|
|
|
|
|
|
<div className="hb-theme-picker" role="group" aria-label={t("settings.dataSource")}>
|
|
|
|
|
|
{(
|
|
|
|
|
|
[
|
|
|
|
|
|
["mock", t("settings.dataSourceMock")],
|
|
|
|
|
|
["live", t("settings.dataSourceLive")],
|
|
|
|
|
|
] as const
|
|
|
|
|
|
).map(([id, label]) => (
|
|
|
|
|
|
<button
|
|
|
|
|
|
key={id}
|
|
|
|
|
|
type="button"
|
|
|
|
|
|
className={`hb-theme-picker__btn${dataSource === id ? " is-active" : ""}`}
|
|
|
|
|
|
onClick={() => {
|
|
|
|
|
|
if (dataSource === id) return;
|
|
|
|
|
|
setDataSource(id);
|
|
|
|
|
|
setMessage(
|
|
|
|
|
|
id === "live" ? t("settings.dataSourceSwitchedLive") : t("settings.dataSourceSwitchedMock"),
|
|
|
|
|
|
);
|
|
|
|
|
|
}}
|
|
|
|
|
|
>
|
|
|
|
|
|
{label}
|
|
|
|
|
|
</button>
|
|
|
|
|
|
))}
|
|
|
|
|
|
</div>
|
|
|
|
|
|
<p className="text-muted" style={{ margin: 0, fontSize: "0.8rem" }}>
|
|
|
|
|
|
{t("settings.dataSourceCurrent")}: <strong>{dataSource}</strong>
|
|
|
|
|
|
{dataSource === "live" ? ` · ${t("settings.dataSourceLiveNeedGateway")}` : null}
|
|
|
|
|
|
</p>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
</Card>
|
|
|
|
|
|
|
2026-07-10 05:10:31 +00:00
|
|
|
|
<Card title={t("settings.localeCurrency")}>
|
|
|
|
|
|
<div className="hb-stack">
|
|
|
|
|
|
<div className="hb-grid-2">
|
|
|
|
|
|
<Select
|
|
|
|
|
|
label={t("settings.locale")}
|
|
|
|
|
|
value={draftLocale}
|
|
|
|
|
|
onChange={(e) => setDraftLocale(e.target.value as AppLocale)}
|
|
|
|
|
|
>
|
|
|
|
|
|
{LOCALES.map((l) => (
|
|
|
|
|
|
<option key={l.id} value={l.id}>
|
|
|
|
|
|
{t(`locale.${l.id}`)}
|
|
|
|
|
|
</option>
|
|
|
|
|
|
))}
|
|
|
|
|
|
</Select>
|
|
|
|
|
|
<Select
|
|
|
|
|
|
label={t("settings.currency")}
|
|
|
|
|
|
value={draftCurrency}
|
|
|
|
|
|
onChange={(e) => setDraftCurrency(e.target.value as AppCurrency)}
|
|
|
|
|
|
>
|
|
|
|
|
|
{CURRENCIES.map((c) => (
|
|
|
|
|
|
<option key={c.id} value={c.id}>
|
|
|
|
|
|
{t(`currency.${c.id}`)}
|
|
|
|
|
|
</option>
|
|
|
|
|
|
))}
|
|
|
|
|
|
</Select>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
<Button type="button" onClick={saveLocaleCurrency}>
|
|
|
|
|
|
{t("common.save")}
|
|
|
|
|
|
</Button>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
</Card>
|
|
|
|
|
|
|
|
|
|
|
|
<Card title={t("settings.ai")}>
|
|
|
|
|
|
{ai ? (
|
|
|
|
|
|
<div className="hb-stack">
|
2026-07-10 12:54:45 +00:00
|
|
|
|
<p className="text-muted" style={{ margin: 0, fontSize: "0.85rem" }}>
|
|
|
|
|
|
{t("settings.aiUnifiedHint")}
|
|
|
|
|
|
</p>
|
|
|
|
|
|
<Select
|
|
|
|
|
|
label={t("settings.provider")}
|
|
|
|
|
|
value={normalizeProvider(ai.provider)}
|
|
|
|
|
|
onChange={(e) => void onProviderChange(e.target.value)}
|
|
|
|
|
|
>
|
|
|
|
|
|
{AI_PROVIDERS.map((p) => (
|
|
|
|
|
|
<option key={p.id} value={p.id}>
|
|
|
|
|
|
{p.label}
|
|
|
|
|
|
</option>
|
|
|
|
|
|
))}
|
|
|
|
|
|
</Select>
|
|
|
|
|
|
<Select
|
|
|
|
|
|
label={t("settings.model")}
|
|
|
|
|
|
value={ai.model}
|
|
|
|
|
|
disabled={busy === "ai" && models.length === 0}
|
|
|
|
|
|
onChange={(e) => {
|
|
|
|
|
|
const provider = normalizeProvider(ai.provider);
|
|
|
|
|
|
setAi({
|
|
|
|
|
|
...ai,
|
|
|
|
|
|
provider,
|
|
|
|
|
|
model: e.target.value,
|
|
|
|
|
|
research_provider: provider,
|
|
|
|
|
|
research_model: e.target.value,
|
|
|
|
|
|
});
|
|
|
|
|
|
}}
|
|
|
|
|
|
>
|
|
|
|
|
|
{modelOptions.map((m) => (
|
|
|
|
|
|
<option key={m} value={m}>
|
|
|
|
|
|
{m}
|
|
|
|
|
|
</option>
|
|
|
|
|
|
))}
|
|
|
|
|
|
</Select>
|
2026-07-10 05:10:31 +00:00
|
|
|
|
<Input
|
2026-07-10 12:54:45 +00:00
|
|
|
|
label={t("settings.apiKey")}
|
2026-07-10 05:10:31 +00:00
|
|
|
|
type="password"
|
|
|
|
|
|
value={apiKey}
|
|
|
|
|
|
onChange={(e) => setApiKey(e.target.value)}
|
2026-07-10 12:54:45 +00:00
|
|
|
|
placeholder={
|
|
|
|
|
|
ai.api_key_configured || ai.research_api_key_configured
|
|
|
|
|
|
? t("settings.configured")
|
|
|
|
|
|
: t("settings.notConfigured")
|
|
|
|
|
|
}
|
2026-07-10 05:10:31 +00:00
|
|
|
|
/>
|
|
|
|
|
|
<Button type="button" onClick={() => void saveAi()} disabled={busy === "ai"}>
|
|
|
|
|
|
{t("common.save")}
|
|
|
|
|
|
</Button>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
) : (
|
|
|
|
|
|
<p className="text-muted">{t("common.loading")}</p>
|
|
|
|
|
|
)}
|
|
|
|
|
|
</Card>
|
|
|
|
|
|
|
|
|
|
|
|
<Card title={t("settings.search")}>
|
|
|
|
|
|
{placement ? (
|
|
|
|
|
|
<div className="hb-stack">
|
2026-07-10 12:54:45 +00:00
|
|
|
|
<Input label={t("settings.searchProvider")} value="Exa" readOnly disabled />
|
2026-07-10 05:10:31 +00:00
|
|
|
|
<Input
|
|
|
|
|
|
label={t("settings.exaKey")}
|
|
|
|
|
|
type="password"
|
|
|
|
|
|
value={exaKey}
|
|
|
|
|
|
onChange={(e) => setExaKey(e.target.value)}
|
|
|
|
|
|
placeholder={
|
|
|
|
|
|
placement.exa_api_key_configured
|
|
|
|
|
|
? t("settings.configured")
|
|
|
|
|
|
: t("settings.notConfigured")
|
|
|
|
|
|
}
|
|
|
|
|
|
/>
|
2026-07-10 12:54:45 +00:00
|
|
|
|
<Select
|
|
|
|
|
|
label={t("settings.expand")}
|
|
|
|
|
|
value={placement.expand_strategy === "brave" ? "hybrid" : placement.expand_strategy}
|
|
|
|
|
|
onChange={(e) =>
|
|
|
|
|
|
setPlacement({
|
|
|
|
|
|
...placement,
|
|
|
|
|
|
web_search_provider: "exa",
|
|
|
|
|
|
expand_strategy: e.target.value as PlacementSettings["expand_strategy"],
|
|
|
|
|
|
})
|
|
|
|
|
|
}
|
|
|
|
|
|
>
|
|
|
|
|
|
<option value="llm">LLM</option>
|
|
|
|
|
|
<option value="hybrid">Hybrid</option>
|
|
|
|
|
|
</Select>
|
|
|
|
|
|
<div className="hb-stack hb-stack--tight">
|
|
|
|
|
|
<label className="hb-check-row">
|
|
|
|
|
|
<input
|
|
|
|
|
|
type="checkbox"
|
|
|
|
|
|
checked={placement.dev_mode_enabled}
|
|
|
|
|
|
onChange={(e) =>
|
|
|
|
|
|
setPlacement({ ...placement, dev_mode_enabled: e.target.checked })
|
|
|
|
|
|
}
|
|
|
|
|
|
/>
|
|
|
|
|
|
<span>{t("settings.devMode")}</span>
|
|
|
|
|
|
</label>
|
|
|
|
|
|
<p className="text-muted hb-settings-dev-hint">{t("settings.devModeHint")}</p>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
{placement.dev_mode_enabled ? (
|
|
|
|
|
|
<div className="hb-settings-ext-wrap">
|
|
|
|
|
|
<ExtensionInstallCard />
|
|
|
|
|
|
</div>
|
|
|
|
|
|
) : null}
|
2026-07-10 05:10:31 +00:00
|
|
|
|
<Button type="button" onClick={() => void savePlacement()} disabled={busy === "placement"}>
|
|
|
|
|
|
{t("common.save")}
|
|
|
|
|
|
</Button>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
) : (
|
|
|
|
|
|
<p className="text-muted">{t("common.loading")}</p>
|
|
|
|
|
|
)}
|
|
|
|
|
|
</Card>
|
|
|
|
|
|
</>
|
|
|
|
|
|
);
|
|
|
|
|
|
}
|