A collection of reusable React components and some Redux / JS utilities.
Install this library in your React project use command yarn add @pm4ml/mojaloop-payment-manager-ui-components-legacy.
You can import the components in your project as follows:
// The CSS file only needs to be imported once
import '@pm4ml/mojaloop-payment-manager-ui-components-legacy/dist/react/components/index.css';
import { Button } from '@pm4ml/mojaloop-payment-manager-ui-components-legacy/dist/react/components/index';The library exports a number of components.
Almost each component has a README file describing the prop types.
There are 2 different playgrounds to use to inspect and play with the components:
- the embedded playground: see how to run.
- the Storybook playground: see how to run.
It requires node v12 to run; please make sure to have the correct version installed.
It is suggested to use nvm to easily install and manage multiple node versions.
Install all the dependencies
yarn installStarts the webpack-dev-server with hot reloading capabilities in development mode.
It uses the webpack.dev.config.js config file.
yarn startOpen the browser at the specified address http://localhost:9090
Builds the bundle artifact with webpack.
It uses the webpack.config.js config file.
yarn buildRuns prettier on the codebase.
yarn prettierLints on the codebase.
yarn lintRuns Jest tests.
yarn testRuns the Storybook playground.
yarn storybookIt's important to create a unique version for every PR.
Versions are used to deploy the correct articafts online.
Note: Forgetting to create a version will cause the previous build artifacts to be overridden.
Creating a new version is done with yarn version, make sure to do the correct incremental update.
Versions need to be pushed to the repo with git push --tags
Artifacts are automatically saved as a zip library with the AWS CI setup for this project.
To publish as a npm module, run the following command npm publish --access public.
A new release will be published at https://www.npmjs.com/package/@pm4ml/mojaloop-payment-manager-ui-components-legacy
Note: you need to be logged in the PM4ML organization in npm, credentials can be found in 1Password.