generated from ellisonleao/nvim-plugin-template
-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathtea.ts
295 lines (266 loc) · 7.18 KB
/
tea.ts
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
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
import {
d,
type MountedVDOM,
type MountedView,
type MountPoint,
mountView,
type VDOMNode,
} from "./view.ts";
import { BINDING_KEYS, type BindingKey, getBindings } from "./bindings.ts";
import { getCurrentWindow, notifyErr } from "../nvim/nvim.ts";
import type { Row0Indexed } from "../nvim/window.ts";
import type { Nvim } from "nvim-node";
import { Defer } from "../utils/async.ts";
export type Dispatch<Msg> = (msg: Msg) => void;
export type Update<Msg, Model, Context = undefined> = Context extends undefined
? (msg: Msg, model: Model) => [Model] | [Model, Thunk<Msg> | undefined]
: (
msg: Msg,
model: Model,
context: Context,
) => [Model] | [Model, Thunk<Msg> | undefined];
export type View<Msg, Model> = ({
model,
dispatch,
}: {
model: Model;
dispatch: Dispatch<Msg>;
}) => VDOMNode;
type AppState<Model> =
| {
status: "running";
model: Model;
}
| {
status: "error";
error: string;
};
export type MountedApp = {
onKey(key: BindingKey): void;
render(): void;
unmount(): void;
getMountedNode(): MountedVDOM;
waitForRender(): Promise<void>;
};
export type App<Msg, Model> = {
mount(mount: MountPoint): Promise<MountedApp>;
dispatch: Dispatch<Msg>;
getState(): AppState<Model>;
destroy(): void;
};
export function createApp<Model, Msg>({
nvim,
initialModel,
update,
View,
suppressThunks,
onUpdate,
}: {
nvim: Nvim;
initialModel: Model;
update: Update<Msg, Model>;
View: View<Msg, Model>;
onUpdate?: (msg: Msg, model: Model) => void;
/** During testing, we probably don't want thunks to run
*/
suppressThunks?: boolean;
}): App<Msg, Model> {
let currentState: AppState<Model> = {
status: "running",
model: initialModel,
};
let root:
| MountedView<{ currentState: AppState<Model>; dispatch: Dispatch<Msg> }>
| undefined;
let renderDefer: Defer<void> | undefined;
let renderPromise: Promise<void> | undefined;
let reRender = false;
const dispatch = (msg: Msg) => {
nvim.logger?.debug(`dispatch msg: ${JSON.stringify(msg)}`);
if (currentState.status != "running") {
return;
}
try {
const [nextModel, thunk] = update(msg, currentState.model);
if (thunk) {
if (suppressThunks) {
nvim.logger?.debug(`thunk suppressed`);
} else {
nvim.logger?.debug(`starting thunk`);
thunk(dispatch).catch((err) => {
console.error(err);
const message =
err instanceof Error
? `Error: ${err.message}\n${err.stack}`
: JSON.stringify(err);
nvim.logger?.error(`Thunk execution error: ${message}`);
// eslint-disable-next-line @typescript-eslint/no-floating-promises
notifyErr(nvim, err);
});
}
}
currentState = { status: "running", model: nextModel };
render();
if (onUpdate) {
onUpdate(msg, currentState.model);
}
} catch (e) {
nvim.logger?.error(e as Error);
currentState = { status: "error", error: (e as Error).message };
}
};
function render() {
if (renderPromise) {
reRender = true;
} else {
if (!renderDefer) {
renderDefer = new Defer();
}
if (root) {
renderPromise = root
.render({ currentState, dispatch })
.catch((err) => {
nvim.logger?.error(err as Error);
// eslint-disable-next-line @typescript-eslint/no-floating-promises
notifyErr(nvim, err);
if (renderDefer) {
renderDefer.reject(err as Error);
renderDefer = undefined;
}
})
.finally(() => {
renderPromise = undefined;
if (reRender) {
reRender = false;
nvim.logger?.debug(`followup render triggered`);
render();
} else {
if (renderDefer) {
renderDefer.resolve();
renderDefer = undefined;
}
}
});
}
}
}
function App({
currentState,
dispatch,
}: {
currentState: AppState<Model>;
dispatch: Dispatch<Msg>;
}) {
return d`${
currentState.status == "running"
? View({ model: currentState.model, dispatch })
: d`Error: ${currentState.error}`
}`;
}
return {
async mount(mount: MountPoint) {
root = await mountView({
view: App,
mount,
props: { currentState, dispatch },
});
for (const vimKey of BINDING_KEYS) {
try {
await nvim.call("nvim_exec_lua", [
`require('magenta').listenToBufKey(${mount.buffer.id}, "${vimKey}")`,
[],
]);
} catch (e) {
throw new Error(`failed to nvim_exec_lua: ${JSON.stringify(e)}`);
}
}
return {
getMountedNode() {
return root!._getMountedNode();
},
unmount() {
if (root) {
root.unmount();
root = undefined;
}
},
render() {
render();
},
async waitForRender() {
if (renderDefer) {
await renderDefer.promise;
}
},
async onKey(key: BindingKey) {
const window = await getCurrentWindow(mount.nvim);
const buffer = await window.buffer();
if (buffer.id != mount.buffer.id) {
nvim.logger?.warn(
`Got onKey event ${key}, but current window is not showing mounted buffer`,
);
return;
}
const { row, col } = await window.getCursor();
if (root) {
// win_get_cursor is 1-indexed, while our positions are 0-indexed
const bindings = getBindings(root._getMountedNode(), {
row: (row - 1) as Row0Indexed,
col,
});
if (bindings && bindings[key]) {
bindings[key]();
}
} else {
nvim.logger?.debug(
`Got onKey event ${key}, but root is no longer mounted.`,
);
}
},
};
},
dispatch,
getState() {
return currentState;
},
destroy() {
if (root) {
root.unmount();
root = undefined;
}
currentState = {
status: "error",
error: "destroyed",
};
},
};
}
export type Thunk<Msg> = (dispatch: Dispatch<Msg>) => Promise<void>;
export function wrapThunk<MsgType extends string, InnerMsg>(
msgType: MsgType,
thunk: Thunk<InnerMsg> | undefined,
): Thunk<{ type: MsgType; msg: InnerMsg }> | undefined {
if (!thunk) {
return undefined;
}
return (dispatch: Dispatch<{ type: MsgType; msg: InnerMsg }>) =>
thunk((msg: InnerMsg) => dispatch({ type: msgType, msg }));
}
export function chainThunks<Msg>(
...thunks: (Thunk<Msg> | undefined)[]
): Thunk<Msg> {
return async (dispatch) => {
for (const thunk of thunks) {
if (thunk) {
await thunk(dispatch);
}
}
};
}
export function parallelThunks<Msg>(
...thunks: (Thunk<Msg> | undefined)[]
): Thunk<Msg> {
return async (dispatch) => {
await Promise.all(thunks.map((t) => t && t(dispatch)));
};
}