@myst-theme/site 0.1.36 → 0.1.37
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/package.json +10 -9
- package/src/components/ComputeControls.tsx +124 -0
- package/src/components/ContentBlocks.tsx +44 -8
- package/src/components/EnableCompute.tsx +64 -0
- package/src/components/FooterLinksBlock.tsx +1 -0
- package/src/components/Spinner.tsx +23 -0
- package/src/pages/Article.tsx +38 -10
- package/src/pages/Root.tsx +7 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@myst-theme/site",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.37",
|
|
4
4
|
"main": "./src/index.ts",
|
|
5
5
|
"types": "./src/index.ts",
|
|
6
6
|
"files": [
|
|
@@ -16,20 +16,21 @@
|
|
|
16
16
|
"dependencies": {
|
|
17
17
|
"@headlessui/react": "^1.7.13",
|
|
18
18
|
"@heroicons/react": "^2.0.14",
|
|
19
|
-
"@myst-theme/diagrams": "^0.1.
|
|
20
|
-
"@myst-theme/frontmatter": "^0.1.
|
|
21
|
-
"@myst-theme/jupyter": "^0.1.
|
|
22
|
-
"@myst-theme/providers": "^0.1.
|
|
19
|
+
"@myst-theme/diagrams": "^0.1.37",
|
|
20
|
+
"@myst-theme/frontmatter": "^0.1.37",
|
|
21
|
+
"@myst-theme/jupyter": "^0.1.37",
|
|
22
|
+
"@myst-theme/providers": "^0.1.37",
|
|
23
23
|
"classnames": "^2.3.2",
|
|
24
24
|
"lodash.throttle": "^4.1.1",
|
|
25
25
|
"myst-common": "^0.0.16",
|
|
26
|
-
"myst-config": "^0.0.
|
|
27
|
-
"myst-demo": "^0.1.
|
|
28
|
-
"myst-to-react": "^0.1.
|
|
26
|
+
"myst-config": "^0.0.14",
|
|
27
|
+
"myst-demo": "^0.1.37",
|
|
28
|
+
"myst-to-react": "^0.1.37",
|
|
29
29
|
"nbtx": "^0.2.3",
|
|
30
30
|
"node-cache": "^5.1.2",
|
|
31
31
|
"node-fetch": "^2.6.7",
|
|
32
|
-
"unist-util-select": "^4.0.1"
|
|
32
|
+
"unist-util-select": "^4.0.1",
|
|
33
|
+
"thebe-react": "^0.0.7"
|
|
33
34
|
},
|
|
34
35
|
"peerDependencies": {
|
|
35
36
|
"@remix-run/node": "^1.12.0",
|
|
@@ -0,0 +1,124 @@
|
|
|
1
|
+
import { Spinner } from './Spinner';
|
|
2
|
+
import PlayCircleIcon from '@heroicons/react/24/outline/PlayCircleIcon';
|
|
3
|
+
import ArrowPathIcon from '@heroicons/react/24/outline/ArrowPathIcon';
|
|
4
|
+
import MinusCircleIcon from '@heroicons/react/24/outline/MinusCircleIcon';
|
|
5
|
+
import ArrowTopRightOnSquareIcon from '@heroicons/react/24/outline/ArrowTopRightOnSquareIcon';
|
|
6
|
+
import classNames from 'classnames';
|
|
7
|
+
import type { NotebookExecuteOptions } from 'thebe-react';
|
|
8
|
+
import { useThebeServer } from 'thebe-react';
|
|
9
|
+
import type { IThebeCellExecuteReturn } from 'thebe-core';
|
|
10
|
+
import { useMDASTNotebook, useNotebookCellExecution } from '@myst-theme/jupyter';
|
|
11
|
+
|
|
12
|
+
export function Run({
|
|
13
|
+
ready,
|
|
14
|
+
executing,
|
|
15
|
+
disabled,
|
|
16
|
+
execute,
|
|
17
|
+
}: {
|
|
18
|
+
ready: boolean;
|
|
19
|
+
executing: boolean;
|
|
20
|
+
disabled?: boolean;
|
|
21
|
+
execute: (
|
|
22
|
+
options?: NotebookExecuteOptions | undefined,
|
|
23
|
+
) => Promise<(IThebeCellExecuteReturn | null)[]>;
|
|
24
|
+
}) {
|
|
25
|
+
return (
|
|
26
|
+
<div className="flex relative text-sm">
|
|
27
|
+
<button
|
|
28
|
+
className={classNames(
|
|
29
|
+
'cursor-pointer text-gray-700 active:text-green-700 hover:opacity-100',
|
|
30
|
+
{
|
|
31
|
+
'opacity-10 hover:opacity-10': executing,
|
|
32
|
+
'opacity-60': !executing,
|
|
33
|
+
},
|
|
34
|
+
)}
|
|
35
|
+
disabled={disabled || !ready || executing}
|
|
36
|
+
onClick={() => execute()}
|
|
37
|
+
>
|
|
38
|
+
<PlayCircleIcon className="h-6 w-6 inline-block align-top" title="run all cells" />
|
|
39
|
+
</button>
|
|
40
|
+
{executing && (
|
|
41
|
+
<span className="absolute top-0 left-0 z-10 w-[22px] h-[22px] opacity-100">
|
|
42
|
+
<Spinner size={24} />
|
|
43
|
+
</span>
|
|
44
|
+
)}
|
|
45
|
+
</div>
|
|
46
|
+
);
|
|
47
|
+
}
|
|
48
|
+
|
|
49
|
+
export function Clear({
|
|
50
|
+
ready,
|
|
51
|
+
executing,
|
|
52
|
+
disabled,
|
|
53
|
+
clear,
|
|
54
|
+
}: {
|
|
55
|
+
ready: boolean;
|
|
56
|
+
executing: boolean;
|
|
57
|
+
disabled?: boolean;
|
|
58
|
+
clear: () => void;
|
|
59
|
+
}) {
|
|
60
|
+
return (
|
|
61
|
+
<button
|
|
62
|
+
className="flex cursor-pointer text-gray-700 active:text-green-700 opacity-60 hover:opacity-100"
|
|
63
|
+
disabled={disabled || !ready || executing}
|
|
64
|
+
onClick={() => clear()}
|
|
65
|
+
>
|
|
66
|
+
<MinusCircleIcon className="h-6 w-6 inline-block align-top" title="clear all outputs" />
|
|
67
|
+
</button>
|
|
68
|
+
);
|
|
69
|
+
}
|
|
70
|
+
|
|
71
|
+
export function RunCell({ id }: { id: string }) {
|
|
72
|
+
const exec = useNotebookCellExecution(id);
|
|
73
|
+
if (!exec?.ready) return null;
|
|
74
|
+
const { ready, executing, notebookIsExecuting, execute } = exec;
|
|
75
|
+
return (
|
|
76
|
+
<Run ready={ready} executing={executing} disabled={notebookIsExecuting} execute={execute} />
|
|
77
|
+
);
|
|
78
|
+
}
|
|
79
|
+
|
|
80
|
+
export function ClearCell({ id }: { id: string }) {
|
|
81
|
+
const exec = useNotebookCellExecution(id);
|
|
82
|
+
if (!exec?.ready) return null;
|
|
83
|
+
const { ready, executing, notebookIsExecuting, clear } = exec;
|
|
84
|
+
return <Clear ready={ready} executing={executing} disabled={notebookIsExecuting} clear={clear} />;
|
|
85
|
+
}
|
|
86
|
+
|
|
87
|
+
export function NotebookRunAll() {
|
|
88
|
+
const { ready: serverReady, server } = useThebeServer();
|
|
89
|
+
const exec = useMDASTNotebook();
|
|
90
|
+
|
|
91
|
+
if (!exec?.ready) return null;
|
|
92
|
+
const { ready, executing, executeAll, restart, clear } = exec;
|
|
93
|
+
|
|
94
|
+
const clickLaunchInJupyter = () => {
|
|
95
|
+
if (!serverReady || !server?.settings) return;
|
|
96
|
+
window.open(server.settings.baseUrl, '_blank');
|
|
97
|
+
};
|
|
98
|
+
|
|
99
|
+
return (
|
|
100
|
+
<div className="flex">
|
|
101
|
+
<div className="group flex relative space-x-1">
|
|
102
|
+
<Run ready={ready} executing={executing} execute={executeAll} />
|
|
103
|
+
<button
|
|
104
|
+
className="flex items-center cursor-pointer text-gray-700 active:text-green-700 opacity-60 hover:opacity-100"
|
|
105
|
+
disabled={!ready || executing}
|
|
106
|
+
onClick={() => restart()}
|
|
107
|
+
>
|
|
108
|
+
<ArrowPathIcon className="h-6 w-6" title="restart kernel" />
|
|
109
|
+
</button>
|
|
110
|
+
<Clear ready={ready} executing={executing} clear={clear} />
|
|
111
|
+
<button
|
|
112
|
+
className="flex items-center cursor-pointer text-gray-700 active:text-green-700 opacity-60 hover:opacity-100"
|
|
113
|
+
disabled={!ready}
|
|
114
|
+
onClick={clickLaunchInJupyter}
|
|
115
|
+
>
|
|
116
|
+
<ArrowTopRightOnSquareIcon
|
|
117
|
+
className="h-6 w-6 inline-block align-top"
|
|
118
|
+
title="launch in juptyer"
|
|
119
|
+
/>
|
|
120
|
+
</button>
|
|
121
|
+
</div>
|
|
122
|
+
</div>
|
|
123
|
+
);
|
|
124
|
+
}
|
|
@@ -1,9 +1,28 @@
|
|
|
1
1
|
import { useParse, DEFAULT_RENDERERS } from 'myst-to-react';
|
|
2
|
-
import type {
|
|
2
|
+
import type { GenericParent, SourceFileKind } from 'myst-common';
|
|
3
3
|
import { useNodeRenderers } from '@myst-theme/providers';
|
|
4
4
|
import classNames from 'classnames';
|
|
5
|
+
import { ClearCell, RunCell } from './ComputeControls';
|
|
5
6
|
|
|
6
|
-
function
|
|
7
|
+
function isACodeCell(node: GenericParent) {
|
|
8
|
+
return (
|
|
9
|
+
node.type === 'block' &&
|
|
10
|
+
node.children.length === 2 &&
|
|
11
|
+
node.children[0].type === 'code' &&
|
|
12
|
+
node.children[1].type === 'output'
|
|
13
|
+
);
|
|
14
|
+
}
|
|
15
|
+
|
|
16
|
+
function Block({
|
|
17
|
+
id,
|
|
18
|
+
node,
|
|
19
|
+
className,
|
|
20
|
+
}: {
|
|
21
|
+
id: string;
|
|
22
|
+
pageKind: SourceFileKind;
|
|
23
|
+
node: GenericParent;
|
|
24
|
+
className?: string;
|
|
25
|
+
}) {
|
|
7
26
|
const renderers = useNodeRenderers() ?? DEFAULT_RENDERERS;
|
|
8
27
|
const children = useParse(node, renderers);
|
|
9
28
|
const subGrid = 'article-grid article-subgrid-gap col-screen';
|
|
@@ -13,23 +32,40 @@ function Block({ id, node, className }: { id: string; node: Parent; className?:
|
|
|
13
32
|
(dataClassName && dataClassName.includes('col-')) || (className && className.includes('col-'));
|
|
14
33
|
return (
|
|
15
34
|
<div
|
|
35
|
+
key={id}
|
|
16
36
|
id={id}
|
|
17
|
-
className={classNames(className, dataClassName, {
|
|
37
|
+
className={classNames('relative group/block', className, dataClassName, {
|
|
18
38
|
[subGrid]: !noSubGrid,
|
|
19
39
|
})}
|
|
20
40
|
>
|
|
21
41
|
{children}
|
|
42
|
+
{isACodeCell(node) && (
|
|
43
|
+
<div className="hidden group-hover/block:flex md:flex-col absolute -top-[28px] md:top-0 right-0 md:-right-[28px] mt-8">
|
|
44
|
+
<RunCell id={id} />
|
|
45
|
+
<ClearCell id={id} />
|
|
46
|
+
</div>
|
|
47
|
+
)}
|
|
22
48
|
</div>
|
|
23
49
|
);
|
|
24
50
|
}
|
|
25
51
|
|
|
26
|
-
export function ContentBlocks({
|
|
27
|
-
|
|
52
|
+
export function ContentBlocks({
|
|
53
|
+
name,
|
|
54
|
+
pageKind,
|
|
55
|
+
mdast,
|
|
56
|
+
className,
|
|
57
|
+
}: {
|
|
58
|
+
name: string;
|
|
59
|
+
pageKind: SourceFileKind;
|
|
60
|
+
mdast: GenericParent;
|
|
61
|
+
className?: string;
|
|
62
|
+
}) {
|
|
63
|
+
const blocks = mdast.children as GenericParent[];
|
|
28
64
|
return (
|
|
29
65
|
<>
|
|
30
|
-
{blocks.map((node
|
|
31
|
-
|
|
32
|
-
|
|
66
|
+
{blocks.map((node) => (
|
|
67
|
+
<Block key={node.key} id={node.key} pageKind={pageKind} node={node} className={className} />
|
|
68
|
+
))}
|
|
33
69
|
</>
|
|
34
70
|
);
|
|
35
71
|
}
|
|
@@ -0,0 +1,64 @@
|
|
|
1
|
+
import { useThebeCore, useThebeServer, useThebeSession } from 'thebe-react';
|
|
2
|
+
import PowerIcon from '@heroicons/react/24/outline/PowerIcon';
|
|
3
|
+
import { useHasNotebookProvider } from '@myst-theme/jupyter';
|
|
4
|
+
import { useNavigation } from '@remix-run/react';
|
|
5
|
+
import { useEffect, useState } from 'react';
|
|
6
|
+
|
|
7
|
+
export function EnableCompute({
|
|
8
|
+
canCompute,
|
|
9
|
+
children,
|
|
10
|
+
}: React.PropsWithChildren<{ canCompute: boolean }>) {
|
|
11
|
+
const { load, loading, core } = useThebeCore();
|
|
12
|
+
const { connect, connecting, ready: serverReady, error: serverError } = useThebeServer();
|
|
13
|
+
const {
|
|
14
|
+
start,
|
|
15
|
+
starting,
|
|
16
|
+
shutdown,
|
|
17
|
+
session,
|
|
18
|
+
ready: sessionReady,
|
|
19
|
+
error: sessionError,
|
|
20
|
+
} = useThebeSession();
|
|
21
|
+
const hasNotebookProvider = useHasNotebookProvider();
|
|
22
|
+
const navigation = useNavigation();
|
|
23
|
+
const [enabling, setEnabling] = useState(false);
|
|
24
|
+
const [enabled, setEnabled] = useState(false);
|
|
25
|
+
const busy = enabling || loading || connecting || starting;
|
|
26
|
+
|
|
27
|
+
useEffect(() => {
|
|
28
|
+
if (!enabling) return;
|
|
29
|
+
if (!core) return load();
|
|
30
|
+
if (!serverReady) return connect();
|
|
31
|
+
if (!sessionReady) start();
|
|
32
|
+
if (sessionReady) {
|
|
33
|
+
setEnabled(true);
|
|
34
|
+
setEnabling(false);
|
|
35
|
+
}
|
|
36
|
+
}, [enabling, core, serverReady, sessionReady]);
|
|
37
|
+
|
|
38
|
+
if (!canCompute || !hasNotebookProvider) return null;
|
|
39
|
+
let classes = 'flex text-center mr-1 cursor-pointer rounded-full';
|
|
40
|
+
const idleClasses = 'text-blue-700 hover:opacity-100 opacity-60';
|
|
41
|
+
const busyClasses = 'bg-yellow-700 text-yellow-700 opacity-100 font-semibold';
|
|
42
|
+
const readyClasses = 'bg-green-700 text-green-700 opacity-100 font-semibold';
|
|
43
|
+
const errorClasses = 'bg-red-700 text-red-700 opacity-100';
|
|
44
|
+
|
|
45
|
+
if (busy) classes += busyClasses;
|
|
46
|
+
else if (serverReady && sessionReady) classes += readyClasses;
|
|
47
|
+
else if (serverError || sessionError) classes += errorClasses;
|
|
48
|
+
else classes += idleClasses;
|
|
49
|
+
|
|
50
|
+
useEffect(() => {
|
|
51
|
+
if (navigation.state === 'loading') {
|
|
52
|
+
shutdown();
|
|
53
|
+
}
|
|
54
|
+
}, [shutdown, navigation]);
|
|
55
|
+
|
|
56
|
+
return (
|
|
57
|
+
<div className="flex mx-1 items-center">
|
|
58
|
+
<button className={classes} onClick={() => setEnabling(true)} disabled={enabling || enabled}>
|
|
59
|
+
<PowerIcon className="h-6 w-6 mx-1 inline-block align-top" title="enable compute" />
|
|
60
|
+
</button>
|
|
61
|
+
{enabled && <>{children}</>}
|
|
62
|
+
</div>
|
|
63
|
+
);
|
|
64
|
+
}
|
|
@@ -4,6 +4,7 @@ import ArrowLeftIcon from '@heroicons/react/24/outline/ArrowLeftIcon';
|
|
|
4
4
|
import ArrowRightIcon from '@heroicons/react/24/outline/ArrowRightIcon';
|
|
5
5
|
import type { FooterLinks, NavigationLink } from '../types';
|
|
6
6
|
import { useUrlbase, withUrlbase } from '@myst-theme/providers';
|
|
7
|
+
import { useEffect, useState } from 'react';
|
|
7
8
|
|
|
8
9
|
const FooterLink = ({ title, url, group, right }: NavigationLink & { right?: boolean }) => {
|
|
9
10
|
const urlbase = useUrlbase();
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
export function Spinner({ size }: { size: number }) {
|
|
2
|
+
return (
|
|
3
|
+
<div role="status">
|
|
4
|
+
<svg
|
|
5
|
+
aria-hidden="true"
|
|
6
|
+
className={`w-[${size}px] h-[${size}px] mr-2 text-gray-200 animate-spin dark:text-gray-600 fill-green-600`}
|
|
7
|
+
viewBox="0 0 100 101"
|
|
8
|
+
fill="none"
|
|
9
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
10
|
+
>
|
|
11
|
+
<path
|
|
12
|
+
d="M100 50.5908C100 78.2051 77.6142 100.591 50 100.591C22.3858 100.591 0 78.2051 0 50.5908C0 22.9766 22.3858 0.59082 50 0.59082C77.6142 0.59082 100 22.9766 100 50.5908ZM9.08144 50.5908C9.08144 73.1895 27.4013 91.5094 50 91.5094C72.5987 91.5094 90.9186 73.1895 90.9186 50.5908C90.9186 27.9921 72.5987 9.67226 50 9.67226C27.4013 9.67226 9.08144 27.9921 9.08144 50.5908Z"
|
|
13
|
+
fill="currentColor"
|
|
14
|
+
/>
|
|
15
|
+
<path
|
|
16
|
+
d="M93.9676 39.0409C96.393 38.4038 97.8624 35.9116 97.0079 33.5539C95.2932 28.8227 92.871 24.3692 89.8167 20.348C85.8452 15.1192 80.8826 10.7238 75.2124 7.41289C69.5422 4.10194 63.2754 1.94025 56.7698 1.05124C51.7666 0.367541 46.6976 0.446843 41.7345 1.27873C39.2613 1.69328 37.813 4.19778 38.4501 6.62326C39.0873 9.04874 41.5694 10.4717 44.0505 10.1071C47.8511 9.54855 51.7191 9.52689 55.5402 10.0491C60.8642 10.7766 65.9928 12.5457 70.6331 15.2552C75.2735 17.9648 79.3347 21.5619 82.5849 25.841C84.9175 28.9121 86.7997 32.2913 88.1811 35.8758C89.083 38.2158 91.5421 39.6781 93.9676 39.0409Z"
|
|
17
|
+
fill="currentFill"
|
|
18
|
+
/>
|
|
19
|
+
</svg>
|
|
20
|
+
<span className="sr-only">Loading...</span>
|
|
21
|
+
</div>
|
|
22
|
+
);
|
|
23
|
+
}
|
package/src/pages/Article.tsx
CHANGED
|
@@ -1,26 +1,54 @@
|
|
|
1
|
-
import
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import { ReferencesProvider, useComputeOptions } from '@myst-theme/providers';
|
|
2
3
|
import { FrontmatterBlock } from '@myst-theme/frontmatter';
|
|
3
4
|
import { Bibliography, ContentBlocks, FooterLinksBlock } from '../components';
|
|
4
5
|
import { ErrorDocumentNotFound } from './ErrorDocumentNotFound';
|
|
5
6
|
import { ErrorProjectNotFound } from './ErrorProjectNotFound';
|
|
6
7
|
import type { PageLoader } from '../types';
|
|
8
|
+
import { ThebeSessionProvider } from 'thebe-react';
|
|
9
|
+
import type { GenericParent } from 'myst-common';
|
|
10
|
+
import { SourceFileKind } from 'myst-common';
|
|
11
|
+
import { EnableCompute } from '../components/EnableCompute';
|
|
12
|
+
import { NotebookRunAll } from '../components/ComputeControls';
|
|
13
|
+
import { NotebookProvider, BinderBadge } from '@myst-theme/jupyter';
|
|
7
14
|
|
|
8
|
-
export
|
|
9
|
-
const
|
|
15
|
+
export const ArticlePage = React.memo(function ({ article }: { article: PageLoader }) {
|
|
16
|
+
const computeOptions = useComputeOptions();
|
|
17
|
+
const canCompute = computeOptions.canCompute && (article.frontmatter as any)?.thebe !== false;
|
|
18
|
+
const { hide_title_block, hide_footer_links, binder } =
|
|
19
|
+
(article.frontmatter as any)?.design ?? {};
|
|
20
|
+
const isJupyter = article?.kind && article.kind === SourceFileKind.Notebook;
|
|
10
21
|
return (
|
|
11
22
|
<ReferencesProvider
|
|
12
23
|
references={{ ...article.references, article: article.mdast }}
|
|
13
24
|
frontmatter={article.frontmatter}
|
|
14
25
|
>
|
|
15
|
-
{
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
26
|
+
<ThebeSessionProvider start={false} name={article.slug}>
|
|
27
|
+
{!hide_title_block && (
|
|
28
|
+
<FrontmatterBlock kind={article.kind} frontmatter={article.frontmatter} />
|
|
29
|
+
)}
|
|
30
|
+
<NotebookProvider siteConfig={false} page={article}>
|
|
31
|
+
<div className="flex items-center">
|
|
32
|
+
<div className="flex-grow"></div>
|
|
33
|
+
{binder && <BinderBadge binder={binder} />}
|
|
34
|
+
{canCompute && isJupyter && (
|
|
35
|
+
<EnableCompute canCompute={true} key={article.slug}>
|
|
36
|
+
<NotebookRunAll />
|
|
37
|
+
</EnableCompute>
|
|
38
|
+
)}
|
|
39
|
+
</div>
|
|
40
|
+
<ContentBlocks
|
|
41
|
+
name={article.slug}
|
|
42
|
+
pageKind={article.kind}
|
|
43
|
+
mdast={article.mdast as GenericParent}
|
|
44
|
+
/>
|
|
45
|
+
<Bibliography />
|
|
46
|
+
{!hide_footer_links && <FooterLinksBlock links={article.footer} />}
|
|
47
|
+
</NotebookProvider>
|
|
48
|
+
</ThebeSessionProvider>
|
|
21
49
|
</ReferencesProvider>
|
|
22
50
|
);
|
|
23
|
-
}
|
|
51
|
+
});
|
|
24
52
|
|
|
25
53
|
export function ProjectPageCatchBoundary() {
|
|
26
54
|
return <ErrorProjectNotFound />;
|
package/src/pages/Root.tsx
CHANGED
|
@@ -16,6 +16,8 @@ import { ContentReload, renderers } from '../components';
|
|
|
16
16
|
import { Analytics } from '../seo';
|
|
17
17
|
import { ErrorSiteNotFound } from './ErrorSiteNotFound';
|
|
18
18
|
import classNames from 'classnames';
|
|
19
|
+
import { ThebeCoreProvider } from 'thebe-react';
|
|
20
|
+
import { ConfiguredThebeServerProvider } from '@myst-theme/jupyter';
|
|
19
21
|
|
|
20
22
|
export function Document({
|
|
21
23
|
children,
|
|
@@ -47,7 +49,11 @@ export function Document({
|
|
|
47
49
|
</head>
|
|
48
50
|
<body className="m-0 transition-colors duration-500 bg-white dark:bg-stone-900">
|
|
49
51
|
<ThemeProvider theme={theme} renderers={renderers} Link={RemixLink as any}>
|
|
50
|
-
<
|
|
52
|
+
<ThebeCoreProvider>
|
|
53
|
+
<SiteProvider config={config}>
|
|
54
|
+
<ConfiguredThebeServerProvider>{children}</ConfiguredThebeServerProvider>
|
|
55
|
+
</SiteProvider>
|
|
56
|
+
</ThebeCoreProvider>
|
|
51
57
|
</ThemeProvider>
|
|
52
58
|
<ScrollRestoration />
|
|
53
59
|
<Scripts />
|