@ugandaemr/esm-outpatient-app
Version:
Outpatient microfrontend for UgandaEMR
44 lines (41 loc) • 1.45 kB
text/typescript
import { Type, validator } from '@openmrs/esm-framework';
/**
* This is the config schema. It expects a configuration object which
* looks like this:
*
* ```json
* { "casualGreeting": true, "whoToGreet": ["Mom"] }
* ```
*
* In OpenMRS Microfrontends, all config parameters are optional. Thus,
* all elements must have a reasonable default. A good default is one
* that works well with the reference application.
*
* To understand the schema below, please read the configuration system
* documentation:
* https://openmrs.github.io/openmrs-esm-core/#/main/config
* Note especially the section "How do I make my module configurable?"
* https://openmrs.github.io/openmrs-esm-core/#/main/config?id=im-developing-an-esm-module-how-do-i-make-it-configurable
* and the Schema Reference
* https://openmrs.github.io/openmrs-esm-core/#/main/config?id=schema-reference
*/
export const configSchema = {
casualGreeting: {
_type: Type.Boolean,
_default: false,
_description: 'Whether to use a casual greeting (or a formal one).',
},
whoToGreet: {
_type: Type.Array,
_default: ['World'],
_description: 'Who should be greeted. Names will be separated by a comma and space.',
_elements: {
_type: Type.String,
},
_validators: [validator((v) => v.length > 0, 'At least one person must be greeted.')],
},
};
export type Config = {
casualGreeting: boolean;
whoToGreet: Array<String>;
};