This addon makes the prop-typeslibrary available for React style props validation in your Ember application. Theaddon itself is very simple, it includes:
prop-types
library (prod optimized import weight ofonly 0.12KB gzipped).Component
reopen in dev builds to call checkPropTypes
, see thecomponent-prop-typesinitializer (Component reopen stripped for production builds).Props validations and the validators themselves are all provided by theprop-types library.
ember install ember-cli-prop-types
Import PropTypes
into your component JS files and define a propTypes
property toperform validation on passed props:
// your-component.js
import Component from 'ember-component';
import PropTypes from 'prop-types';
export default Component.extend({
// Define prop types for your passed properties here
propTypes: {
title: PropTypes.string.isRequired,
pages: PropTypes.number,
isLatest: PropTypes.bool
}
});
The prop-types
library will validate that any props passed into your componentmatch the type specified in propTypes
. See theprop-types Documentation for details ondefining propTypes
for your components.
You can validate the majority of Ember classes or other Ember-specific conceptsvia the instanceOf
type checker. We have added specific support for Ember.Array
and will continue to add support for Ember classes that cannot be validated usingthe library as-is.
import Component from 'ember-component';
import EmberObject from 'ember-object';
import DS from 'ember-data';
import PropTypes from 'prop-types';
const { PromiseArray } = DS;
export default Component.extend({
propTypes: {
post: PropTypes.instanceOf(EmberObject),
relatedPosts: PropTypes.instanceOf(PromiseArray),
authors: PropTypes.emberArray.isRequired,
comments: PropTypes.emberArray,
leaveCommentClosureAction: PropTypes.func
}
});
PropTypes.emberArray
Destructuring imports is also supported:
import Component from 'ember-component';
import { string, number, bool, func } from 'prop-types';
export default Component.extend({
propTypes: {
title: string.isRequired,
pages: number,
isLatest: bool,
someAction: func
}
});
This addon adds the ability to set a default value for passed props through a getDefaultProps
method. This method should return an object with the default props values:
import Component from 'ember-component';
import { string, number, bool } from 'prop-types';
export default Component.extend({
propTypes: {
title: string.isRequired,
pages: number,
isLatest: bool
},
getDefaultProps() {
return {
title: 'Ambitious Props',
pages: 1,
isLatest: false
};
}
});
During component initialization, if a prop with a configured default is undefined
,it will be set to the returned default value. This can be especially helpful whenworking with dynamic values or the component helper.
The getDefaultProps
method is run during production builds.
This addon calls props validation and default value assignments in the didReceiveAttrs
and init
lifecycle hooks. Per the Ember.js docs, if you need to define additional behavior inthese hooks you must call this._super(...arguments)
:
export default Component.extend({
propTypes: {
someString: PropTypes.string
},
getDefaultProps() {
return {
someString: 'Default Value'
}
},
init() {
this._super(...arguments);
// your component code
},
didReceiveAttrs() {
this._super(...arguments);
// your component code
}
})
Although props validation is only run in development builds, this addon must beincluded for production builds as well. During production builds the prop-types
library is not imported. Instead a set of shims is imported for the props validatorsso that the import
statements do not throw errors. Prod weight for the addon is0.29 KB (0.12 KB gzipped).
The call to PropTypes.checkPropTypes
is automatically stripped in production buildsas well using UglifyJS's compress
configurations. If you would like to disable thisadditional stripping you can configure the addon to skip it in yourember-cli-build.js
configs (Note that even if you disable the code stripping propsvalidations will still only be run in dev builds).
The getDefaultProps
method is run during component init
in production builds. Ifyou would prefer not to enable this method, you can configure the addon to strip itout:
// ember-cli-build.js
module.exports = function(defaults) {
let app = new EmberApp(defaults, {
emberCliPropTypes: {
compress: false, // Setting to false will disable code stripping
getDefaultProps: false // Setting to false will strip `getDefaultProps` feature
}
});
return app.toTree();
};
If you'd like to contribute, please read our contributionguidelines and then get cracking!
Ember CLI 是一个 Ember.js 命令行工具,提供了由 broccoli 提供的快速的资源管道和项目结构。 Ember CLI 基于 Ember App Kit Project 目前已经废弃。 Assets Compilation Ember CLI asset compilation is based on broccoli. Broccoli has support for: Ha
This repository is no longer maintained. As a replacement check out: https://github.com/sir-dunxalot/ember-tooltips Ember CLI Tooltipster An Ember CLI add-on that wraps Tooltipster into an ember compo
ember-cli-updater This ember-cli addon helps you update your ember-cli application or addon. The idea of this addon is to automate some parts of the upgrade process so it's simplified. Not every chang
Ember-cli-yadda This Ember CLI addon facilitates writing BDD tests in the Gherkin language and executing them against your Ember app. @mschinis (Micheal Schinis) Did a great talk at @emberlondon BDD a
Ember-cli-simditor Ember component wrapper for simditor. Changes 0.0.7 Different from previous version, you must wrap content in object. See issue 6 for why. Getting Started Installation In your ember
ember-cli-chai Chai assertions for Ember.js. Deprecated This package is deprecated. Please use ember-auto-import to use chai and chai plugins directly. If you'd like to use chai, or were previously us