2016-08-31 07:15:12 -07:00
|
|
|
import api from '../api'
|
|
|
|
|
2016-11-03 03:06:55 -07:00
|
|
|
import { updateTimeline } from './timelines';
|
|
|
|
|
2016-09-07 09:17:15 -07:00
|
|
|
export const COMPOSE_CHANGE = 'COMPOSE_CHANGE';
|
|
|
|
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-09-18 09:38:44 -07:00
|
|
|
export const COMPOSE_REPLY = 'COMPOSE_REPLY';
|
2016-09-07 09:17:15 -07:00
|
|
|
export const COMPOSE_REPLY_CANCEL = 'COMPOSE_REPLY_CANCEL';
|
2016-10-24 08:11:02 -07:00
|
|
|
export const COMPOSE_MENTION = 'COMPOSE_MENTION';
|
2016-09-07 09:17:15 -07:00
|
|
|
export const COMPOSE_UPLOAD_REQUEST = 'COMPOSE_UPLOAD_REQUEST';
|
|
|
|
export const COMPOSE_UPLOAD_SUCCESS = 'COMPOSE_UPLOAD_SUCCESS';
|
|
|
|
export const COMPOSE_UPLOAD_FAIL = 'COMPOSE_UPLOAD_FAIL';
|
|
|
|
export const COMPOSE_UPLOAD_PROGRESS = 'COMPOSE_UPLOAD_PROGRESS';
|
|
|
|
export const COMPOSE_UPLOAD_UNDO = 'COMPOSE_UPLOAD_UNDO';
|
2016-08-31 07:15:12 -07:00
|
|
|
|
2016-10-30 10:13:05 -07:00
|
|
|
export const COMPOSE_SUGGESTIONS_CLEAR = 'COMPOSE_SUGGESTIONS_CLEAR';
|
|
|
|
export const COMPOSE_SUGGESTIONS_READY = 'COMPOSE_SUGGESTIONS_READY';
|
2016-11-12 05:33:21 -08:00
|
|
|
export const COMPOSE_SUGGESTION_SELECT = 'COMPOSE_SUGGESTION_SELECT';
|
2016-10-30 10:13:05 -07:00
|
|
|
|
2016-08-31 07:15:12 -07:00
|
|
|
export function changeCompose(text) {
|
|
|
|
return {
|
|
|
|
type: COMPOSE_CHANGE,
|
|
|
|
text: text
|
|
|
|
};
|
2016-09-12 10:20:55 -07:00
|
|
|
};
|
2016-08-31 07:15:12 -07:00
|
|
|
|
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
|
|
|
};
|
2016-09-12 10:20:55 -07:00
|
|
|
};
|
2016-08-31 13:58:10 -07:00
|
|
|
|
|
|
|
export function cancelReplyCompose() {
|
|
|
|
return {
|
|
|
|
type: COMPOSE_REPLY_CANCEL
|
|
|
|
};
|
2016-09-12 10:20:55 -07:00
|
|
|
};
|
2016-08-31 13:58:10 -07:00
|
|
|
|
2016-10-24 08:11:02 -07:00
|
|
|
export function mentionCompose(account) {
|
|
|
|
return {
|
|
|
|
type: COMPOSE_MENTION,
|
|
|
|
account: account
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2016-08-31 07:15:12 -07:00
|
|
|
export function submitCompose() {
|
|
|
|
return function (dispatch, getState) {
|
|
|
|
dispatch(submitComposeRequest());
|
|
|
|
|
2016-09-27 07:58:23 -07:00
|
|
|
api(getState).post('/api/v1/statuses', {
|
2016-08-31 07:15:12 -07:00
|
|
|
status: getState().getIn(['compose', 'text'], ''),
|
2016-09-07 09:17:15 -07:00
|
|
|
in_reply_to_id: getState().getIn(['compose', 'in_reply_to'], null),
|
|
|
|
media_ids: getState().getIn(['compose', 'media_attachments']).map(item => item.get('id'))
|
2016-08-31 07:15:12 -07:00
|
|
|
}).then(function (response) {
|
|
|
|
dispatch(submitComposeSuccess(response.data));
|
2016-11-03 11:52:09 -07:00
|
|
|
dispatch(updateTimeline('home', response.data));
|
2016-08-31 07:15:12 -07:00
|
|
|
}).catch(function (error) {
|
|
|
|
dispatch(submitComposeFail(error));
|
|
|
|
});
|
|
|
|
};
|
2016-09-12 10:20:55 -07:00
|
|
|
};
|
2016-08-31 07:15:12 -07:00
|
|
|
|
|
|
|
export function submitComposeRequest() {
|
|
|
|
return {
|
|
|
|
type: COMPOSE_SUBMIT_REQUEST
|
|
|
|
};
|
2016-09-12 10:20:55 -07:00
|
|
|
};
|
2016-08-31 07:15:12 -07:00
|
|
|
|
2016-09-01 04:21:48 -07:00
|
|
|
export function submitComposeSuccess(status) {
|
2016-11-03 11:52:09 -07:00
|
|
|
return {
|
|
|
|
type: COMPOSE_SUBMIT_SUCCESS,
|
|
|
|
status: status
|
2016-08-31 07:15:12 -07:00
|
|
|
};
|
2016-09-12 10:20:55 -07:00
|
|
|
};
|
2016-08-31 07:15:12 -07:00
|
|
|
|
|
|
|
export function submitComposeFail(error) {
|
|
|
|
return {
|
|
|
|
type: COMPOSE_SUBMIT_FAIL,
|
|
|
|
error: error
|
|
|
|
};
|
2016-09-12 10:20:55 -07:00
|
|
|
};
|
2016-08-31 07:15:12 -07:00
|
|
|
|
2016-09-07 09:17:15 -07:00
|
|
|
export function uploadCompose(files) {
|
|
|
|
return function (dispatch, getState) {
|
|
|
|
dispatch(uploadComposeRequest());
|
|
|
|
|
|
|
|
let data = new FormData();
|
|
|
|
data.append('file', files[0]);
|
|
|
|
|
2016-09-27 07:58:23 -07:00
|
|
|
api(getState).post('/api/v1/media', data, {
|
2016-09-07 09:17:15 -07:00
|
|
|
onUploadProgress: function (e) {
|
|
|
|
dispatch(uploadComposeProgress(e.loaded, e.total));
|
|
|
|
}
|
|
|
|
}).then(function (response) {
|
|
|
|
dispatch(uploadComposeSuccess(response.data));
|
|
|
|
}).catch(function (error) {
|
|
|
|
dispatch(uploadComposeFail(error));
|
|
|
|
});
|
|
|
|
};
|
2016-09-12 10:20:55 -07:00
|
|
|
};
|
2016-09-07 09:17:15 -07:00
|
|
|
|
|
|
|
export function uploadComposeRequest() {
|
|
|
|
return {
|
|
|
|
type: COMPOSE_UPLOAD_REQUEST
|
|
|
|
};
|
2016-09-12 10:20:55 -07:00
|
|
|
};
|
2016-09-07 09:17:15 -07:00
|
|
|
|
|
|
|
export function uploadComposeProgress(loaded, total) {
|
|
|
|
return {
|
|
|
|
type: COMPOSE_UPLOAD_PROGRESS,
|
|
|
|
loaded: loaded,
|
|
|
|
total: total
|
|
|
|
};
|
2016-09-12 10:20:55 -07:00
|
|
|
};
|
2016-09-07 09:17:15 -07:00
|
|
|
|
|
|
|
export function uploadComposeSuccess(media) {
|
|
|
|
return {
|
|
|
|
type: COMPOSE_UPLOAD_SUCCESS,
|
|
|
|
media: media
|
|
|
|
};
|
2016-09-12 10:20:55 -07:00
|
|
|
};
|
2016-09-07 09:17:15 -07:00
|
|
|
|
|
|
|
export function uploadComposeFail(error) {
|
|
|
|
return {
|
|
|
|
type: COMPOSE_UPLOAD_FAIL,
|
|
|
|
error: error
|
|
|
|
};
|
2016-09-12 10:20:55 -07:00
|
|
|
};
|
2016-09-07 09:17:15 -07:00
|
|
|
|
|
|
|
export function undoUploadCompose(media_id) {
|
|
|
|
return {
|
|
|
|
type: COMPOSE_UPLOAD_UNDO,
|
|
|
|
media_id: media_id
|
|
|
|
};
|
2016-09-12 10:20:55 -07:00
|
|
|
};
|
2016-10-30 10:13:05 -07:00
|
|
|
|
|
|
|
export function clearComposeSuggestions() {
|
|
|
|
return {
|
|
|
|
type: COMPOSE_SUGGESTIONS_CLEAR
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
export function fetchComposeSuggestions(token) {
|
|
|
|
return (dispatch, getState) => {
|
2016-11-12 05:33:21 -08:00
|
|
|
api(getState).get('/api/v1/accounts/search', {
|
|
|
|
params: {
|
|
|
|
q: token,
|
|
|
|
resolve: false
|
|
|
|
}
|
|
|
|
}).then(response => {
|
|
|
|
dispatch(readyComposeSuggestions(token, response.data));
|
|
|
|
});
|
2016-10-30 10:13:05 -07:00
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2016-11-12 05:33:21 -08:00
|
|
|
export function readyComposeSuggestions(token, accounts) {
|
2016-10-30 10:13:05 -07:00
|
|
|
return {
|
|
|
|
type: COMPOSE_SUGGESTIONS_READY,
|
2016-11-12 05:33:21 -08:00
|
|
|
token,
|
2016-10-30 10:13:05 -07:00
|
|
|
accounts
|
|
|
|
};
|
|
|
|
};
|
2016-11-12 05:33:21 -08:00
|
|
|
|
|
|
|
export function selectComposeSuggestion(position, accountId) {
|
|
|
|
return (dispatch, getState) => {
|
|
|
|
const completion = getState().getIn(['accounts', accountId, 'acct']);
|
|
|
|
|
|
|
|
dispatch({
|
|
|
|
type: COMPOSE_SUGGESTION_SELECT,
|
|
|
|
position,
|
|
|
|
completion
|
|
|
|
});
|
|
|
|
};
|
|
|
|
};
|