Package Exports
- mithril-proptypes
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (mithril-proptypes) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
mithril-proptypes
Awesome lightweight library for data validation and type checking for Mithril.js inspired by React PropTypes. You can you this library as a standalone dependency, because it doesn't have a binding with Mithril.js, though provides special tools to easy integration with Mitril.
Basic Usage
```js import { PropTypes, checkProps } from 'mithril-proptypes';const propTypes = { id: PropTypes.number.isRequired, name: PropTypes.string, done: PropTypes.boolean, };
const props = { id: 1, name: 'Dmitry Salnikov', done: 'false' };
checkProps(props)(propTypes);
// WARN >> PropTypes warning: Wrong prop type for "done": "string" instead of declared "boolean"
<h2>With ES6 classes</h2>
If you use es6 classes for mithril components, then you can do the check in the constructor for example:
```js
import { PropTypes, checkProps } from 'mithril-proptypes';
const propTypes = {
id: PropTypes.number.isRequired,
name: PropTypes.string,
done: PropTypes.boolean,
};
class TodoItem {
constructor(props) {
checkProps(props)(propTypes);
this.props = props;
}
view() {
return (
<div className="TodoItem">{this.props.name}</div>
);
}
}
MithrilComponent class
To simplify usage of such checks in the every your mithril component you can extend from the MithrilComponent class provided by this library: ```js import { MithrilComponent, PropTypes } from 'mithril-proptypes';const propTypes = { id: PropTypes.number.isRequired, name: PropTypes.string, done: PropTypes.boolean, };
class TodoItem extends MithrilComponent { constructor(props) { super(props, propTypes);
this.props = props;
}
view() { return (
Now this check is doing by MithrilComponent.
<h2>Additional features of MithrilComponent</h2>
MithrilComponent class also adds useful lifecycle method onUnload() to your component.
This method will be called by mithril.js when this component is going to be removed from the DOM, so you can save some data for example.
```js
import { MithrilComponent, PropTypes } from 'mithril-proptypes';
class App extends MithrilComponent {
constructor(props) {
super();
this.props = props;
}
onUnload() {
console.log('Component is going to be removed from the DOM');
}
view() {
return <div className="App"></div>;
}
}
Available Types
PropTypes: * string * number * boolean * function * object * array * objectWith() - complex type * arrayOf() - complex typeComplex Types
objectWith - is a type definition of each property of an object arrayOf - is a type definition of each item of an array (each property of object-item) ```js var props = { someObject: { first: 13, second: 'second', third: true }, someArray: [ { id: 1, gender: 'male', married: false }, { id: '2', gender: 'female', married: true }, { id: 3, gender: 'male', married: false } ], };var propTypes = { someObject: PropTypes.objectWith({ first: PropTypes.number, second: PropTypes.string, third: PropTypes.boolean, }), someArray: PropTypes.arrayOf({ id: PropTypes.number, gender: PropTypes.string, married: PropTypes.boolean, }).isRequired, };
<h2>Required Props</h2>
Is some property is 'required' by the data doesn't contain this property - then check will print error.
To mark some prop as required you can add '.isRequired' to each prop type:
```js
var props = {};
var propTypes = {
someProp: PropTypes.number.isRequired,
};
checkProps(props)(propTypes);
// ERROR >> PropTypes warning: data for the required prop someProp is absent!
Install
At first - download and install Node.js if you need. It contains own package-manager - NPM. Then run npm to install all necessary dependencies
npm install mithril-proptypes --save
Use with Node.js
```js var checkProps = require('mithril-proptypes').checkProps;// ...
checkProps(props)(proptypes);
<h2>Panned Features</h2>
* Turn off checks for production