2015-06-05 11:06:36 +02:00
|
|
|
'use strict';
|
|
|
|
|
2015-05-26 10:52:20 +02:00
|
|
|
import React from 'react';
|
|
|
|
|
2015-06-04 15:38:15 +02:00
|
|
|
import { mergeOptions } from '../utils/general_utils';
|
2015-06-04 15:33:59 +02:00
|
|
|
|
2015-05-26 13:48:46 +02:00
|
|
|
import EditionActions from '../actions/edition_actions';
|
|
|
|
import EditionStore from '../stores/edition_store';
|
2015-05-27 09:34:49 +02:00
|
|
|
import UserActions from '../actions/user_actions';
|
|
|
|
import UserStore from '../stores/user_store';
|
2015-05-26 10:52:20 +02:00
|
|
|
|
2015-05-26 13:48:46 +02:00
|
|
|
import Edition from './edition';
|
2015-05-26 10:52:20 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* This is the component that implements resource/data specific functionality
|
|
|
|
*/
|
2015-05-26 13:48:46 +02:00
|
|
|
let EditionContainer = React.createClass({
|
2015-05-26 10:52:20 +02:00
|
|
|
getInitialState() {
|
2015-06-04 15:38:15 +02:00
|
|
|
return mergeOptions(UserStore.getState(), EditionStore.getState());
|
2015-05-26 10:52:20 +02:00
|
|
|
},
|
|
|
|
|
|
|
|
onChange(state) {
|
|
|
|
this.setState(state);
|
|
|
|
},
|
|
|
|
|
|
|
|
componentDidMount() {
|
2015-05-26 13:48:46 +02:00
|
|
|
EditionStore.listen(this.onChange);
|
2015-05-27 09:34:49 +02:00
|
|
|
UserStore.listen(this.onChange);
|
2015-06-04 13:16:19 +02:00
|
|
|
|
|
|
|
UserActions.fetchCurrentUser();
|
|
|
|
EditionActions.fetchOne(this.props.params.editionId);
|
2015-05-26 10:52:20 +02:00
|
|
|
},
|
2015-06-05 11:06:36 +02:00
|
|
|
|
2015-06-04 13:17:59 +02:00
|
|
|
componentWillUnmount() {
|
2015-05-26 13:48:46 +02:00
|
|
|
EditionStore.unlisten(this.onChange);
|
2015-05-27 09:34:49 +02:00
|
|
|
UserStore.unlisten(this.onChange);
|
2015-05-26 10:52:20 +02:00
|
|
|
},
|
|
|
|
|
2015-06-05 14:22:02 +02:00
|
|
|
deleteEdition() {
|
2015-06-05 16:20:28 +02:00
|
|
|
// Delete Edition from server
|
|
|
|
},
|
2015-06-05 14:22:02 +02:00
|
|
|
|
2015-06-05 16:20:28 +02:00
|
|
|
savePersonalNote(note) {
|
|
|
|
console.log(note);
|
|
|
|
// Save personalNote to server
|
2015-06-05 14:22:02 +02:00
|
|
|
},
|
|
|
|
|
2015-05-26 10:52:20 +02:00
|
|
|
render() {
|
2015-05-26 13:48:46 +02:00
|
|
|
if('title' in this.state.edition) {
|
2015-05-26 10:52:20 +02:00
|
|
|
return (
|
2015-06-05 11:06:36 +02:00
|
|
|
<Edition
|
|
|
|
edition={this.state.edition}
|
2015-06-05 15:17:35 +02:00
|
|
|
currentUser={this.state.currentUser}
|
2015-06-05 16:20:28 +02:00
|
|
|
deleteEdition={this.deleteEdition}
|
|
|
|
savePersonalNote={this.savePersonalNote}/>
|
2015-05-26 10:52:20 +02:00
|
|
|
);
|
|
|
|
} else {
|
|
|
|
return (
|
|
|
|
<p>Loading</p>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
2015-05-26 13:48:46 +02:00
|
|
|
export default EditionContainer;
|