1
0
Fork 0
mirror of synced 2024-06-18 18:35:37 +12:00

Hide state bindings if feature is not available

This commit is contained in:
Andrew Kingston 2021-09-02 11:39:41 +01:00
parent dbbcf4052e
commit 5d1be13c42

View file

@ -266,12 +266,16 @@ const getDeviceBindings = () => {
* Gets all state bindings that are globally available. * Gets all state bindings that are globally available.
*/ */
const getStateBindings = () => { const getStateBindings = () => {
const safeState = makePropSafe("state") let bindings = []
return getAllStateVariables().map(key => ({ if (get(store).clientFeatures?.state) {
type: "context", const safeState = makePropSafe("state")
runtimeBinding: `${safeState}.${makePropSafe(key)}`, bindings = getAllStateVariables().map(key => ({
readableBinding: `State.${key}`, type: "context",
})) runtimeBinding: `${safeState}.${makePropSafe(key)}`,
readableBinding: `State.${key}`,
}))
}
return bindings
} }
/** /**