dsh-coding-subscription-oauth 0.5.7 → 0.6.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +211 -182
- package/CONTRIBUTING.md +120 -109
- package/INSTALL.md +240 -209
- package/LICENSE +19 -19
- package/NOTICE +11 -11
- package/README.de.md +298 -293
- package/README.es.md +299 -294
- package/README.fr.md +299 -294
- package/README.ja.md +299 -294
- package/README.ko.md +299 -294
- package/README.md +313 -306
- package/README.pt-BR.md +299 -294
- package/README.ru.md +299 -294
- package/README.zh-CN.md +311 -304
- package/compatibility/dsh-bom.json +43 -0
- package/cordis.patch.yml +13 -13
- package/docs/00-project-rules.md +195 -195
- package/docs/02-architecture.md +134 -129
- package/docs/02-architecture.zh-CN.md +134 -129
- package/lib/auth-routes.d.ts +8 -15
- package/lib/auth-routes.d.ts.map +1 -1
- package/lib/bin.js +746 -1402
- package/lib/bin.js.map +4 -4
- package/lib/capability-routes.d.ts +3 -3
- package/lib/capability-routes.d.ts.map +1 -1
- package/lib/capability-settings.d.ts +5 -4
- package/lib/capability-settings.d.ts.map +1 -1
- package/lib/client.js +27 -8
- package/lib/client.js.map +4 -4
- package/lib/compatibility.d.ts +46 -0
- package/lib/compatibility.d.ts.map +1 -0
- package/lib/dsh-host-adapter.d.ts +18 -0
- package/lib/dsh-host-adapter.d.ts.map +1 -0
- package/lib/gateway-auth.d.ts +1 -2
- package/lib/gateway-auth.d.ts.map +1 -1
- package/lib/gateway-routes.d.ts +3 -4
- package/lib/gateway-routes.d.ts.map +1 -1
- package/lib/gateway.d.ts +4 -0
- package/lib/gateway.d.ts.map +1 -1
- package/lib/ids.d.ts +3 -32
- package/lib/ids.d.ts.map +1 -1
- package/lib/imagine-routes.d.ts +2 -0
- package/lib/imagine-routes.d.ts.map +1 -1
- package/lib/index.d.ts +19 -4
- package/lib/index.d.ts.map +1 -1
- package/lib/index.js +26573 -1023
- package/lib/index.js.map +4 -4
- package/lib/invariant.js.map +1 -1
- package/lib/oauth-import-routes.d.ts +3 -4
- package/lib/oauth-import-routes.d.ts.map +1 -1
- package/lib/proxy.d.ts +3 -16
- package/lib/proxy.d.ts.map +1 -1
- package/lib/web-origin.d.ts +28 -4
- package/lib/web-origin.d.ts.map +1 -1
- package/lib/web-routes.d.ts.map +1 -1
- package/media/en/settings_accounts.png +0 -0
- package/media/en/settings_capabilities.png +0 -0
- package/media/en/settings_gateway.png +0 -0
- package/media/zh-CN/settings_accounts.png +0 -0
- package/media/zh-CN/settings_capabilities.png +0 -0
- package/media/zh-CN/settings_gateway.png +0 -0
- package/package.json +209 -172
- package/patches/dsh-agy@0.1.2.patch +25 -25
- package/scripts/release.mjs +186 -166
- package/scripts/smoke-deployed-routes.mjs +146 -146
- package/scripts/verify-deployed-catalog.mjs +87 -87
- package/src/adapter.ts +287 -287
- package/src/alias-adapter.ts +153 -153
- package/src/auth-routes.ts +921 -871
- package/src/auth.ts +67 -67
- package/src/bin.ts +350 -350
- package/src/capability-routes.ts +279 -275
- package/src/capability-runtime.ts +313 -313
- package/src/capability-settings.ts +658 -657
- package/src/capability-tools.ts +666 -666
- package/src/catalog.ts +271 -271
- package/src/client/GrokBuildSettings.tsx +770 -718
- package/src/client/api.ts +88 -88
- package/src/client/components/AboutTab.tsx +30 -20
- package/src/client/components/AccountsTab.tsx +241 -224
- package/src/client/components/Badge.tsx +33 -33
- package/src/client/components/CapabilitiesTab.tsx +265 -227
- package/src/client/components/CliPullPreview.tsx +116 -107
- package/src/client/components/CopyButton.tsx +57 -57
- package/src/client/components/GatewayTab.tsx +469 -364
- package/src/client/components/NoticeBanner.tsx +46 -46
- package/src/client/components/ProgressBar.tsx +53 -52
- package/src/client/components/ProviderCard.tsx +606 -502
- package/src/client/components/SettingsTabs.tsx +75 -75
- package/src/client/components/ToggleSwitch.tsx +71 -62
- package/src/client/constants.ts +224 -206
- package/src/client/display.ts +61 -61
- package/src/client/dshClientAdapter.ts +109 -0
- package/src/client/gatewaySnippets.ts +37 -36
- package/src/client/index.tsx +156 -37
- package/src/client/locales.ts +535 -487
- package/src/client/microStyles.ts +52 -33
- package/src/client/parsers.ts +396 -386
- package/src/client/styles.ts +325 -312
- package/src/client/types.ts +197 -185
- package/src/codex-http.ts +447 -447
- package/src/codex-images.ts +485 -485
- package/src/codex-model-capabilities.ts +320 -320
- package/src/codex-search.ts +245 -245
- package/src/codex-usage.ts +263 -263
- package/src/compatibility.ts +55 -0
- package/src/dsh-host-adapter.ts +171 -0
- package/src/gateway-anthropic-messages.ts +84 -84
- package/src/gateway-auth.ts +102 -100
- package/src/gateway-backend.ts +274 -274
- package/src/gateway-body.ts +49 -49
- package/src/gateway-config.ts +76 -76
- package/src/gateway-http.ts +104 -104
- package/src/gateway-openai-chat.ts +124 -124
- package/src/gateway-openai-responses.ts +53 -53
- package/src/gateway-parse.ts +224 -224
- package/src/gateway-protocol.ts +52 -52
- package/src/gateway-routes.ts +158 -152
- package/src/gateway.ts +258 -242
- package/src/grok-errors.ts +24 -24
- package/src/grok-imagine.ts +1627 -1627
- package/src/grok-import.ts +151 -151
- package/src/http-json.ts +82 -82
- package/src/ids.ts +59 -45
- package/src/imagine-routes.ts +463 -461
- package/src/index.ts +748 -598
- package/src/invariant.ts +17 -17
- package/src/kimi-errors.ts +26 -26
- package/src/media-store.ts +927 -927
- package/src/oauth-import-routes.ts +324 -314
- package/src/oauth-providers.ts +152 -152
- package/src/oauth-session.ts +183 -183
- package/src/oauth-sources.ts +1104 -1104
- package/src/oauth.ts +620 -620
- package/src/provider.ts +128 -128
- package/src/proxy.ts +11 -99
- package/src/redact.ts +72 -72
- package/src/session.ts +218 -218
- package/src/store.ts +217 -217
- package/src/web-origin.ts +296 -60
- package/src/web-routes.ts +38 -75
|
@@ -0,0 +1,109 @@
|
|
|
1
|
+
/** Capability adapter for the unstable DSH browser client surface. */
|
|
2
|
+
|
|
3
|
+
import type {} from "@deepseek-ai/dsh-client-locale/client";
|
|
4
|
+
import type { ClientContext } from "@deepseek-ai/dsh-client-runtime/client";
|
|
5
|
+
import type {} from "@deepseek-ai/dsh-client-ui-slots";
|
|
6
|
+
|
|
7
|
+
export interface DshClientCompatibilityDiagnostic {
|
|
8
|
+
readonly id: string;
|
|
9
|
+
readonly level: "warning" | "error";
|
|
10
|
+
readonly message: string;
|
|
11
|
+
readonly expected: "function";
|
|
12
|
+
readonly actual: string;
|
|
13
|
+
}
|
|
14
|
+
|
|
15
|
+
function hasSlots(context: unknown): context is ClientContext {
|
|
16
|
+
if (typeof context !== "object" || context === null) return false;
|
|
17
|
+
const slots = (context as { readonly slots?: unknown }).slots;
|
|
18
|
+
return (
|
|
19
|
+
typeof slots === "object" &&
|
|
20
|
+
slots !== null &&
|
|
21
|
+
typeof (slots as { readonly inject?: unknown }).inject === "function" &&
|
|
22
|
+
typeof (slots as { readonly register?: unknown }).register === "function"
|
|
23
|
+
);
|
|
24
|
+
}
|
|
25
|
+
|
|
26
|
+
export interface DshClientAdapter {
|
|
27
|
+
readonly context: ClientContext;
|
|
28
|
+
readonly locale: ClientContext["locale"];
|
|
29
|
+
readonly effect: ClientContext["effect"];
|
|
30
|
+
diagnostics(): readonly DshClientCompatibilityDiagnostic[];
|
|
31
|
+
assertCompatible(): void;
|
|
32
|
+
installSlots(options: {
|
|
33
|
+
readonly register: (context: ClientContext) => () => void;
|
|
34
|
+
readonly mountFallback: () => () => void;
|
|
35
|
+
}): void;
|
|
36
|
+
}
|
|
37
|
+
|
|
38
|
+
type InstallSlotsOptions = Parameters<DshClientAdapter["installSlots"]>[0];
|
|
39
|
+
|
|
40
|
+
export function createDshClientAdapter(context: ClientContext): DshClientAdapter {
|
|
41
|
+
const candidate = context as unknown as Record<string, unknown>;
|
|
42
|
+
const locale = candidate["locale"] as Record<string, unknown> | undefined;
|
|
43
|
+
const checks: Array<[string, unknown, DshClientCompatibilityDiagnostic["level"]]> = [
|
|
44
|
+
["client.effect", candidate["effect"], "error"],
|
|
45
|
+
["client.locale.register", locale?.["register"], "error"],
|
|
46
|
+
["client.locale.bind", locale?.["bind"], "error"],
|
|
47
|
+
["client.slots.inject", (candidate["slots"] as Record<string, unknown> | undefined)?.["inject"], "warning"],
|
|
48
|
+
];
|
|
49
|
+
const diagnostics = checks.flatMap(([id, value, level]): DshClientCompatibilityDiagnostic[] =>
|
|
50
|
+
typeof value === "function"
|
|
51
|
+
? []
|
|
52
|
+
: [
|
|
53
|
+
{
|
|
54
|
+
id,
|
|
55
|
+
level,
|
|
56
|
+
message:
|
|
57
|
+
level === "warning"
|
|
58
|
+
? `${id} is unavailable; the independent settings entry remains active`
|
|
59
|
+
: `${id} is unavailable in the DSH client runtime`,
|
|
60
|
+
expected: "function",
|
|
61
|
+
actual: typeof value,
|
|
62
|
+
},
|
|
63
|
+
],
|
|
64
|
+
);
|
|
65
|
+
const frozenDiagnostics = Object.freeze([...diagnostics]);
|
|
66
|
+
return Object.freeze({
|
|
67
|
+
context,
|
|
68
|
+
locale: context.locale,
|
|
69
|
+
effect: context.effect,
|
|
70
|
+
diagnostics: () => frozenDiagnostics,
|
|
71
|
+
assertCompatible() {
|
|
72
|
+
const errors = diagnostics.filter((item) => item.level === "error");
|
|
73
|
+
if (errors.length > 0) {
|
|
74
|
+
throw new Error(`incompatible DSH client API: ${errors.map((item) => item.id).join(", ")}`);
|
|
75
|
+
}
|
|
76
|
+
},
|
|
77
|
+
installSlots(options: InstallSlotsOptions) {
|
|
78
|
+
let disposed = false;
|
|
79
|
+
let installed = false;
|
|
80
|
+
let disposeCurrent: () => void = () => undefined;
|
|
81
|
+
const install = (slotContext: ClientContext): void => {
|
|
82
|
+
if (disposed || installed) return;
|
|
83
|
+
installed = true;
|
|
84
|
+
disposeCurrent();
|
|
85
|
+
disposeCurrent = options.register(slotContext);
|
|
86
|
+
};
|
|
87
|
+
|
|
88
|
+
if (hasSlots(context)) {
|
|
89
|
+
install(context);
|
|
90
|
+
} else {
|
|
91
|
+
disposeCurrent = options.mountFallback();
|
|
92
|
+
const inject = candidate["inject"];
|
|
93
|
+
if (typeof inject === "function") {
|
|
94
|
+
(inject as ClientContext["inject"]).call(context, ["slots"], (slotContext) => {
|
|
95
|
+
if (hasSlots(slotContext)) install(slotContext);
|
|
96
|
+
});
|
|
97
|
+
}
|
|
98
|
+
}
|
|
99
|
+
|
|
100
|
+
context.effect(
|
|
101
|
+
() => () => {
|
|
102
|
+
disposed = true;
|
|
103
|
+
disposeCurrent();
|
|
104
|
+
},
|
|
105
|
+
"dsh-coding-subscription-oauth: independent settings entry",
|
|
106
|
+
);
|
|
107
|
+
},
|
|
108
|
+
});
|
|
109
|
+
}
|
|
@@ -1,36 +1,37 @@
|
|
|
1
|
-
/** Quick-setup code snippets for the local API gateway. */
|
|
2
|
-
|
|
3
|
-
export type GatewaySnippetId = "curl" | "python" | "ide";
|
|
4
|
-
|
|
5
|
-
export function buildGatewaySnippets(
|
|
6
|
-
openAiBaseUrl: string,
|
|
7
|
-
anthropicBaseUrl: string,
|
|
8
|
-
apiKeyPlaceholder: string,
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
-H "
|
|
15
|
-
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
}
|
|
1
|
+
/** Quick-setup code snippets for the local API gateway. */
|
|
2
|
+
|
|
3
|
+
export type GatewaySnippetId = "curl" | "python" | "ide";
|
|
4
|
+
|
|
5
|
+
export function buildGatewaySnippets(
|
|
6
|
+
openAiBaseUrl: string,
|
|
7
|
+
anthropicBaseUrl: string,
|
|
8
|
+
apiKeyPlaceholder: string,
|
|
9
|
+
model = "<gateway-model>",
|
|
10
|
+
): Record<GatewaySnippetId, string> {
|
|
11
|
+
const key = apiKeyPlaceholder.length > 0 ? apiKeyPlaceholder : "<your-gateway-key>";
|
|
12
|
+
return {
|
|
13
|
+
curl: `curl ${openAiBaseUrl}/chat/completions \\
|
|
14
|
+
-H "Authorization: Bearer ${key}" \\
|
|
15
|
+
-H "Content-Type: application/json" \\
|
|
16
|
+
-d '{"model":"${model}","messages":[{"role":"user","content":"Hello"}]}'`,
|
|
17
|
+
python: `from openai import OpenAI
|
|
18
|
+
|
|
19
|
+
client = OpenAI(
|
|
20
|
+
base_url="${openAiBaseUrl}",
|
|
21
|
+
api_key="${key}",
|
|
22
|
+
)
|
|
23
|
+
|
|
24
|
+
response = client.chat.completions.create(
|
|
25
|
+
model="${model}",
|
|
26
|
+
messages=[{"role": "user", "content": "Hello"}],
|
|
27
|
+
)
|
|
28
|
+
print(response.choices[0].message.content)`,
|
|
29
|
+
ide: `# OpenAI-compatible client
|
|
30
|
+
base_url: ${openAiBaseUrl}
|
|
31
|
+
api_key: ${key}
|
|
32
|
+
|
|
33
|
+
# Anthropic-compatible client
|
|
34
|
+
base_url: ${anthropicBaseUrl}
|
|
35
|
+
api_key: ${key}`,
|
|
36
|
+
};
|
|
37
|
+
}
|
package/src/client/index.tsx
CHANGED
|
@@ -1,37 +1,156 @@
|
|
|
1
|
-
/** Browser half: coding-subscription account management inside dsh Settings. */
|
|
2
|
-
|
|
3
|
-
import type {} from "@deepseek-ai/dsh-client-locale/client";
|
|
4
|
-
import type { ClientContext } from "@deepseek-ai/dsh-client-runtime/client";
|
|
5
|
-
import type {} from "@deepseek-ai/dsh-client-ui-settings/client";
|
|
6
|
-
import type {} from "@deepseek-ai/dsh-client-ui-slots";
|
|
7
|
-
import
|
|
8
|
-
import {
|
|
9
|
-
import
|
|
10
|
-
import {
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
export
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
1
|
+
/** Browser half: coding-subscription account management inside dsh Settings. */
|
|
2
|
+
|
|
3
|
+
import type {} from "@deepseek-ai/dsh-client-locale/client";
|
|
4
|
+
import type { ClientContext } from "@deepseek-ai/dsh-client-runtime/client";
|
|
5
|
+
import type {} from "@deepseek-ai/dsh-client-ui-settings/client";
|
|
6
|
+
import type {} from "@deepseek-ai/dsh-client-ui-slots";
|
|
7
|
+
import { useEffect, useRef, useState } from "react";
|
|
8
|
+
import { createRoot } from "react-dom/client";
|
|
9
|
+
import { createDshClientAdapter } from "./dshClientAdapter.ts";
|
|
10
|
+
import type { GrokBuildSettingsInjected } from "./GrokBuildSettings.tsx";
|
|
11
|
+
import { GrokBuildSettings } from "./GrokBuildSettings.tsx";
|
|
12
|
+
import type { GrokBuildSettingsKey } from "./locales.ts";
|
|
13
|
+
import { en, zh } from "./locales.ts";
|
|
14
|
+
|
|
15
|
+
declare module "@deepseek-ai/dsh-client-ui-slots" {
|
|
16
|
+
interface LocaleNamespaceMap {
|
|
17
|
+
"settings.grok-build": GrokBuildSettingsKey;
|
|
18
|
+
}
|
|
19
|
+
}
|
|
20
|
+
|
|
21
|
+
export const name = "dsh-grok-build-client";
|
|
22
|
+
export const inject = ["locale"];
|
|
23
|
+
|
|
24
|
+
function IndependentSettingsEntry({ t }: { readonly t: GrokBuildSettingsInjected["t"] }) {
|
|
25
|
+
const [open, setOpen] = useState(false);
|
|
26
|
+
const trigger = useRef<HTMLButtonElement>(null);
|
|
27
|
+
const closeButton = useRef<HTMLButtonElement>(null);
|
|
28
|
+
const dialog = useRef<HTMLDivElement>(null);
|
|
29
|
+
useEffect(() => {
|
|
30
|
+
if (!open) return;
|
|
31
|
+
closeButton.current?.focus();
|
|
32
|
+
const host = dialog.current?.closest("[data-dsh-coding-oauth]")?.parentElement;
|
|
33
|
+
const inertSiblings =
|
|
34
|
+
host === undefined || host === null
|
|
35
|
+
? []
|
|
36
|
+
: [...document.body.children]
|
|
37
|
+
.filter((element) => element !== host)
|
|
38
|
+
.map((element) => ({
|
|
39
|
+
element,
|
|
40
|
+
hadInert: element.hasAttribute("inert"),
|
|
41
|
+
value: element.getAttribute("inert"),
|
|
42
|
+
}));
|
|
43
|
+
for (const { element } of inertSiblings) element.setAttribute("inert", "");
|
|
44
|
+
const focusable = (): HTMLElement[] =>
|
|
45
|
+
[
|
|
46
|
+
...(dialog.current?.querySelectorAll<HTMLElement>(
|
|
47
|
+
'button:not([disabled]), [href], input:not([disabled]), select:not([disabled]), textarea:not([disabled]), [tabindex]:not([tabindex="-1"])',
|
|
48
|
+
) ?? []),
|
|
49
|
+
].filter((element) => element.getClientRects().length > 0);
|
|
50
|
+
const closeOnEscape = (event: KeyboardEvent): void => {
|
|
51
|
+
if (event.key === "Escape") setOpen(false);
|
|
52
|
+
if (event.key !== "Tab") return;
|
|
53
|
+
const targets = focusable();
|
|
54
|
+
if (targets.length === 0) {
|
|
55
|
+
event.preventDefault();
|
|
56
|
+
dialog.current?.focus();
|
|
57
|
+
return;
|
|
58
|
+
}
|
|
59
|
+
const first = targets[0]!;
|
|
60
|
+
const last = targets.at(-1)!;
|
|
61
|
+
if (event.shiftKey && document.activeElement === first) {
|
|
62
|
+
event.preventDefault();
|
|
63
|
+
last.focus();
|
|
64
|
+
} else if (!event.shiftKey && document.activeElement === last) {
|
|
65
|
+
event.preventDefault();
|
|
66
|
+
first.focus();
|
|
67
|
+
}
|
|
68
|
+
};
|
|
69
|
+
document.addEventListener("keydown", closeOnEscape);
|
|
70
|
+
return () => {
|
|
71
|
+
document.removeEventListener("keydown", closeOnEscape);
|
|
72
|
+
for (const { element, hadInert, value } of inertSiblings) {
|
|
73
|
+
if (hadInert) element.setAttribute("inert", value ?? "");
|
|
74
|
+
else element.removeAttribute("inert");
|
|
75
|
+
}
|
|
76
|
+
if (trigger.current?.isConnected) trigger.current.focus();
|
|
77
|
+
};
|
|
78
|
+
}, [open]);
|
|
79
|
+
return (
|
|
80
|
+
<div data-dsh-coding-oauth>
|
|
81
|
+
<button
|
|
82
|
+
ref={trigger}
|
|
83
|
+
type="button"
|
|
84
|
+
style={{ position: "fixed", right: 16, bottom: 16, zIndex: 30, padding: "10px 14px" }}
|
|
85
|
+
onClick={() => setOpen(true)}
|
|
86
|
+
>
|
|
87
|
+
{t("nav")}
|
|
88
|
+
</button>
|
|
89
|
+
{open ? (
|
|
90
|
+
<div
|
|
91
|
+
ref={dialog}
|
|
92
|
+
role="dialog"
|
|
93
|
+
aria-modal="true"
|
|
94
|
+
aria-labelledby="coding-oauth-independent-title"
|
|
95
|
+
tabIndex={-1}
|
|
96
|
+
style={{
|
|
97
|
+
position: "fixed",
|
|
98
|
+
inset: 0,
|
|
99
|
+
zIndex: 31,
|
|
100
|
+
overflow: "auto",
|
|
101
|
+
padding: 20,
|
|
102
|
+
background: "var(--dsw-alias-bg-layer-1)",
|
|
103
|
+
}}
|
|
104
|
+
>
|
|
105
|
+
<div style={{ width: "min(780px, 100%)", margin: "0 auto" }}>
|
|
106
|
+
<div style={{ display: "flex", justifyContent: "space-between", gap: 12, marginBottom: 12 }}>
|
|
107
|
+
<h2 id="coding-oauth-independent-title" style={{ margin: 0 }}>
|
|
108
|
+
{t("title")}
|
|
109
|
+
</h2>
|
|
110
|
+
<button ref={closeButton} type="button" onClick={() => setOpen(false)} aria-label={t("cancel")}>
|
|
111
|
+
×
|
|
112
|
+
</button>
|
|
113
|
+
</div>
|
|
114
|
+
<GrokBuildSettings t={t} />
|
|
115
|
+
</div>
|
|
116
|
+
</div>
|
|
117
|
+
) : null}
|
|
118
|
+
</div>
|
|
119
|
+
);
|
|
120
|
+
}
|
|
121
|
+
|
|
122
|
+
function mountIndependentEntry(t: GrokBuildSettingsInjected["t"]): () => void {
|
|
123
|
+
if (typeof document === "undefined") return () => undefined;
|
|
124
|
+
const host = document.createElement("div");
|
|
125
|
+
document.body.append(host);
|
|
126
|
+
const root = createRoot(host);
|
|
127
|
+
root.render(<IndependentSettingsEntry t={t} />);
|
|
128
|
+
return () => {
|
|
129
|
+
root.unmount();
|
|
130
|
+
host.remove();
|
|
131
|
+
};
|
|
132
|
+
}
|
|
133
|
+
|
|
134
|
+
export function apply(ctx: ClientContext): void {
|
|
135
|
+
const dsh = createDshClientAdapter(ctx);
|
|
136
|
+
dsh.assertCompatible();
|
|
137
|
+
const namespace = "settings.grok-build";
|
|
138
|
+
dsh.effect(() => dsh.locale.register(namespace, { zh, en }), "dsh-coding-subscription-oauth: settings copy");
|
|
139
|
+
const t = dsh.locale.bind(namespace) as GrokBuildSettingsInjected["t"];
|
|
140
|
+
dsh.installSlots({
|
|
141
|
+
mountFallback: () => mountIndependentEntry(t),
|
|
142
|
+
register: (slotContext) =>
|
|
143
|
+
slotContext.slots.inject("settings.section", () =>
|
|
144
|
+
slotContext.slots.register(
|
|
145
|
+
{
|
|
146
|
+
name: "settings.section",
|
|
147
|
+
id: "grok-build",
|
|
148
|
+
order: 17,
|
|
149
|
+
label: () => t("nav"),
|
|
150
|
+
inject: (): GrokBuildSettingsInjected => ({ t }),
|
|
151
|
+
},
|
|
152
|
+
GrokBuildSettings,
|
|
153
|
+
),
|
|
154
|
+
),
|
|
155
|
+
});
|
|
156
|
+
}
|