forked from PipedreamHQ/pipedream
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcheckComponentAppProp.js
48 lines (40 loc) · 1.31 KB
/
checkComponentAppProp.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
42
43
44
45
46
47
48
const path = require("path");
const {
rootDir,
iterateComponentFiles,
} = require("./findBadKeys.js");
const tsconfig = require("../tsconfig.json");
function checkComponentHasAppProp(component, appNameSlug) {
const matching = Object.values(component.props)
.filter((prop) => prop.type === "app" && prop.app === appNameSlug);
if (!matching.length) {
console.error(`[!] ${component.key} - missing app prop for ${appNameSlug}`);
err = true;
}
}
function getComponentPath(filePath) {
const { outDir } = tsconfig.compilerOptions;
const appNameSlug = filePath.split("/")[1];
const isTypeScript = filePath.endsWith(".ts");
const componentPath = isTypeScript
? filePath
.replace(appNameSlug, path.join(appNameSlug, outDir))
.replace(/\.ts$/, ".mjs")
: filePath;
return path.join(rootDir, componentPath);
}
async function main() {
const iterator = iterateComponentFiles();
for (const file of iterator) {
const appNameSlug = file.split("/")[1];
const componentPath = getComponentPath(file);
const { default: component } = await import(componentPath);
checkComponentHasAppProp(component, appNameSlug);
}
if (err) {
const core = require('@actions/core');
core.setFailed("There are errors in some components. See the messages above.");
}
}
let err;
main();