Skip to content
Snippets Groups Projects
Commit b78c43df authored by Chif Gergő's avatar Chif Gergő
Browse files

Romove TraineeDetailPage

parent c7b995c7
No related branches found
No related tags found
No related merge requests found
......@@ -10,7 +10,6 @@ import Statistics from './pages/Statistics';
import Groups from './pages/Groups';
import News from './pages/News';
import EventDetail from './pages/EventDetail';
import TraineeDetail from './pages/TraineeDetail';
const Main = () => (
<Switch>
......@@ -23,7 +22,6 @@ const Main = () => (
<Route path='/statistics' component={Statistics} />
<Route path='/groups' component={Groups} />
<Route path='/events/:id' component={EventDetail} />
<Route path='/trainees/:id' component={TraineeDetail} />
<Route component={NotFound} />
</Switch>
);
......
import React, { Component } from 'react';
import {
Container,
Item,
Button,
Comment,
Form,
Header,
Table,
Icon,
Checkbox,
} from 'semantic-ui-react';
import { connect } from 'react-redux';
import moment from 'moment';
import { getEvents, getTraineeById } from '../../actions/statistics';
class TraineeDetail extends Component {
componentWillMount() {
this.props.getTraineeById(this.props.match.params.id);
//this.props.getNotesByTrainee(this.props.match.params.id);
this.props.getEvents();
}
renderTrainee() {
const { full_name, nick } = this.props.selectedTrainee;
return (
<Item>
<Item.Header as='h2'>{full_name}</Item.Header>
<Item.Header as='h3'>{nick}</Item.Header>
</Item>
);
}
render() {
return (
<Container>
<Container textAlign='center'>
{ this.props.selectedTrainee ?
this.renderTrainee()
:
''
}
</Container>
<Container
style={{
padding: '80px',
}}
/>
</Container>
);
}
}
const mapStateToProps = ({ events: { events }, trainees: { selectedTrainee } }) => ( { events, selectedTrainee });
export default connect(mapStateToProps, { getEvents, getTraineeById })(TraineeDetail);
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment