3.2.1 • Published 8 years ago

mithril-proptypes v3.2.1

Weekly downloads
2
License
ISC
Repository
github
Last release
8 years ago

npm npm

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.

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>
    );
  }
}

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 (

  <div className="TodoItem">{this.props.name}</div>
);

} }

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>;
  }
}

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!

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

// ...

checkProps(props)(proptypes);

<h2>Panned Features</h2>
* Turn off checks for production
3.2.1

8 years ago

3.2.0

8 years ago

3.1.1

8 years ago

3.1.0

8 years ago

3.0.0

8 years ago

2.1.0

8 years ago

2.0.0

8 years ago

1.1.1

8 years ago

1.1.0

8 years ago

1.0.3

8 years ago

1.0.2

8 years ago

1.0.1

8 years ago

1.0.0

8 years ago