1
0
Fork 0
mirror of synced 2024-08-22 13:31:37 +12:00
budibase/packages/client/src/index.js

65 lines
1.6 KiB
JavaScript
Raw Normal View History

import { createApp } from "./createApp"
import { builtins, builtinLibName } from "./render/builtinComponents"
2019-09-07 17:50:35 +12:00
2020-02-21 09:19:24 +13:00
/**
* create a web application from static budibase definition files.
* @param {object} opts - configuration options for budibase client libary
*/
2020-02-26 04:21:23 +13:00
export const loadBudibase = async opts => {
const _window = (opts && opts.window) || window
2020-05-07 21:53:34 +12:00
// const _localStorage = (opts && opts.localStorage) || localStorage
const frontendDefinition = _window["##BUDIBASE_FRONTEND_DEFINITION##"]
const uiFunctions = _window["##BUDIBASE_FRONTEND_FUNCTIONS##"]
2020-02-26 04:21:23 +13:00
2020-05-08 09:25:27 +12:00
// TODO: update
2020-05-07 21:53:34 +12:00
const user = {}
2020-05-18 22:01:09 +12:00
const componentLibraryModules = (opts && opts.componentLibraries) || {}
2020-05-08 09:25:27 +12:00
const libraries = frontendDefinition.libraries || []
2020-05-07 21:53:34 +12:00
2020-05-06 23:17:15 +12:00
for (let library of libraries) {
2020-05-07 21:53:34 +12:00
// fetch the JavaScript for the component libraries from the server
2020-05-06 23:17:15 +12:00
componentLibraryModules[library] = await import(
2020-05-07 21:53:34 +12:00
`/${frontendDefinition.appId}/componentlibrary?library=${encodeURI(
library
)}`
)
}
2020-05-06 23:17:15 +12:00
componentLibraryModules[builtinLibName] = builtins(_window)
2020-02-26 05:23:45 +13:00
const {
initialisePage,
screenStore,
pageStore,
routeTo,
rootNode,
} = createApp(
2020-05-06 23:17:15 +12:00
componentLibraryModules,
frontendDefinition,
user,
uiFunctions || {},
2020-02-26 04:21:23 +13:00
_window,
rootNode
)
2020-02-26 04:21:23 +13:00
const route = _window.location
? _window.location.pathname.replace(frontendDefinition.appRootPath, "")
: ""
2020-02-26 05:23:45 +13:00
initialisePage(frontendDefinition.page, _window.document.body, route)
return {
screenStore,
pageStore,
routeTo,
2020-02-26 05:23:45 +13:00
rootNode,
}
}
if (window) {
window.loadBudibase = loadBudibase
}