1
0
Fork 0
mirror of synced 2024-08-08 06:37:55 +12:00
budibase/packages/server/utilities/builder/buildApp.js

147 lines
3.8 KiB
JavaScript
Raw Normal View History

const { appPackageFolder } = require("../createAppPackage")
const { componentLibraryInfo } = require("./componentLibraryInfo")
2019-09-07 00:04:23 +12:00
const {
stat,
ensureDir,
pathExists,
constants,
copyFile,
writeFile,
readFile,
} = require("fs-extra")
const { join, resolve, dirname } = require("path")
const sqrl = require("squirrelly")
2019-09-07 00:04:23 +12:00
2019-09-07 17:50:35 +12:00
module.exports = async (config, appname, pages, appdefinition) => {
const appPath = appPackageFolder(config, appname)
await buildClientAppDefinition(
config,
appname,
appdefinition,
appPath,
pages,
"main"
)
await buildClientAppDefinition(
config,
appname,
appdefinition,
appPath,
pages,
"unauthenticated"
)
await buildIndexHtml(config, appname, appPath, pages, "main")
await buildIndexHtml(config, appname, appPath, pages, "unauthenticated")
await copyClientLib(appPath, "main")
await copyClientLib(appPath, "unauthenticated")
2019-09-07 00:04:23 +12:00
}
const publicPath = (appPath, pageName) => join(appPath, "public", pageName)
const rootPath = (config, appname) =>
config.useAppRootPath ? `/${appname}` : ""
2019-09-07 00:04:23 +12:00
2019-09-07 17:50:35 +12:00
const copyClientLib = async (appPath, pageName) => {
var sourcepath = require.resolve("@budibase/client")
var destPath = join(publicPath(appPath, pageName), "budibase-client.js")
await copyFile(sourcepath, destPath, constants.COPYFILE_FICLONE)
await copyFile(
sourcepath + ".map",
destPath + ".map",
constants.COPYFILE_FICLONE
)
2019-09-07 00:04:23 +12:00
}
2019-09-07 17:50:35 +12:00
const buildIndexHtml = async (config, appname, appPath, pages, pageName) => {
const appPublicPath = publicPath(appPath, pageName)
const appRootPath = rootPath(config, appname)
2019-09-07 00:04:23 +12:00
const stylesheetUrl = s =>
s.indexOf("http://") === 0 || s.indexOf("https://") === 0
? s
: `/${rootPath(config, appname)}/${s}`
2019-09-07 00:04:23 +12:00
const templateObj = {
title: pages[pageName].index.title || "Budibase App",
favicon: `${appRootPath}/${pages[pageName].index.favicon ||
"/_shared/favicon.png"}`,
stylesheets: (pages.stylesheets || []).map(stylesheetUrl),
appRootPath,
}
2019-09-07 00:04:23 +12:00
const indexHtmlTemplate = await readFile(
resolve(__dirname, "index.template.html"),
"utf8"
)
2019-09-07 00:04:23 +12:00
const indexHtmlPath = join(appPublicPath, "index.html")
2019-09-07 00:04:23 +12:00
const indexHtml = sqrl.Render(indexHtmlTemplate, templateObj)
2019-09-09 16:24:14 +12:00
await writeFile(indexHtmlPath, indexHtml, { flag: "w+" })
2019-09-07 00:04:23 +12:00
}
const buildClientAppDefinition = async (
config,
appname,
appdefinition,
appPath,
pages,
pageName
) => {
const appPublicPath = publicPath(appPath, pageName)
const appRootPath = rootPath(config, appname)
const componentLibraries = []
for (let lib of pages.componentLibraries) {
const info = await componentLibraryInfo(appPath, lib)
const libFile = info.components._lib || "index.js"
const source = join(info.libDir, libFile)
const moduleDir = join(
appPublicPath,
"lib",
info.libDir.replace(appPath, "")
)
const destPath = join(moduleDir, libFile)
await ensureDir(dirname(destPath))
componentLibraries.push({
importPath: destPath.replace(appPublicPath, "").replace(/\\/g, "/"),
libName: lib,
})
let shouldCopy = !(await pathExists(destPath))
if (!shouldCopy) {
const destStat = await stat(destPath)
const sourceStat = await stat(source)
shouldCopy = destStat.ctimeMs !== sourceStat.ctimeMs
2019-09-07 00:04:23 +12:00
}
if (shouldCopy) {
await copyFile(source, destPath, constants.COPYFILE_FICLONE)
2019-09-07 17:50:35 +12:00
}
}
const filename = join(appPublicPath, "clientAppDefinition.js")
const clientAppDefObj = {
hierarchy: appdefinition.hierarchy,
componentLibraries: componentLibraries,
appRootPath: appRootPath,
props: appdefinition.props[pageName],
}
await writeFile(
filename,
`window['##BUDIBASE_APPDEFINITION##'] = ${JSON.stringify(clientAppDefObj)};
window['##BUDIBASE_UIFUNCTIONS##'] = ${appdefinition.uiFunctions}`
)
}