2019-07-25 08:31:54 +02:00
|
|
|
const {
|
|
|
|
appPackageFolder,
|
|
|
|
appsFolder
|
|
|
|
} = require("./createAppPackage");
|
|
|
|
const {
|
|
|
|
writeFile,
|
|
|
|
readFile,
|
|
|
|
readdir,
|
2019-07-26 16:13:15 +02:00
|
|
|
exists,
|
|
|
|
stat
|
2019-07-25 08:31:54 +02:00
|
|
|
} = require("./fsawait");
|
2019-07-26 16:13:15 +02:00
|
|
|
const {
|
|
|
|
resolve,
|
|
|
|
join
|
|
|
|
} = require("path");
|
2019-07-25 08:31:54 +02:00
|
|
|
const { $ } = require("budibase-core").common;
|
|
|
|
const {
|
|
|
|
keys,
|
|
|
|
reduce,
|
2019-07-26 16:13:15 +02:00
|
|
|
some,
|
|
|
|
keyBy
|
2019-07-25 08:31:54 +02:00
|
|
|
} = require("lodash/fp");
|
2019-07-26 16:13:15 +02:00
|
|
|
const {merge} = require("lodash");
|
2019-07-13 11:35:57 +02:00
|
|
|
|
|
|
|
module.exports.getPackageForBuilder = async (config, appname) => {
|
|
|
|
const appPath = appPackageFolder(config, appname);
|
2019-07-26 16:13:15 +02:00
|
|
|
|
|
|
|
const pages = JSON.parse(await readFile(
|
|
|
|
`${appPath}/pages.json`,
|
|
|
|
"utf8"));
|
|
|
|
|
2019-07-13 11:35:57 +02:00
|
|
|
return ({
|
|
|
|
appDefinition: JSON.parse(await readFile(
|
|
|
|
`${appPath}/appDefinition.json`,
|
|
|
|
"utf8")),
|
|
|
|
|
|
|
|
accessLevels: JSON.parse(await readFile(
|
|
|
|
`${appPath}/access_levels.json`,
|
2019-07-25 08:31:54 +02:00
|
|
|
"utf8")),
|
|
|
|
|
2019-07-26 16:13:15 +02:00
|
|
|
pages,
|
|
|
|
|
|
|
|
rootComponents: await getRootComponents(appPath, pages),
|
|
|
|
|
|
|
|
derivedComponents: keyBy("_name")(
|
|
|
|
await fetchDerivedComponents(appPath))
|
2019-07-13 11:35:57 +02:00
|
|
|
})
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
module.exports.savePackage = async (config, appname, pkg) => {
|
|
|
|
const appPath = appPackageFolder(config, appname);
|
|
|
|
await writeFile(
|
|
|
|
`${appPath}/appDefinition.json`,
|
|
|
|
JSON.stringify(pkg.appDefinition),
|
|
|
|
"utf8");
|
|
|
|
|
|
|
|
await writeFile(
|
|
|
|
`${appPath}/access_levels.json`,
|
|
|
|
JSON.stringify(pkg.accessLevels),
|
|
|
|
"utf8");
|
|
|
|
|
2019-07-25 08:31:54 +02:00
|
|
|
await writeFile(
|
|
|
|
`${appPath}/pages.json`,
|
2019-07-26 16:13:15 +02:00
|
|
|
JSON.stringify(pkg.pages),
|
2019-07-25 08:31:54 +02:00
|
|
|
"utf8");
|
2019-07-14 08:46:36 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
module.exports.getApps = async (config) =>
|
|
|
|
await readdir(appsFolder(config));
|
|
|
|
|
|
|
|
|
2019-07-26 16:13:15 +02:00
|
|
|
const getRootComponents = async (appPath, pages ,lib) => {
|
2019-07-25 08:31:54 +02:00
|
|
|
|
2019-07-26 16:13:15 +02:00
|
|
|
const componentsInLibrary = async (libname) => {
|
2019-07-25 08:31:54 +02:00
|
|
|
const isRelative = some(c => c === libname.substring(0,1))
|
|
|
|
("./~\\".split(""));
|
|
|
|
|
|
|
|
const componentsPath = isRelative
|
|
|
|
? resolve(appPath, libname, "components.json")
|
|
|
|
: resolve(libname, "components.json");
|
|
|
|
|
|
|
|
if(!await exists(componentsPath)) {
|
|
|
|
const e = new Error(`could not find components definition file at ${componentsPath}`);
|
|
|
|
e.statusCode = 404;
|
|
|
|
throw e;
|
|
|
|
}
|
|
|
|
|
|
|
|
let components;
|
|
|
|
try {
|
|
|
|
components = JSON.parse(
|
2019-07-26 16:13:15 +02:00
|
|
|
await readFile(componentsPath, "utf8"));
|
2019-07-25 08:31:54 +02:00
|
|
|
} catch(e) {
|
2019-07-26 16:13:15 +02:00
|
|
|
const err = `could not parse JSON - ${componentsPath} : ${e.message}`;
|
|
|
|
throw new Error(err);
|
2019-07-25 08:31:54 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
return $(components, [
|
|
|
|
keys,
|
|
|
|
reduce((obj, k) => {
|
|
|
|
obj[`${libname}/${k}`] = components[k]
|
|
|
|
return obj;
|
|
|
|
}, {})
|
|
|
|
])
|
|
|
|
}
|
|
|
|
|
|
|
|
let libs;
|
|
|
|
if(!lib) {
|
2019-07-26 16:13:15 +02:00
|
|
|
pages = pages || JSON.parse(await readFile(
|
2019-07-25 08:31:54 +02:00
|
|
|
`${appPath}/pages.json`,
|
|
|
|
"utf8"));
|
|
|
|
|
|
|
|
if(!pages.componentLibraries) return [];
|
|
|
|
|
|
|
|
libs = pages.componentLibraries;
|
|
|
|
} else {
|
|
|
|
libs = [lib];
|
|
|
|
}
|
|
|
|
|
2019-07-26 16:13:15 +02:00
|
|
|
const components = {};
|
|
|
|
for(let l of libs) {
|
|
|
|
merge(components, await componentsInLibrary(l))
|
|
|
|
}
|
|
|
|
|
|
|
|
return components;
|
|
|
|
}
|
|
|
|
|
|
|
|
const fetchDerivedComponents = async (appPath, relativePath = "") => {
|
|
|
|
|
|
|
|
const currentDir = join(appPath, "components", relativePath);
|
|
|
|
|
|
|
|
const contents = await readdir(currentDir);
|
|
|
|
|
|
|
|
const components = [];
|
|
|
|
|
|
|
|
for(let item of contents) {
|
|
|
|
const itemRelativePath = join(relativePath, item);
|
|
|
|
const itemFullPath = join(currentDir, item);
|
|
|
|
const stats = await stat(itemFullPath);
|
|
|
|
|
|
|
|
if(stats.isFile()) {
|
|
|
|
|
|
|
|
if(!item.endsWith(".json")) continue;
|
|
|
|
|
|
|
|
const component = JSON.parse(
|
|
|
|
await readFile(itemFullPath, "utf8"));
|
|
|
|
|
|
|
|
component._name = itemRelativePath
|
|
|
|
.substring(0, itemRelativePath.length - 5)
|
|
|
|
.replace(/\\/g, "/");
|
|
|
|
|
|
|
|
components.push(component);
|
|
|
|
} else {
|
|
|
|
const childComponents = await fetchDerivedComponents(
|
|
|
|
appPath, join(relativePath, item)
|
|
|
|
);
|
|
|
|
|
|
|
|
for(let c of childComponents) {
|
|
|
|
components.push(c);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return components;
|
2019-07-25 08:31:54 +02:00
|
|
|
}
|
2019-07-14 08:46:36 +02:00
|
|
|
|
2019-07-26 16:13:15 +02:00
|
|
|
module.exports.getRootComponents = getRootComponents;
|