mirror of
https://github.com/deepseek-ai/deepseek-harness.git
synced 2026-08-29 04:26:38 +00:00
Add conversation adaptive content width and a Settings font-size control, with theme presenter, font-size row, snapshots, tests, and agent notes.
45 lines
1.8 KiB
TypeScript
45 lines
1.8 KiB
TypeScript
/** Host registration for the browser theme preference and pre-plugin palette. */
|
|
|
|
import type { Context } from '@deepseek-ai/cordis'
|
|
import type {} from '@deepseek-ai/dsh-host-webserver'
|
|
import { settingsNamespace } from '@deepseek-ai/dsh-settings'
|
|
import { bootThemeInjection } from './boot-theme.ts'
|
|
import {
|
|
DEFAULT_FONT_SIZE, DEFAULT_PREFERENCE, THEME_SETTINGS_NAMESPACE, ThemeSettingsSchema,
|
|
type ThemePreference, type ThemeSettings,
|
|
} from './theme-settings.ts'
|
|
|
|
export {
|
|
DEFAULT_FONT_SIZE, DEFAULT_PREFERENCE, FONT_SIZE_FIELD, FONT_SIZE_MAX, FONT_SIZE_MIN,
|
|
THEME_PREFERENCE_FIELD, THEME_PREFERENCES, THEME_SETTINGS_NAMESPACE,
|
|
type ThemePreference, type ThemeSettings,
|
|
} from './theme-settings.ts'
|
|
|
|
const THEME_NAMESPACE = settingsNamespace(THEME_SETTINGS_NAMESPACE)
|
|
|
|
/** Read the registered theme section or the schema defaults without a settings provider. */
|
|
function readSection(ctx: Context): { preference: ThemePreference; fontSize: number } {
|
|
const fallback = { preference: DEFAULT_PREFERENCE, fontSize: DEFAULT_FONT_SIZE }
|
|
const settings = ctx.get('settings')
|
|
if (settings === undefined) return fallback
|
|
const section = settings.get(THEME_NAMESPACE) as ThemeSettings | undefined
|
|
if (section === undefined) return fallback
|
|
return section
|
|
}
|
|
|
|
/**
|
|
* Register the durable theme section when the optional settings service is
|
|
* composed, and answer every index injection collection with the current
|
|
* theme bootstrap row.
|
|
* @param ctx - Host context that may acquire the settings service.
|
|
*/
|
|
export function apply(ctx: Context): void {
|
|
ctx.inject(['settings'], (settingsCtx) => {
|
|
settingsCtx.settings.register(THEME_NAMESPACE, ThemeSettingsSchema)
|
|
})
|
|
ctx.on('webserver/index-inject', (table) => {
|
|
const section = readSection(ctx)
|
|
table.push(bootThemeInjection(section.preference, section.fontSize))
|
|
})
|
|
}
|