import ComposeForm from '../components/compose_form';
import { changeCompose, submitCompose, cancelReplyCompose } from '../actions/compose';
+function selectStatus(state) {
+ let statusId = state.getIn(['compose', 'in_reply_to'], null);
+
+ if (statusId === null) {
+ return null;
+ }
+
+ let status = state.getIn(['timelines', 'statuses', statusId]);
+ status = status.set('account', state.getIn(['timelines', 'accounts', status.get('account')]));
+
+ return status;
+};
+
const mapStateToProps = function (state, props) {
return {
text: state.getIn(['compose', 'text']),
is_submitting: state.getIn(['compose', 'is_submitting']),
- in_reply_to: state.getIn(['compose', 'in_reply_to'])
+ in_reply_to: selectStatus(state)
};
};
-import * as constants from '../actions/compose';
-import Immutable from 'immutable';
+import * as constants from '../actions/compose';
+import { TIMELINE_DELETE } from '../actions/timelines';
+import Immutable from 'immutable';
const initialState = Immutable.Map({
text: '',
return state.set('text', action.text);
case constants.COMPOSE_REPLY:
return state.withMutations(map => {
- map.set('in_reply_to', action.payload).set('text', `@${action.payload.getIn(['account', 'acct'])} `);
+ map.set('in_reply_to', action.status.get('id'));
+ map.set('text', `@${action.status.getIn(['account', 'acct'])} `);
});
case constants.COMPOSE_REPLY_CANCEL:
return state.withMutations(map => {
});
case constants.COMPOSE_SUBMIT_FAIL:
return state.set('is_submitting', false);
+ case TIMELINE_DELETE:
+ if (action.id === state.get('in_reply_to')) {
+ return state.set('in_reply_to', null);
+ } else {
+ return state;
+ }
default:
return state;
}