Last active
May 9, 2016 17:25
-
-
Save jurosh/bcb18285b1d95824cd41ae33677835eb to your computer and use it in GitHub Desktop.
Reactjs stateless function & class components
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
// Read more: | |
// https://camjackson.net/post/9-things-every-reactjs-beginner-should-know | |
// https://facebook.github.io/react/docs/component-specs.html | |
// https://medium.com/@joshblack/stateless-components-in-react-0-14-f9798f8b992d#.mwedhclq7 | |
// https://github.com/ghengeveld/react-redux-styleguide | |
// ES6 react class stateless component | |
import React, {PropTypes} from 'react' | |
export default class Link extends React.Component { | |
static propTypes = { | |
active: PropTypes.bool.isRequired, | |
children: PropTypes.node.isRequired, | |
onClick: PropTypes.func.isRequired | |
}; | |
clickAction(event) { | |
event.preventDefault(); | |
this.props.onClick(); | |
} | |
render() { | |
let content; | |
if (this.props.active) { | |
content = <span>{this.props.children}</span> | |
} else { | |
content = ( | |
<a href="#" onClick={this.clickAction.bind(this)}> | |
{this.props.children} | |
</a>); | |
} | |
return content | |
} | |
} | |
// Functional Stateless "component" | |
import React, {PropTypes} from 'react' | |
const Link = ({active, children, onClick}) => { | |
let clickAction = () => { | |
e.preventDefault(); | |
onClick() | |
}; | |
if (active) { | |
return <span>{children}</span> | |
} | |
return ( | |
<a href="#" onClick={e => clickAction(e)}> | |
{children} | |
</a> | |
) | |
}; | |
Link.propTypes = { | |
active: PropTypes.bool.isRequired, | |
children: PropTypes.node.isRequired, | |
onClick: PropTypes.func.isRequired | |
}; | |
export default Link; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment