-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.js
41 lines (34 loc) · 982 Bytes
/
index.js
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
let handlers = {};
let cachedDeps = {};
let loadFileCached = null;
async function resolveHandler(
filePath = "./example.cljs",
handlerName = "handler"
) {
if (!loadFileCached) {
let { loadFile } = await import("nbb");
loadFileCached = loadFile;
}
if (!cachedDeps[filePath]) {
let deps = await loadFileCached(filePath);
cachedDeps[filePath] = deps;
}
if (!cachedDeps[filePath][handlerName]) {
throw new Error(
`Handler '${handlerName}' was not found in '${filePath}'. Maybe missing export?`
);
}
let key = filePath + "_" + handlerName;
handlers[key] = cachedDeps[filePath][handlerName];
return handlers[key];
}
function handlerProxy(filePath, handlerName) {
let key = filePath + "_" + handlerName;
return async (event, context) => {
if (handlers[key]) {
return handlers[key](event, context);
}
return (await resolveHandler(filePath, handlerName))(event, context);
};
}
module.exports = handlerProxy;