@openmrs/react-root-decorator
TypeScript icon, indicating that this package has built-in type declarations

3.3.1 • Public • Published

openmrs-react-root-decorator

Build Status

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 is patient 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 to true.
  • throwErrorsToConsole (optional): A boolean that indicates whether React errors should be thrown to the window via setTimeout(() => {throw err}). This is so that an automatic error logging library will be able to pick up the errors. Defaults to true.
  • disableTranslations (optional): A boolean that indicates whether to disable translations with i18next. Defaults to false.

The decorator returns a function that should then be called with your root react component.

Package Sidebar

Install

npm i @openmrs/react-root-decorator

Weekly Downloads

13

Version

3.3.1

License

MPL-2.0

Unpacked Size

39 kB

Total Files

15

Last publish

Collaborators

  • ibacher
  • mogoodrich
  • openmrs-bot
  • rkorytkowski
  • psbrandt
  • djazayeri
  • joeldenning
  • fatmali
  • mksd
  • rrameshbtech
  • brandones
  • jdick
  • bmamlin
  • dkibet
  • florianrappl
  • mdubey
  • dennisforthewin