56 lines
1.4 KiB
JavaScript
56 lines
1.4 KiB
JavaScript
const CouchDB = require("../../db")
|
|
const ClientDb = require("../../db/clientDb")
|
|
const { resolve, join } = require("../../utilities/sanitisedPath")
|
|
const {
|
|
budibaseTempDir,
|
|
budibaseAppsDir,
|
|
} = require("../../utilities/budibaseDir")
|
|
|
|
exports.fetchAppComponentDefinitions = async function(ctx) {
|
|
const masterDb = new CouchDB("client_app_lookup")
|
|
const { clientId } = await masterDb.get(ctx.params.appId)
|
|
const db = new CouchDB(ClientDb.name(clientId))
|
|
const app = await db.get(ctx.params.appId)
|
|
|
|
const componentDefinitions = app.componentLibraries.reduce(
|
|
(acc, componentLibrary) => {
|
|
let appDirectory = resolve(
|
|
budibaseAppsDir(),
|
|
ctx.params.appId,
|
|
"node_modules"
|
|
)
|
|
|
|
if (ctx.isDev) {
|
|
appDirectory = budibaseTempDir()
|
|
}
|
|
|
|
const componentJson = require(join(
|
|
appDirectory,
|
|
componentLibrary,
|
|
ctx.isDev ? "" : "package",
|
|
"components.json"
|
|
))
|
|
|
|
const result = {}
|
|
|
|
// map over the components.json and add the library identifier as a key
|
|
// button -> @budibase/standard-components/button
|
|
for (key in componentJson) {
|
|
const fullComponentName = `${componentLibrary}/${key}`
|
|
result[fullComponentName] = {
|
|
_component: fullComponentName,
|
|
...componentJson[key],
|
|
}
|
|
}
|
|
|
|
return {
|
|
...acc,
|
|
...result,
|
|
}
|
|
},
|
|
{}
|
|
)
|
|
|
|
ctx.body = componentDefinitions
|
|
}
|