This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function(msg){ | |
dispatcher.dispatch('CREATE_MSG', msg); | |
api.saveMsg(msg).then(msg => { | |
dispatcher.dispatch('CREATE_MSG_COMPLETE', msg) //id is available here | |
}) | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var loginStore = Store({ | |
init(dispatcher){ | |
var self = this; | |
dispatcher.register(function(action, payload){ | |
if( action === 'LOGIN') | |
self.login() | |
}) | |
}, |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function isAllOf(validators){ | |
return function(props, propName, componentName) { | |
var err; | |
validators.every( validator => { | |
err = validator(props, propName, componentName) | |
return !err | |
}) | |
return err |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function mixin(){ | |
var privatevar = 5; | |
this.on('componentWillMount', () =>{ | |
//stuff | |
}) | |
this.mixinMethod = () => { | |
return privatevar; | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// there are a few methods that you need to implement/override to create a new type | |
// The main one is `_coerce`, which passing in the raw value and returns the type back. | |
// _coerce should not throw errors, and should return the default invalid object for a type if it exists (NaN, etc) | |
//here is the date `_coerce()` (I need to change it to return an InvalidDate instead of null) | |
_coerce(value) { | |
if(value == null ) return value | |
if(isDate(value) ) return new Date(value) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// require() some stuff from npm (like you were using browserify) | |
// and then hit Run Code to run it on the right | |
var yup = require('yup') | |
var assert = require('assert') | |
var schema = yup.object({ | |
name: yup.string(), | |
id: yup.string() | |
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
let FilterInput = React.createClass({ | |
render: function() { | |
return ( | |
<input className={this.props.className} placeholder=={this.props.placeholder} /> | |
// or more terse | |
// <input {...this.props} /> | |
); | |
}); | |
<div className="row header"> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function chain(fnA, fnB){ | |
return function(){ | |
fnA && fnA.apply(this, arguments) | |
fnB && fnB.apply(this, arguments) | |
} | |
} | |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class MyComboBox extends React.Component { | |
constructor(props, context){ | |
super(props, context) | |
this.state = { value: props.value } | |
} | |
componentWillReceiveProps(props){ | |
this.setState({ value: props.value }) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var DisabledList = React.createClass({ | |
// proptypes tell the parent widget what to pass into it | |
// the DropdownList will inspect propTypes and _.pick() those keys to pass in | |
propTypes: { | |
disabledItems: React.PropTypes.array, | |
...List.type.propTypes, | |
}, | |
componentWillMount(){ |