fix: re-exposing store in component api, as form depends on it
This commit is contained in:
parent
2aca93ecf6
commit
7fe7c9b286
|
@ -47,6 +47,7 @@ export const bbFactory = ({
|
|||
setBinding: setBindableComponentProp(treeNode),
|
||||
api,
|
||||
parent,
|
||||
store: store.getStore(treeNode.contextStoreKey),
|
||||
// these parameters are populated by screenRouter
|
||||
routeParams: () => store.getState()["##routeParams"],
|
||||
}
|
||||
|
|
|
@ -94,6 +94,9 @@ const set = (value, dataProviderId, childIndex) =>
|
|||
const getState = contextStoreKey =>
|
||||
contextStoreKey ? contextStores[contextStoreKey].state : rootState
|
||||
|
||||
const getStore = contextStoreKey =>
|
||||
contextStoreKey ? contextStores[contextStoreKey] : rootStore
|
||||
|
||||
export default {
|
||||
subscribe,
|
||||
update,
|
||||
|
@ -101,4 +104,5 @@ export default {
|
|||
getState,
|
||||
create,
|
||||
contextStoreKey,
|
||||
getStore,
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue