-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathApp.tsx
171 lines (151 loc) · 4.5 KB
/
App.tsx
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
import chalk from "chalk";
import dayjs from "dayjs";
import { Box, Text, useInput } from "ink";
import Spinner from "ink-spinner";
import { createContext, useContext, useEffect, useMemo, useRef, useState } from "react";
import { getInkPPTConfig } from "./config.js";
import { exec } from "./exec.js";
import { remark } from "./markdown/index.js";
import { KEY_WAITING, onKey, RUNABLE, short, useStdoutDimensions } from "./util.js";
const AppContext = createContext({
config: getInkPPTConfig(),
get(raw: string) {
return "";
},
set(raw: string, output: string) {
},
});
const Output = (props: { code?: string; lang?: string }) => {
const [outputs, setOuputs] = useState([]);
useEffect(() => {
if (!props.code || !props.lang) return;
exec(props.code, props.lang as any, (err, line) => {
if (err) {
setOuputs(lines => {
return [...lines, chalk.red("ERROR:" + err)];
});
} else if (line) {
setOuputs(lines => {
return [...lines, `${chalk.gray(dayjs().format("HH:MM:ss.SSS"))} ${line}`];
});
}
});
}, [props.code, props.lang]);
return (
<Box borderStyle="round" flexDirection="column" alignItems="flex-start" justifyContent="flex-start">
{outputs.length
? outputs.map(item => {
return (
<Text key={item}>
{item.toString().trim()}
</Text>
);
})
: <Text>`Ctrl + E` to Run Code</Text>}
</Box>
);
};
const Markdown = (props: { children: string }) => {
const [content, setContent] = useState("__INIT__");
const [runable, setRunable] = useState(false);
const [code, setCode] = useState<{ code: string; lang: string }>();
const pickedCodesRef = useRef<typeof code[]>([]);
const appCache = useContext(AppContext);
useInput((input, key) => {
if (key.ctrl && input == "e") {
const code = pickedCodesRef.current[0];
if (!code) return;
setCode(code);
}
});
useEffect(() => {
const [cache, lazy] = remark(props.children, appCache, (code, lang) => {
pickedCodesRef.current.push({ code, lang: short(lang) });
setRunable(Boolean(code && RUNABLE[lang]));
});
if (cache) {
setContent(cache);
} else {
lazy.then((hl) => {
setContent(hl);
});
}
}, [props.children]);
return (
<Box flexShrink={1} minHeight={10} rowGap={0} justifyContent="center" flexDirection="column">
<Text>
{content === "__INIT__" ? <Spinner type="christmas"></Spinner> : content}
</Text>
{runable
? <Output code={code?.code} lang={code?.lang}></Output>
: null}
</Box>
);
};
export const App = (props: {
children: string;
meta?: Partial<ReturnType<typeof getInkPPTConfig>>;
}) => {
const slides = useMemo(() => {
return props.children.trim().split(/\n---\n/).filter(Boolean);
}, [props.children]);
const len = slides.length;
const [page, setPage] = useState(0);
const last = useRef({ input: null, time: 0, using: false });
const [width, height] = useStdoutDimensions();
const current = useMemo(() => {
return slides[page];
}, [page]);
useInput((input, key) => {
const now = +Date.now();
const timing = now - last.current.time;
const to = onKey(input, key, len, page, last.current);
last.current.input = input;
last.current.time = now;
setPage(to);
if (!key.shift && input == "g" && last.current.input == "g" && timing < KEY_WAITING) {
// gg to start
setPage(0);
} else if (input == "G") {
// G to END
setPage(len - 1);
}
});
const memo = useRef({});
const cache = useMemo(() => {
return {
config: {
...getInkPPTConfig(),
...props.meta,
width,
height,
},
get(raw: string) {
return memo.current[raw];
},
set(raw: string, output: string) {
memo.current[raw] = output;
},
};
}, [width, height, props.meta]);
useEffect(() => {
// clear cache
memo.current = {};
// run cache
slides.forEach(section => remark(section, cache));
}, [slides, width, height]);
return (
<AppContext.Provider value={cache}>
<Box height={height} width={width} padding={2} flexDirection="column">
<Box justifyContent="flex-end" alignItems="flex-end">
<Text italic>[{page + 1} / {len}]</Text>
</Box>
<Box flexShrink={1}>
<Markdown key={page}>
{current}
</Markdown>
</Box>
</Box>
</AppContext.Provider>
);
};