mirror of
https://github.com/ascribe/onion.git
synced 2024-11-15 01:25:17 +01:00
Improved naming
This commit is contained in:
parent
1cb0b54f77
commit
54866cda84
@ -1,18 +0,0 @@
|
||||
import React from 'react';
|
||||
|
||||
/**
|
||||
* This is the component that implements display-specific functionality
|
||||
*/
|
||||
let PieceDetail = React.createClass({
|
||||
propTypes: {
|
||||
title: React.PropTypes.string.isRequired
|
||||
},
|
||||
|
||||
render() {
|
||||
return (
|
||||
<p>Title: {this.props.title}</p>
|
||||
);
|
||||
}
|
||||
});
|
||||
|
||||
export default PieceDetail;
|
@ -1,46 +1,18 @@
|
||||
import React from 'react';
|
||||
|
||||
import PieceActions from '../actions/piece_actions';
|
||||
import PieceStore from '../stores/piece_store';
|
||||
|
||||
import PieceDetail from './ascribe_piece_detail/piece_detail';
|
||||
|
||||
/**
|
||||
* This is the component that implements resource/data specific functionality
|
||||
* This is the component that implements display-specific functionality
|
||||
*/
|
||||
let Piece = React.createClass({
|
||||
propTypes: {
|
||||
title: React.PropTypes.string.isRequired
|
||||
},
|
||||
|
||||
getInitialState() {
|
||||
return PieceStore.getState();
|
||||
},
|
||||
|
||||
onChange(state) {
|
||||
this.setState(state);
|
||||
},
|
||||
|
||||
componentDidMount() {
|
||||
PieceActions.fetchOne(this.props.params.pieceId);
|
||||
PieceStore.listen(this.onChange);
|
||||
},
|
||||
|
||||
componentDidUnmount() {
|
||||
PieceStore.unlisten(this.onChange);
|
||||
},
|
||||
|
||||
render() {
|
||||
|
||||
if('title' in this.state.piece) {
|
||||
return (
|
||||
<PieceDetail title={this.state.piece.title}></PieceDetail>
|
||||
);
|
||||
} else {
|
||||
return (
|
||||
<p>Loading</p>
|
||||
);
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
render() {
|
||||
return (
|
||||
<p>Title: {this.props.title}</p>
|
||||
);
|
||||
}
|
||||
});
|
||||
|
||||
export default Piece;
|
||||
export default Piece;
|
46
js/components/piece_container.js
Normal file
46
js/components/piece_container.js
Normal file
@ -0,0 +1,46 @@
|
||||
import React from 'react';
|
||||
|
||||
import PieceActions from '../actions/piece_actions';
|
||||
import PieceStore from '../stores/piece_store';
|
||||
|
||||
import Piece from './piece';
|
||||
|
||||
/**
|
||||
* This is the component that implements resource/data specific functionality
|
||||
*/
|
||||
let PieceContainer = React.createClass({
|
||||
|
||||
getInitialState() {
|
||||
return PieceStore.getState();
|
||||
},
|
||||
|
||||
onChange(state) {
|
||||
this.setState(state);
|
||||
},
|
||||
|
||||
componentDidMount() {
|
||||
PieceActions.fetchOne(this.props.params.pieceId);
|
||||
PieceStore.listen(this.onChange);
|
||||
},
|
||||
|
||||
componentDidUnmount() {
|
||||
PieceStore.unlisten(this.onChange);
|
||||
},
|
||||
|
||||
render() {
|
||||
|
||||
if('title' in this.state.piece) {
|
||||
return (
|
||||
<Piece title={this.state.piece.title}></Piece>
|
||||
);
|
||||
} else {
|
||||
return (
|
||||
<p>Loading</p>
|
||||
);
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
});
|
||||
|
||||
export default PieceContainer;
|
@ -3,7 +3,7 @@ import Router from 'react-router';
|
||||
|
||||
import AscribeApp from './components/ascribe_app';
|
||||
import PieceList from './components/piece_list';
|
||||
import Piece from './components/piece';
|
||||
import PieceContainer from './components/piece_container';
|
||||
|
||||
let Route = Router.Route;
|
||||
|
||||
@ -13,7 +13,7 @@ let routes = (
|
||||
<Route name="pieces" path="/pieces" handler={PieceList}>
|
||||
|
||||
</Route>
|
||||
<Route name="piece" path="/pieces/:pieceId" handler={Piece}>
|
||||
<Route name="piece" path="/pieces/:pieceId" handler={PieceContainer}>
|
||||
</Route>
|
||||
</Route>
|
||||
);
|
||||
|
Loading…
Reference in New Issue
Block a user