Skip to main content

Variable: useSmartConfigStore

const useSmartConfigStore: StoreApi<SmartConfigStoreType> & object

Smart Config state management store. This is only used for answerExpressions. It is recommended to manage the state of the FHIRClient, patient, user, and encounter in the parent application, since the renderer doesn't provide pre-population capabilities. Will be deprecated in version 1.0.0.

This is the React version of the store which can be used as React hooks in React functional components.

Type declaration

use

use: object

use.client()

client: () => null | Client

Returns

null | Client

use.encounter()

encounter: () => null | Encounter

Returns

null | Encounter

use.patient()

patient: () => null | Patient

Returns

null | Patient

use.setClient()

setClient: () => (client) => void

Returns

Function

Parameters
ParameterType
clientClient
Returns

void

use.setEncounter()

setEncounter: () => (encounter) => void

Returns

Function

Parameters
ParameterType
encounterEncounter
Returns

void

use.setPatient()

setPatient: () => (patient) => void

Returns

Function

Parameters
ParameterType
patientPatient
Returns

void

use.setUser()

setUser: () => (user) => void

Returns

Function

Parameters
ParameterType
userPractitioner
Returns

void

use.user()

user: () => null | Practitioner

Returns

null | Practitioner

See

  • SmartConfigStoreType for available properties and methods.
  • smartConfigStore for the vanilla store.