As already known React is very powerful framework for development. In JSX Struct we don't need to learn new feature. Developers sometimes should make some dependent component without main render block. We know some how appearencing custom Component on any time and any point. If you want using react js more powerfull should consider using our "react-absolute" solution.
- Using npm
npm install @actbase/react-absolute;
- Using yarn
yarn add @actbase/react-absolute;
- On very first entry point. index.js or app.js
- Make sure wrapping with Absolute
import Absolute from '@actbase/react-absolute';
const App = ()=>{
return (
<Absolute.Provider style={{flex:1}}>
{/* rendered components before. */}
</Absolute.Provider>
)
}
export App;
- Using with render block
import Absolute from '@actbase/react-absolute';
const SomeComponent = ({})=>{
if( condition ) return null;
return (
<Absolute style={{}}>
</Absolute>
)
}
- Using with event function.
<SomeEventProvider someEventHandler={()=>{
// adding absolute on your purpose.
const handler = Absolute.add(
<ToBeAboluteComponentYouHave />
);
// remove.
handler.remove();
}} />
- props of Absolute.Provider
- Methods
- add
- Methods
If you consider make service with react.
Call us