mirror of
https://github.com/KevinMidboe/linguist.git
synced 2025-10-29 09:40:21 +00:00
41 lines
988 B
CoffeeScript
41 lines
988 B
CoffeeScript
###* @cjsx React.DOM ###
|
|
define 'myProject.ReactExampleComponent', [
|
|
'React'
|
|
'myProject.ExampleStore'
|
|
'myProject.ExampleActions'
|
|
'myProject.ReactExampleTable'
|
|
], (React, ExampleStore, ExampleActions, ReactExampleTable ) ->
|
|
|
|
ReactExampleComponent = React.createClass
|
|
mixins: [ListenMixin]
|
|
|
|
getInitialState: ->
|
|
rows: ExampleStore.getRows()
|
|
meta: ExampleStore.getMeta()
|
|
|
|
componentWillMount: ->
|
|
@listenTo ExampleStore
|
|
|
|
componentDidMount: ->
|
|
ExampleActions.getExampleData()
|
|
|
|
onStoreChange: ->
|
|
if this.isMounted()
|
|
@setState
|
|
rows: ExampleStore.getRows()
|
|
meta: ExampleStore.getMeta()
|
|
|
|
componentWillUnmount: ->
|
|
@stopListening ExampleStore
|
|
|
|
render: ->
|
|
<div className="page-wrap">
|
|
<header>
|
|
<strong> {@state.title} </strong>
|
|
<header>
|
|
<ReactExampleTable
|
|
rows={@state.rows},
|
|
meta={@state.meta}
|
|
/>
|
|
</div>
|