1
0
Fork 0
mirror of synced 2024-08-04 04:41:37 +12:00
budibase/packages/server/utilities/builder/index.js

165 lines
4.1 KiB
JavaScript
Raw Normal View History

const {
appPackageFolder,
appsFolder
2019-09-07 00:04:23 +12:00
} = require("../createAppPackage");
const {
2019-07-27 04:08:59 +12:00
readJSON,
writeJSON,
readdir,
2019-07-27 04:08:59 +12:00
stat,
ensureDir,
rename,
2019-07-27 18:43:03 +12:00
unlink,
rmdir
2019-07-27 04:08:59 +12:00
} = require("fs-extra");
const {
2019-07-27 04:08:59 +12:00
join,
dirname
} = require("path");
2019-09-10 17:14:45 +12:00
const { $ } = require("@budibase/core").common;
const {
2019-09-09 16:24:14 +12:00
keyBy
} = require("lodash/fp");
const {merge} = require("lodash");
2019-07-13 21:35:57 +12:00
2019-09-07 00:04:23 +12:00
const { componentLibraryInfo } = require("./componentLibraryInfo");
2019-09-07 17:50:35 +12:00
const savePackage = require("./savePackage");
module.exports.savePackage = savePackage;
2019-09-07 00:04:23 +12:00
2019-07-13 21:35:57 +12:00
module.exports.getPackageForBuilder = async (config, appname) => {
const appPath = appPackageFolder(config, appname);
2019-07-27 04:08:59 +12:00
const pages = await readJSON(`${appPath}/pages.json`);
2019-07-13 21:35:57 +12:00
return ({
2019-07-27 04:08:59 +12:00
appDefinition: await readJSON(`${appPath}/appDefinition.json`),
2019-07-13 21:35:57 +12:00
2019-07-27 04:08:59 +12:00
accessLevels: await readJSON(`${appPath}/access_levels.json`),
pages,
rootComponents: await getRootComponents(appPath, pages),
2019-07-28 19:03:11 +12:00
derivedComponents: keyBy("name")(
await fetchDerivedComponents(appPath))
2019-07-13 21:35:57 +12:00
})
}
module.exports.getApps = async (config) =>
await readdir(appsFolder(config));
2019-07-27 04:08:59 +12:00
const componentPath = (appPath, name) =>
join(appPath, "components", name + ".json");
module.exports.saveDerivedComponent = async (config, appname, component) => {
const appPath = appPackageFolder(config, appname);
2019-09-09 16:24:14 +12:00
const compPath = componentPath(appPath, component.name);
await ensureDir(dirname(compPath));
2019-07-27 04:08:59 +12:00
await writeJSON(
2019-09-09 16:24:14 +12:00
compPath,
2019-07-27 04:08:59 +12:00
component,
2019-08-20 08:18:23 +12:00
{encoding:"utf8", flag:"w", spaces:2});
2019-07-27 04:08:59 +12:00
}
module.exports.renameDerivedComponent = async (config, appname, oldName, newName) => {
const appPath = appPackageFolder(config, appname);
const oldComponentPath = componentPath(
appPath, oldName);
2019-07-27 18:31:31 +12:00
const newComponentPath = componentPath(
2019-07-27 04:08:59 +12:00
appPath, newName);
await ensureDir(dirname(newComponentPath));
await rename(
oldComponentPath,
newComponentPath);
}
module.exports.deleteDerivedComponent = async (config, appname, name) => {
const appPath = appPackageFolder(config, appname);
2019-07-27 18:43:03 +12:00
const componentFile = componentPath(appPath, name);
await unlink(componentFile);
const dir = dirname(componentFile);
if((await readdir(dir)).length === 0) {
await rmdir(dir);
}
2019-07-27 04:08:59 +12:00
}
2019-09-09 16:24:14 +12:00
module.exports.componentLibraryInfo = async (config, appname, lib) => {
const appPath = appPackageFolder(config, appname);
return await componentLibraryInfo(appPath, lib);
};
2019-08-20 08:18:23 +12:00
const getRootComponents = async (appPath, pages ,lib) => {
let libs;
if(!lib) {
2019-07-27 04:08:59 +12:00
pages = pages || await readJSON(
`${appPath}/pages.json`);
if(!pages.componentLibraries) return [];
libs = pages.componentLibraries;
} else {
libs = [lib];
}
const components = {};
for(let l of libs) {
2019-09-09 16:24:14 +12:00
const info = await componentLibraryInfo(appPath, l);
merge(components, info.components);
}
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;
2019-07-27 04:08:59 +12:00
const component =
await readJSON(itemFullPath);
2019-07-28 19:03:11 +12:00
component.name = itemRelativePath
.substring(0, itemRelativePath.length - 5)
.replace(/\\/g, "/");
component.props = component.props || {};
components.push(component);
} else {
const childComponents = await fetchDerivedComponents(
appPath, join(relativePath, item)
);
for(let c of childComponents) {
components.push(c);
}
}
}
return components;
}
module.exports.getRootComponents = getRootComponents;