Veams Blueprint - React Container
With this blueprint you can scaffold a react container component with multiple options:
- Which methods should be added? (
componentWillMount()
,componentDidMount()
,componentWillReceiveProps()
) - Do you want to check your prop types?
- Do you want to add a static loadData() function? (SSR)
Setup
- First of all be sure you have installed
veams-cli
. - After that be sure your project contains a
veams-cli.json
. - Make sure you have updated
veams-cli.json
to fit the needs of your project. - Install the package with
npm i veams-bp-react-container --save-dev
. - Reference the package in
veams-cli.json
by addingcontainer
to theblueprint
object like so:
Usage
Now you can use this blueprint with veams
by executing:
veams add container modules/articles/containers/article
The output in your file system will be:
└── articles└── containers└── article└── article.js
The blueprint content looks like that (depends on your answers):
// Generic libraries;;;// Containers, Components, Store & More;/*** Get slice out of current state by using selector functions.** @param*/{return// isInitialized: getUiInitializedState(state)}/*** @class* @classdesc Container component to render a view and* decorate that with the selected store slice.*/@/*** Internal state of component.*/state =// isInitialized: this.props.isInitialized;/*** Static property check.*/static propTypes =// isInitialized: boolean.isRequired;/*** Load the data by using a separate function.* This method can later be used on server side to get an initial state as well.** @param*/static {return store;}/*** Lifecycle hook before component is mounted.*/{}/*** Lifecycle hook after component is mounted.*/{}/*** Get new props and set a new state* if necessary.** @param*/{}/*** Render component*/{return<div><p>Article is working!</p></div>;};
Have fun!