/** * Built-in desktop-shell presets for the "位置兼容模式" secondary setting * (scheme `preset`). DATA-DRIVEN by design: each shell's adaptation lives * in one entry (strip values / optional CSS), the core applies it through * the SAME generic strip variable and CSS-injection mechanism — adding a * shell is adding data, never a code path. * * Inclusion rule (maintained in docs/external-plugin-guide.md §12): only shells that (a) appear * in this repo's issues/PRs (a user actually hit a problem) and (b) have * 100+ GitHub stars (a real user base). The mechanism is opt-in: auto * detection never applies a preset — the settings badge only SUGGESTS it. */ import { t } from './locales.ts' import type { DesktopEnv } from './desktop-env.ts' export interface ShellPreset { /** Stable preset id (persisted in `titleBarPresetId`). */ readonly id: string /** User-facing name of the shell. */ readonly title: string /** One-line description shown in the settings popup (i18n friendly: * string or () => string — the plain string form is the raw-text * fallback when no dictionary key covers the preset). */ readonly desc: string | (() => string) /** * The top strip (px) this shell reserves over web content, per * environment — the fallback used when neither the standard WCO API nor * the `dsh-desktop-titlebar-inset` contract parameter is available. * Return undefined when the shell needs no strip in that environment. * MUST be pure (called during render). */ readonly stripFor?: (env: DesktopEnv) => number | undefined /** * Extra CSS applied while the preset is enabled (injected last, after the * plugin's own styles). Targets the plugin's stable data attributes and * shell-declared body/URL markers only — never other shells' class names. * Empty for presets fully covered by the strip variable. */ readonly css?: string /** * Whether this shell's marker is currently visible (URL stamps / preload * markers — see desktop-env.ts). Used ONLY for the settings "已检测" * badge; never auto-applies anything. MUST be pure. */ readonly detect?: (env: DesktopEnv) => boolean } /** * DeepSeek Harness Desktop (anywhere-labs, Electron, 16k+ stars — the most * reported shell in this repo's issues/PRs). Advanced mode: macOS reserves * a 20px caption row (traffic lights top-left), win32 draws the native * window controls in a ~32px overlay (WCO reports the real height when * available, which the auto scheme already consumes; the 32 is the * no-WCO fallback). Compatibility mode keeps the native frame — nothing. */ const DSH_DESKTOP: ShellPreset = { id: 'dsh-desktop', title: 'DeepSeek Harness Desktop', desc: () => t('presetDshDesktopDesc'), stripFor: (env) => { if (env.mode !== 'advanced') return undefined if (env.platform === 'darwin') return 20 if (env.platform === 'win32') return 32 return undefined }, detect: (env) => env.mode === 'advanced', } const PRESETS: readonly ShellPreset[] = [ DSH_DESKTOP, ] /** All built-in shell presets (registration order = settings list order). */ export function getShellPresets(): readonly ShellPreset[] { return PRESETS } /** One preset by id, or undefined for an unknown/empty id. */ export function getShellPreset(id: string): ShellPreset | undefined { return PRESETS.find(preset => preset.id === id) } /** The strip the active preset contributes for the given environment. */ export function presetStripFor(preset: ShellPreset | undefined, env: DesktopEnv): number | undefined { return preset?.stripFor?.(env) }