2016-09-22 11:58:35 -07:00
|
|
|
import api from '../api'
|
|
|
|
import axios from 'axios';
|
2016-09-12 17:24:40 -07:00
|
|
|
|
2016-09-15 15:21:51 -07:00
|
|
|
export const ACCOUNT_SET_SELF = 'ACCOUNT_SET_SELF';
|
|
|
|
|
2016-09-12 17:24:40 -07:00
|
|
|
export const ACCOUNT_FETCH_REQUEST = 'ACCOUNT_FETCH_REQUEST';
|
|
|
|
export const ACCOUNT_FETCH_SUCCESS = 'ACCOUNT_FETCH_SUCCESS';
|
|
|
|
export const ACCOUNT_FETCH_FAIL = 'ACCOUNT_FETCH_FAIL';
|
|
|
|
|
2016-09-15 15:21:51 -07:00
|
|
|
export const ACCOUNT_FOLLOW_REQUEST = 'ACCOUNT_FOLLOW_REQUEST';
|
|
|
|
export const ACCOUNT_FOLLOW_SUCCESS = 'ACCOUNT_FOLLOW_SUCCESS';
|
|
|
|
export const ACCOUNT_FOLLOW_FAIL = 'ACCOUNT_FOLLOW_FAIL';
|
|
|
|
|
|
|
|
export const ACCOUNT_UNFOLLOW_REQUEST = 'ACCOUNT_UNFOLLOW_REQUEST';
|
|
|
|
export const ACCOUNT_UNFOLLOW_SUCCESS = 'ACCOUNT_UNFOLLOW_SUCCESS';
|
|
|
|
export const ACCOUNT_UNFOLLOW_FAIL = 'ACCOUNT_UNFOLLOW_FAIL';
|
|
|
|
|
2016-09-18 09:18:46 -07:00
|
|
|
export const ACCOUNT_TIMELINE_FETCH_REQUEST = 'ACCOUNT_TIMELINE_FETCH_REQUEST';
|
|
|
|
export const ACCOUNT_TIMELINE_FETCH_SUCCESS = 'ACCOUNT_TIMELINE_FETCH_SUCCESS';
|
|
|
|
export const ACCOUNT_TIMELINE_FETCH_FAIL = 'ACCOUNT_TIMELINE_FETCH_FAIL';
|
|
|
|
|
2016-09-22 11:58:35 -07:00
|
|
|
export const ACCOUNT_TIMELINE_EXPAND_REQUEST = 'ACCOUNT_TIMELINE_EXPAND_REQUEST';
|
|
|
|
export const ACCOUNT_TIMELINE_EXPAND_SUCCESS = 'ACCOUNT_TIMELINE_EXPAND_SUCCESS';
|
|
|
|
export const ACCOUNT_TIMELINE_EXPAND_FAIL = 'ACCOUNT_TIMELINE_EXPAND_FAIL';
|
|
|
|
|
2016-09-12 17:24:40 -07:00
|
|
|
export function setAccountSelf(account) {
|
|
|
|
return {
|
|
|
|
type: ACCOUNT_SET_SELF,
|
|
|
|
account: account
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
export function fetchAccount(id) {
|
|
|
|
return (dispatch, getState) => {
|
2016-09-22 11:58:35 -07:00
|
|
|
const boundApi = api(getState);
|
|
|
|
|
2016-09-12 17:24:40 -07:00
|
|
|
dispatch(fetchAccountRequest(id));
|
|
|
|
|
2016-09-22 11:58:35 -07:00
|
|
|
axios.all([boundApi.get(`/api/accounts/${id}`), boundApi.get(`/api/accounts/relationships?id=${id}`)]).then(values => {
|
|
|
|
dispatch(fetchAccountSuccess(values[0].data, values[1].data[0]));
|
2016-09-12 17:24:40 -07:00
|
|
|
}).catch(error => {
|
|
|
|
dispatch(fetchAccountFail(id, error));
|
|
|
|
});
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2016-09-18 09:18:46 -07:00
|
|
|
export function fetchAccountTimeline(id) {
|
|
|
|
return (dispatch, getState) => {
|
|
|
|
dispatch(fetchAccountTimelineRequest(id));
|
|
|
|
|
|
|
|
api(getState).get(`/api/accounts/${id}/statuses`).then(response => {
|
|
|
|
dispatch(fetchAccountTimelineSuccess(id, response.data));
|
|
|
|
}).catch(error => {
|
|
|
|
dispatch(fetchAccountTimelineFail(id, error));
|
|
|
|
});
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2016-09-22 11:58:35 -07:00
|
|
|
export function expandAccountTimeline(id) {
|
|
|
|
return (dispatch, getState) => {
|
|
|
|
const lastId = getState().getIn(['timelines', 'accounts_timelines', id]).last();
|
|
|
|
|
|
|
|
dispatch(expandAccountTimelineRequest(id));
|
|
|
|
|
|
|
|
api(getState).get(`/api/accounts/${id}/statuses?max_id=${lastId}`).then(response => {
|
|
|
|
dispatch(expandAccountTimelineSuccess(id, response.data));
|
|
|
|
}).catch(error => {
|
|
|
|
dispatch(expandAccountTimelineFail(id, error));
|
|
|
|
});
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2016-09-12 17:24:40 -07:00
|
|
|
export function fetchAccountRequest(id) {
|
|
|
|
return {
|
|
|
|
type: ACCOUNT_FETCH_REQUEST,
|
|
|
|
id: id
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2016-09-22 11:58:35 -07:00
|
|
|
export function fetchAccountSuccess(account, relationship) {
|
2016-09-12 17:24:40 -07:00
|
|
|
return {
|
|
|
|
type: ACCOUNT_FETCH_SUCCESS,
|
2016-09-22 11:58:35 -07:00
|
|
|
account: account,
|
|
|
|
relationship: relationship
|
2016-09-12 17:24:40 -07:00
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
export function fetchAccountFail(id, error) {
|
|
|
|
return {
|
|
|
|
type: ACCOUNT_FETCH_FAIL,
|
|
|
|
id: id,
|
|
|
|
error: error
|
|
|
|
};
|
|
|
|
};
|
2016-09-15 15:21:51 -07:00
|
|
|
|
|
|
|
export function followAccount(id) {
|
|
|
|
return (dispatch, getState) => {
|
|
|
|
dispatch(followAccountRequest(id));
|
|
|
|
|
|
|
|
api(getState).post(`/api/accounts/${id}/follow`).then(response => {
|
|
|
|
dispatch(followAccountSuccess(response.data));
|
|
|
|
}).catch(error => {
|
|
|
|
dispatch(followAccountFail(error));
|
|
|
|
});
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
export function unfollowAccount(id) {
|
|
|
|
return (dispatch, getState) => {
|
|
|
|
dispatch(unfollowAccountRequest(id));
|
|
|
|
|
|
|
|
api(getState).post(`/api/accounts/${id}/unfollow`).then(response => {
|
|
|
|
dispatch(unfollowAccountSuccess(response.data));
|
|
|
|
}).catch(error => {
|
|
|
|
dispatch(unfollowAccountFail(error));
|
|
|
|
});
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
export function followAccountRequest(id) {
|
|
|
|
return {
|
|
|
|
type: ACCOUNT_FOLLOW_REQUEST,
|
|
|
|
id: id
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
export function followAccountSuccess(account) {
|
|
|
|
return {
|
|
|
|
type: ACCOUNT_FOLLOW_SUCCESS,
|
|
|
|
account: account
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
export function followAccountFail(error) {
|
|
|
|
return {
|
|
|
|
type: ACCOUNT_FOLLOW_FAIL,
|
|
|
|
error: error
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
export function unfollowAccountRequest(id) {
|
|
|
|
return {
|
|
|
|
type: ACCOUNT_UNFOLLOW_REQUEST,
|
|
|
|
id: id
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
export function unfollowAccountSuccess(account) {
|
|
|
|
return {
|
|
|
|
type: ACCOUNT_UNFOLLOW_SUCCESS,
|
|
|
|
account: account
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
export function unfollowAccountFail(error) {
|
|
|
|
return {
|
|
|
|
type: ACCOUNT_UNFOLLOW_FAIL,
|
|
|
|
error: error
|
|
|
|
};
|
|
|
|
};
|
2016-09-18 09:18:46 -07:00
|
|
|
|
|
|
|
export function fetchAccountTimelineRequest(id) {
|
|
|
|
return {
|
|
|
|
type: ACCOUNT_TIMELINE_FETCH_REQUEST,
|
|
|
|
id: id
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
export function fetchAccountTimelineSuccess(id, statuses) {
|
|
|
|
return {
|
|
|
|
type: ACCOUNT_TIMELINE_FETCH_SUCCESS,
|
|
|
|
id: id,
|
|
|
|
statuses: statuses
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
export function fetchAccountTimelineFail(id, error) {
|
|
|
|
return {
|
|
|
|
type: ACCOUNT_TIMELINE_FETCH_FAIL,
|
|
|
|
id: id,
|
|
|
|
error: error
|
|
|
|
};
|
|
|
|
};
|
2016-09-22 11:58:35 -07:00
|
|
|
|
|
|
|
export function expandAccountTimelineRequest(id) {
|
|
|
|
return {
|
|
|
|
type: ACCOUNT_TIMELINE_EXPAND_REQUEST,
|
|
|
|
id: id
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
export function expandAccountTimelineSuccess(id, statuses) {
|
|
|
|
return {
|
|
|
|
type: ACCOUNT_TIMELINE_EXPAND_SUCCESS,
|
|
|
|
id: id,
|
|
|
|
statuses: statuses
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
export function expandAccountTimelineFail(id, error) {
|
|
|
|
return {
|
|
|
|
type: ACCOUNT_TIMELINE_EXPAND_FAIL,
|
|
|
|
id: id,
|
|
|
|
error: error
|
|
|
|
};
|
|
|
|
};
|