2016-08-31 16:15:12 +02: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 22:58:10 +02:00
|
|
|
export const COMPOSE_REPLY = 'COMPOSE_REPLY';
|
|
|
|
export const COMPOSE_REPLY_CANCEL = 'COMPOSE_REPLY_CANCEL';
|
2016-08-31 16:15:12 +02:00
|
|
|
|
|
|
|
export function changeCompose(text) {
|
|
|
|
return {
|
|
|
|
type: COMPOSE_CHANGE,
|
|
|
|
text: text
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
2016-08-31 22:58:10 +02:00
|
|
|
export function replyCompose(payload) {
|
|
|
|
return {
|
|
|
|
type: COMPOSE_REPLY,
|
|
|
|
payload: payload
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
export function cancelReplyCompose() {
|
|
|
|
return {
|
|
|
|
type: COMPOSE_REPLY_CANCEL
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
2016-08-31 16:15:12 +02:00
|
|
|
export function submitCompose() {
|
|
|
|
return function (dispatch, getState) {
|
|
|
|
dispatch(submitComposeRequest());
|
|
|
|
|
|
|
|
api(getState).post('/api/statuses', {
|
|
|
|
status: getState().getIn(['compose', 'text'], ''),
|
2016-08-31 22:58:10 +02:00
|
|
|
in_reply_to_id: getState().getIn(['compose', 'in_reply_to', 'id'], null)
|
2016-08-31 16:15:12 +02:00
|
|
|
}).then(function (response) {
|
|
|
|
dispatch(submitComposeSuccess(response.data));
|
|
|
|
}).catch(function (error) {
|
|
|
|
dispatch(submitComposeFail(error));
|
|
|
|
});
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
export function submitComposeRequest() {
|
|
|
|
return {
|
|
|
|
type: COMPOSE_SUBMIT_REQUEST
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
export function submitComposeSuccess(response) {
|
|
|
|
return {
|
|
|
|
type: COMPOSE_SUBMIT_SUCCESS
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
export function submitComposeFail(error) {
|
|
|
|
return {
|
|
|
|
type: COMPOSE_SUBMIT_FAIL,
|
|
|
|
error: error
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|