2016-08-31 07:15:12 -07:00
|
|
|
import api from '../api'
|
|
|
|
|
|
|
|
export const COMPOSE_CHANGE = 'COMPOSE_CHANGE';
|
|
|
|
export const COMPOSE_SUBMIT = 'COMPOSE_SUBMIT';
|
|
|
|
export const COMPOSE_SUBMIT_REQUEST = 'COMPOSE_SUBMIT_REQUEST';
|
|
|
|
export const COMPOSE_SUBMIT_SUCCESS = 'COMPOSE_SUBMIT_SUCCESS';
|
|
|
|
export const COMPOSE_SUBMIT_FAIL = 'COMPOSE_SUBMIT_FAIL';
|
2016-08-31 13:58:10 -07:00
|
|
|
export const COMPOSE_REPLY = 'COMPOSE_REPLY';
|
|
|
|
export const COMPOSE_REPLY_CANCEL = 'COMPOSE_REPLY_CANCEL';
|
2016-08-31 07:15:12 -07:00
|
|
|
|
|
|
|
export function changeCompose(text) {
|
|
|
|
return {
|
|
|
|
type: COMPOSE_CHANGE,
|
|
|
|
text: text
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
2016-09-05 07:56:43 -07:00
|
|
|
export function replyCompose(status) {
|
2016-08-31 13:58:10 -07:00
|
|
|
return {
|
|
|
|
type: COMPOSE_REPLY,
|
2016-09-05 07:56:43 -07:00
|
|
|
status: status
|
2016-08-31 13:58:10 -07:00
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
export function cancelReplyCompose() {
|
|
|
|
return {
|
|
|
|
type: COMPOSE_REPLY_CANCEL
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
2016-08-31 07:15:12 -07:00
|
|
|
export function submitCompose() {
|
|
|
|
return function (dispatch, getState) {
|
|
|
|
dispatch(submitComposeRequest());
|
|
|
|
|
|
|
|
api(getState).post('/api/statuses', {
|
|
|
|
status: getState().getIn(['compose', 'text'], ''),
|
2016-09-05 13:43:34 -07:00
|
|
|
in_reply_to_id: getState().getIn(['compose', 'in_reply_to'], null)
|
2016-08-31 07:15:12 -07:00
|
|
|
}).then(function (response) {
|
|
|
|
dispatch(submitComposeSuccess(response.data));
|
|
|
|
}).catch(function (error) {
|
|
|
|
dispatch(submitComposeFail(error));
|
|
|
|
});
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
export function submitComposeRequest() {
|
|
|
|
return {
|
|
|
|
type: COMPOSE_SUBMIT_REQUEST
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
2016-09-01 04:21:48 -07:00
|
|
|
export function submitComposeSuccess(status) {
|
2016-08-31 07:15:12 -07:00
|
|
|
return {
|
2016-09-01 04:21:48 -07:00
|
|
|
type: COMPOSE_SUBMIT_SUCCESS,
|
|
|
|
status: status
|
2016-08-31 07:15:12 -07:00
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
export function submitComposeFail(error) {
|
|
|
|
return {
|
|
|
|
type: COMPOSE_SUBMIT_FAIL,
|
|
|
|
error: error
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|