React tool designed to supervise react components. It was created to organise the process of embedding react components into your templates or MVC applications. One library to rule them all.
npm install react-supervisorreact-supervisor is a very simple npm library (<= 4kb) for dealing with react components in templates (standard MVC way). If you ever worked with mid/big enterprise software with multiple technologies you probably know how difficult it is to maintain various technologies in one or multiple projects. You will find it very useful to create new components with React and append them in your website in organised way. Hope it will help you!
>Warning: This tool is not designed for React apps created via create-react-app or common SPA development. However, if you want to embed multiple SPA apps (like microfrontends or so on) your welcome to use it!
``bash`
npm i react-supervisoror
yarn add react-supervisor
javascript
import { ReactSupervisor } from "react-supervisor";// register components
ReactSupervisor.initialize();
// optional
window["ReactSupervisor"] = ReactSupervisor;
ReactSupervisor.info(); // generates stats in console
ReactSupervisor.forceRender(); // will force a DOM scan, it's helpful with dynamically created nodes
``What it does?
* scans the DOM and renders registered components
* takes all data- attributes from container and passes them as props to component
* watches for changes to the DOM and renders new components into selectors that match
* the parent of a correctly rendered component will be marked with the rendered class
* convert, parse all castable data- attributes with specified type.
supported types for castable attributes (string* as a default):
* number - data-cast-number-field-name="123"
* float - data-cast-float-field-name="3.14"
* json - data-cast-number-field-name='{ "first_name": "Joe", "last_name": "Doe" }'
* boolean - data-cast-float-field-name="true"
* string - data-cast-float-field-name="3.14"
What it doesn't do?
* doesn't affect your css styles
* doesn't share state - it means that all components are independentWhat I can do with it?
You can create complex dashboards, modals, or simple form controls (such as async search, drag & drop or date pickers etc). You can still use your favorite CSS frameworks (such as bootstrap), React UI frameworks (eg Fluent UI, Material-UI, etc) or any other React standalone components (eg react-select). More examples will appear in the documentation soon.Castable data attributes table
| attribute | key in props | value |
| :--- | :--- | ---: |
|
data-cast-number-age="3.14" | age | 3 |
| data-cast-float-pi-value="3.14" | piValue | 3.14 |
| data-cast-json-data='{"piValue": 3.14}' | data | { piValue: 3.14 } |
| data-cast-boolean-is-active="true" | isActive| true |
| data-cast-boolean-is-active="0" | isActive| false |
| data-cast-string-index="0001" | index | "0001" |In js/html logic the default type is string, if that works for you then there is no need to use
data-cast-type convention, but its really helpful if you have to pass json objects into components Examples
#### # Register once and use multiple times
`javascript
// ./some/path.js
import { ReactSupervisor } from "react-supervisor";
import Button from '@material-ui/core/Button';ReactSupervisor.registerComponent(".material-ui-button", Button);
ReactSupervisor.initialize();
` `html
`#### # If you need to render a more complicated component you can use custom render
`javascript
// ./path.js
import { ReactSupervisor } from "react-supervisor";
import Button from '@material-ui/core/Button';ReactSupervisor.registerComponentWithCustomRender(".awesome-button", (el, props) => {
// do whatever you want with props or any other logic
ReactDOM.render(, el);
});
` `html
`#### # You can register component directly within file
`javascript
// ./some/path.js
import { ReactSupervisor } from "react-supervisor";
import React, { useState } from "react";const CallMeModalComponent = () => {
const [state, setState] = useState(0);
return (<>Call me>);
};
ReactSupervisor.registerComponent(".call-me-modal", CallMeModalComponent);
// no export needed, but you have to import that file in your entrypoint
` `html
`
#### # Pass props via data attributes
`javascript
// ./path.js
import { ReactSupervisor } from "react-supervisor";
import React, { useState } from "react";
import { TextField } from '@fluentui/react/lib/TextField';ReactSupervisor.registerComponent(".fluent-ui-textarea", TextField);
` `html
`#### # Use castable data attributes to pass any data type you want, e.g. json object
`html
`
This syntax will inject a userDetails object in component's props.
`javascript
const UserDetailsComponent = (props) => {
return (<>${props.userDetails?.first_name}>); // Joe
}
``