@openmrs/react-root-decorator
v3.3.1
Published
A decorator for OpenMRS Root react components
Downloads
38
Readme
openmrs-react-root-decorator
A decorator for root react components.
Installation
npm install --save @openmrs/react-root-decorator
Usage
import openmrsRootDecorator from "@openmrs/react-root-decorator";
// Exported only for testing the component without the decorator being there.
// You should use the default export for everything but tests.
export function MyRoot(props) {
return <div>My component</div>;
}
export default openmrsRootDecorator({
// The featureName is shown to users! Make it human-friendly.
featureName: "A user-facing thing",
// moduleName is the name of your in-browser module, as it appears in the import map
moduleName: "@openmrs/esm-login",
})(MyRoot);
API
@openmrs/react-root-decorator
exports a function as the default export. That function must
be called with an opts
object with the following properties:
featureName
(required): A string describing the feature. Example ispatient search
. This string is shown to users.moduleName
(required): The string name of your in-browser module, as it appears in the import map. Example:"@openmrs/esm-login"
strictMode
(optional): A boolean that turns on React strict mode. Defaults totrue
.throwErrorsToConsole
(optional): A boolean that indicates whether React errors should be thrown to the window viasetTimeout(() => {throw err})
. This is so that an automatic error logging library will be able to pick up the errors. Defaults totrue
.disableTranslations
(optional): A boolean that indicates whether to disable translations with i18next. Defaults tofalse
.
The decorator returns a function that should then be called with your root react component.