@mongez/react v3.2.2
Mongez React (MR)
A react app manager for organizing and utilizing react apps
It's highly recommended to use Typescript with your react apps, this package works with javascript though and the documentation will be with typescript as well.
Installation
yarn add @mongez/react
Or
npm i @mongez/react
Usage
First off, clear your src/index.ts or src/index.js file from everything inside it.
Now, import the package in your src/index.ts or src/index.js file
import startApplication from "@mongez/react";
startApplication();Before we move on, please have a look at Mongez React Router (MRR) so you will have a better idea about lazy loaded apps and modules.
Project Structure
In your src directory, clear all files and folders from it but the index file as it is our entry point.
Now create the following directories: apps and shared directories, so your project structure should be like this:
|--- src
|--- apps
|--- shared
|--- shared-provider.ts
|--- index.tsHere we've created two directories, apps and shared, now let's create a new our first app directory, we'll call it front-office
|--- src
|--- apps
|--- front-office
|--- front-office-modules.json
|--- front-office-provider.ts
|--- shared
|--- shared-provider.ts
|--- index.tsShared Provider
Let's create a shared provider so we can encapsulate our shared files such as configurations and apps list in one point to keep our src/index.ts cleaner.
Let's create shared/shared-provider.ts file
// empty for now, but let's import it anyway in our src/index.ts fileNow we go to src/index.ts file
import "./shared/shared-provider";
import startApplication from "@mongez/react";
startApplication();Creating our first app
We created our app with two empty files inside it, the app provider and app setup and modules declarations.
Now let's open our front-office-modules.json and add the following code inside it.
{
"path": "/",
"name": "front-office",
"modules": [
{
"entry": ["/"],
"module": "home"
}
]
}Everything now is perfect, now let's create apps-list.ts file in src/shared/apps-list.ts to import our app.
// src/shared/apps-list.ts
import { setApps } from "@mongez/react-router";
// don't forget to add the module path alias as mentioned in MRR
import frontOfficeApp from "apps/front-office/front-office-modules.json";
setApps([frontOfficeApp]);Let's head back to our shared-provider.ts file and import our apps-list.
// src/shared-provider.ts
import "./apps-list";Now let's create our home module.
|--- src
|--- apps
|--- front-office
|--- home
|--- components
|--- HomePage.tsx
|--- routes.ts
|--- provider.ts
|--- front-office-modules.json
|--- front-office-provider.ts
|--- shared
|--- index.tsWe created a new home directory inside front-office directory with a components directory which has HomePage.tsx for our home page component, also created our entry provider file and the routes file.
Let's import our routes.ts file in the home provider.
// src/apps/front-office/home/provider.ts
import "./routes";Now in our routes.ts file let's add our home page route.
// src/apps/front-office/home/routes.ts
import router from "@mongez/react-router";
import HomePage from "./components/HomePage";
router.add("/", HomePage);Creating our base configurations
Navigate to src/shared directory and create a config.ts file.
// src/shared/config.ts
import { ApplicationConfigurations, setAppConfigurations } from "@mongez/react";
const configurationsList: ApplicationConfigurations = {};
setAppConfigurations(configurationsList);Just an empty object for our configurations file, but what configurations can be declared in that objecT?
Well, the following packages's configurations are configured from one place using setAppConfigurations
The entire app configurations as follows:
import { LocalizationConfigurations } from "@mongez/localization";
export type LocaleCode = {
/**
* Locale Code direction
*/
direction: "ltr" | "rtl";
};
export type LocaleCodes = {
/**
* The object key is the locale code itself
*/
[localeCode: string]: LocaleCode;
};
export type ApplicationConfigurations = {
/**
* Localization Configurations
*/
localization?: LocalizationConfigurations & {
/**
* Locale Codes
*/
locales: LocaleCodes;
};
/**
* Any other generic configurations
*/
[configKey: string]: any;
};Get current app info
To get a piece of information of the app, use current utility.
import { current } from "@mongez/react";
console.log(current("direction")); // ltr | rtl
console.log(current("appName"));
console.log(current("route"));
console.log(current("localeCode"));
console.log(current("locale"));Change Log
- 3.0.0 (06 Mar 2023)
- Removed unnecessary packages.
- Updated dependencies.
- 2.0.5 (22 Oct 2022)
- Enhanced Docs
- Removed all hooks as it has been moved to Mongez React Hooks.
- 1.0.20 (25 Mar 2022)
- Fixed
useEventcallback.
- Fixed
- 1.0.18 (22 Jan 2022)
- Added
useEventhook.
- Added
- 1.0.13 (11 Jan 2022)
- Added Current Utility
- Changed
localeskey in configurations to be set inlocalization.locales
1 year ago
1 year ago
1 year ago
1 year ago
1 year ago
1 year ago
1 year ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago