2020-07-22 04:30:07 +01:00
|
|
|
import {
|
|
|
|
Map as ImmutableMap,
|
|
|
|
List as ImmutableList,
|
|
|
|
} from 'immutable'
|
2019-07-15 14:47:05 +01:00
|
|
|
import api, { getLinks } from '../api';
|
2020-01-29 16:45:17 +00:00
|
|
|
import { me } from '../initial_state';
|
2019-07-15 14:47:05 +01:00
|
|
|
import { importFetchedAccounts } from './importer';
|
|
|
|
import { fetchRelationships } from './accounts';
|
2020-07-25 03:41:05 +01:00
|
|
|
import {
|
|
|
|
GROUP_LIST_SORTING_TYPE_ALPHABETICAL,
|
|
|
|
GROUP_LIST_SORTING_TYPE_MOST_POPULAR,
|
|
|
|
} from '../constants'
|
2019-07-02 08:10:25 +01:00
|
|
|
|
|
|
|
export const GROUP_FETCH_REQUEST = 'GROUP_FETCH_REQUEST';
|
|
|
|
export const GROUP_FETCH_SUCCESS = 'GROUP_FETCH_SUCCESS';
|
|
|
|
export const GROUP_FETCH_FAIL = 'GROUP_FETCH_FAIL';
|
|
|
|
|
|
|
|
export const GROUP_RELATIONSHIPS_FETCH_REQUEST = 'GROUP_RELATIONSHIPS_FETCH_REQUEST';
|
|
|
|
export const GROUP_RELATIONSHIPS_FETCH_SUCCESS = 'GROUP_RELATIONSHIPS_FETCH_SUCCESS';
|
|
|
|
export const GROUP_RELATIONSHIPS_FETCH_FAIL = 'GROUP_RELATIONSHIPS_FETCH_FAIL';
|
|
|
|
|
|
|
|
export const GROUPS_FETCH_REQUEST = 'GROUPS_FETCH_REQUEST';
|
|
|
|
export const GROUPS_FETCH_SUCCESS = 'GROUPS_FETCH_SUCCESS';
|
|
|
|
export const GROUPS_FETCH_FAIL = 'GROUPS_FETCH_FAIL';
|
|
|
|
|
|
|
|
export const GROUP_JOIN_REQUEST = 'GROUP_JOIN_REQUEST';
|
|
|
|
export const GROUP_JOIN_SUCCESS = 'GROUP_JOIN_SUCCESS';
|
|
|
|
export const GROUP_JOIN_FAIL = 'GROUP_JOIN_FAIL';
|
|
|
|
|
|
|
|
export const GROUP_LEAVE_REQUEST = 'GROUP_LEAVE_REQUEST';
|
|
|
|
export const GROUP_LEAVE_SUCCESS = 'GROUP_LEAVE_SUCCESS';
|
|
|
|
export const GROUP_LEAVE_FAIL = 'GROUP_LEAVE_FAIL';
|
|
|
|
|
2019-07-15 14:47:05 +01:00
|
|
|
export const GROUP_MEMBERS_FETCH_REQUEST = 'GROUP_MEMBERS_FETCH_REQUEST';
|
|
|
|
export const GROUP_MEMBERS_FETCH_SUCCESS = 'GROUP_MEMBERS_FETCH_SUCCESS';
|
|
|
|
export const GROUP_MEMBERS_FETCH_FAIL = 'GROUP_MEMBERS_FETCH_FAIL';
|
|
|
|
|
|
|
|
export const GROUP_MEMBERS_EXPAND_REQUEST = 'GROUP_MEMBERS_EXPAND_REQUEST';
|
|
|
|
export const GROUP_MEMBERS_EXPAND_SUCCESS = 'GROUP_MEMBERS_EXPAND_SUCCESS';
|
|
|
|
export const GROUP_MEMBERS_EXPAND_FAIL = 'GROUP_MEMBERS_EXPAND_FAIL';
|
|
|
|
|
2019-07-16 20:57:35 +01:00
|
|
|
export const GROUP_REMOVED_ACCOUNTS_FETCH_REQUEST = 'GROUP_REMOVED_ACCOUNTS_FETCH_REQUEST';
|
|
|
|
export const GROUP_REMOVED_ACCOUNTS_FETCH_SUCCESS = 'GROUP_REMOVED_ACCOUNTS_FETCH_SUCCESS';
|
|
|
|
export const GROUP_REMOVED_ACCOUNTS_FETCH_FAIL = 'GROUP_REMOVED_ACCOUNTS_FETCH_FAIL';
|
|
|
|
|
|
|
|
export const GROUP_REMOVED_ACCOUNTS_EXPAND_REQUEST = 'GROUP_REMOVED_ACCOUNTS_EXPAND_REQUEST';
|
|
|
|
export const GROUP_REMOVED_ACCOUNTS_EXPAND_SUCCESS = 'GROUP_REMOVED_ACCOUNTS_EXPAND_SUCCESS';
|
|
|
|
export const GROUP_REMOVED_ACCOUNTS_EXPAND_FAIL = 'GROUP_REMOVED_ACCOUNTS_EXPAND_FAIL';
|
|
|
|
|
2019-07-16 21:18:23 +01:00
|
|
|
export const GROUP_REMOVED_ACCOUNTS_REMOVE_REQUEST = 'GROUP_REMOVED_ACCOUNTS_REMOVE_REQUEST';
|
|
|
|
export const GROUP_REMOVED_ACCOUNTS_REMOVE_SUCCESS = 'GROUP_REMOVED_ACCOUNTS_REMOVE_SUCCESS';
|
|
|
|
export const GROUP_REMOVED_ACCOUNTS_REMOVE_FAIL = 'GROUP_REMOVED_ACCOUNTS_REMOVE_FAIL';
|
|
|
|
|
2019-07-16 23:25:23 +01:00
|
|
|
export const GROUP_REMOVED_ACCOUNTS_CREATE_REQUEST = 'GROUP_REMOVED_ACCOUNTS_CREATE_REQUEST';
|
|
|
|
export const GROUP_REMOVED_ACCOUNTS_CREATE_SUCCESS = 'GROUP_REMOVED_ACCOUNTS_CREATE_SUCCESS';
|
|
|
|
export const GROUP_REMOVED_ACCOUNTS_CREATE_FAIL = 'GROUP_REMOVED_ACCOUNTS_CREATE_FAIL';
|
|
|
|
|
2020-09-10 23:07:00 +01:00
|
|
|
export const GROUP_JOIN_REQUESTS_FETCH_REQUEST = 'GROUP_JOIN_REQUESTS_FETCH_REQUEST'
|
|
|
|
export const GROUP_JOIN_REQUESTS_FETCH_SUCCESS = 'GROUP_JOIN_REQUESTS_FETCH_SUCCESS'
|
|
|
|
export const GROUP_JOIN_REQUESTS_FETCH_FAIL = 'GROUP_JOIN_REQUESTS_FETCH_FAIL'
|
|
|
|
|
|
|
|
export const GROUP_JOIN_REQUESTS_EXPAND_REQUEST = 'GROUP_JOIN_REQUESTS_EXPAND_REQUEST'
|
|
|
|
export const GROUP_JOIN_REQUESTS_EXPAND_SUCCESS = 'GROUP_JOIN_REQUESTS_EXPAND_SUCCESS'
|
|
|
|
export const GROUP_JOIN_REQUESTS_EXPAND_FAIL = 'GROUP_JOIN_REQUESTS_EXPAND_FAIL'
|
|
|
|
|
|
|
|
export const GROUP_JOIN_REQUESTS_APPROVE_SUCCESS = 'GROUP_JOIN_REQUESTS_APPROVE_SUCCESS'
|
|
|
|
export const GROUP_JOIN_REQUESTS_APPROVE_FAIL = 'GROUP_JOIN_REQUESTS_APPROVE_FAIL'
|
|
|
|
|
|
|
|
export const GROUP_JOIN_REQUESTS_REJECT_SUCCESS = 'GROUP_JOIN_REQUESTS_REJECT_SUCCESS'
|
|
|
|
export const GROUP_JOIN_REQUESTS_REJECT_FAIL = 'GROUP_JOIN_REQUESTS_REJECT_FAIL'
|
|
|
|
|
2019-07-16 23:42:26 +01:00
|
|
|
export const GROUP_REMOVE_STATUS_REQUEST = 'GROUP_REMOVE_STATUS_REQUEST';
|
|
|
|
export const GROUP_REMOVE_STATUS_SUCCESS = 'GROUP_REMOVE_STATUS_SUCCESS';
|
|
|
|
export const GROUP_REMOVE_STATUS_FAIL = 'GROUP_REMOVE_STATUS_FAIL';
|
|
|
|
|
2019-08-08 12:40:44 +01:00
|
|
|
export const GROUP_UPDATE_ROLE_REQUEST = 'GROUP_UPDATE_ROLE_REQUEST';
|
|
|
|
export const GROUP_UPDATE_ROLE_SUCCESS = 'GROUP_UPDATE_ROLE_SUCCESS';
|
|
|
|
export const GROUP_UPDATE_ROLE_FAIL = 'GROUP_UPDATE_ROLE_FAIL';
|
|
|
|
|
2020-09-10 21:07:01 +01:00
|
|
|
export const GROUP_PIN_STATUS_REQUEST = 'GROUP_PIN_STATUS_REQUEST'
|
|
|
|
export const GROUP_PIN_STATUS_SUCCESS = 'GROUP_PIN_STATUS_SUCCESS'
|
|
|
|
export const GROUP_PIN_STATUS_FAIL = 'GROUP_PIN_STATUS_FAIL'
|
|
|
|
|
|
|
|
export const GROUP_UNPIN_STATUS_REQUEST = 'GROUP_UNPIN_STATUS_REQUEST'
|
|
|
|
export const GROUP_UNPIN_STATUS_SUCCESS = 'GROUP_UNPIN_STATUS_SUCCESS'
|
2020-09-11 23:19:21 +01:00
|
|
|
export const GROUP_UNPIN_STATUS_FAIL = 'GROUP_UNPIN_STATUS_FAIL'
|
2020-09-10 21:07:01 +01:00
|
|
|
|
2020-08-06 04:59:12 +01:00
|
|
|
export const GROUP_TIMELINE_SORT = 'GROUP_TIMELINE_SORT'
|
|
|
|
export const GROUP_TIMELINE_TOP_SORT = 'GROUP_TIMELINE_TOP_SORT'
|
|
|
|
|
2020-07-22 04:30:07 +01:00
|
|
|
export const GROUP_SORT = 'GROUP_SORT'
|
|
|
|
|
|
|
|
export const importGroup = (group) => (dispatch) => {
|
|
|
|
dispatch(fetchGroupSuccess(group))
|
|
|
|
}
|
2019-07-02 08:10:25 +01:00
|
|
|
|
2020-08-06 04:59:12 +01:00
|
|
|
export const fetchGroup = (id) => (dispatch, getState) => {
|
2019-07-02 08:10:25 +01:00
|
|
|
dispatch(fetchGroupRelationships([id]));
|
|
|
|
|
|
|
|
if (getState().getIn(['groups', id])) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
dispatch(fetchGroupRequest(id));
|
|
|
|
|
|
|
|
api(getState).get(`/api/v1/groups/${id}`)
|
|
|
|
.then(({ data }) => dispatch(fetchGroupSuccess(data)))
|
|
|
|
.catch(err => dispatch(fetchGroupFail(id, err)));
|
|
|
|
};
|
|
|
|
|
|
|
|
export const fetchGroupRequest = id => ({
|
|
|
|
type: GROUP_FETCH_REQUEST,
|
|
|
|
id,
|
|
|
|
});
|
|
|
|
|
|
|
|
export const fetchGroupSuccess = group => ({
|
|
|
|
type: GROUP_FETCH_SUCCESS,
|
|
|
|
group,
|
|
|
|
});
|
|
|
|
|
|
|
|
export const fetchGroupFail = (id, error) => ({
|
|
|
|
type: GROUP_FETCH_FAIL,
|
|
|
|
id,
|
|
|
|
error,
|
|
|
|
});
|
|
|
|
|
|
|
|
export function fetchGroupRelationships(groupIds) {
|
|
|
|
return (dispatch, getState) => {
|
|
|
|
if (!me) return;
|
|
|
|
|
|
|
|
const loadedRelationships = getState().get('group_relationships');
|
|
|
|
const newGroupIds = groupIds.filter(id => loadedRelationships.get(id, null) === null);
|
|
|
|
|
|
|
|
if (newGroupIds.length === 0) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
dispatch(fetchGroupRelationshipsRequest(newGroupIds));
|
|
|
|
|
|
|
|
api(getState).get(`/api/v1/groups/${newGroupIds[0]}/relationships?${newGroupIds.map(id => `id[]=${id}`).join('&')}`).then(response => {
|
|
|
|
dispatch(fetchGroupRelationshipsSuccess(response.data));
|
|
|
|
}).catch(error => {
|
|
|
|
dispatch(fetchGroupRelationshipsFail(error));
|
|
|
|
});
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
export function fetchGroupRelationshipsRequest(ids) {
|
|
|
|
return {
|
|
|
|
type: GROUP_RELATIONSHIPS_FETCH_REQUEST,
|
|
|
|
ids,
|
|
|
|
skipLoading: true,
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
export function fetchGroupRelationshipsSuccess(relationships) {
|
|
|
|
return {
|
|
|
|
type: GROUP_RELATIONSHIPS_FETCH_SUCCESS,
|
|
|
|
relationships,
|
|
|
|
skipLoading: true,
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
export function fetchGroupRelationshipsFail(error) {
|
|
|
|
return {
|
|
|
|
type: GROUP_RELATIONSHIPS_FETCH_FAIL,
|
|
|
|
error,
|
|
|
|
skipLoading: true,
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2019-07-15 14:47:05 +01:00
|
|
|
export const fetchGroups = (tab) => (dispatch, getState) => {
|
2020-07-22 05:00:11 +01:00
|
|
|
if (!me && tab !== 'featured') return
|
2020-06-04 23:48:24 +01:00
|
|
|
|
|
|
|
// Don't refetch or fetch when loading
|
2020-06-04 23:52:26 +01:00
|
|
|
const isLoading = getState().getIn(['group_lists', tab, 'isLoading'])
|
|
|
|
const isFetched = getState().getIn(['group_lists', tab, 'isFetched'])
|
2020-06-04 23:48:24 +01:00
|
|
|
|
|
|
|
if (isLoading || isFetched) return
|
2019-07-02 08:10:25 +01:00
|
|
|
|
2020-06-04 23:48:24 +01:00
|
|
|
dispatch(fetchGroupsRequest(tab))
|
2019-07-02 08:10:25 +01:00
|
|
|
|
2019-07-15 14:47:05 +01:00
|
|
|
api(getState).get('/api/v1/groups?tab=' + tab)
|
|
|
|
.then(({ data }) => {
|
2020-06-04 23:48:24 +01:00
|
|
|
dispatch(fetchGroupsSuccess(data, tab))
|
|
|
|
dispatch(fetchGroupRelationships(data.map(item => item.id)))
|
2019-07-15 14:47:05 +01:00
|
|
|
})
|
2020-06-04 23:48:24 +01:00
|
|
|
.catch((err) => dispatch(fetchGroupsFail(err, tab)))
|
|
|
|
}
|
2019-07-02 08:10:25 +01:00
|
|
|
|
2020-06-04 23:48:24 +01:00
|
|
|
export const fetchGroupsRequest = (tab) => ({
|
2019-07-02 08:10:25 +01:00
|
|
|
type: GROUPS_FETCH_REQUEST,
|
2020-06-04 23:48:24 +01:00
|
|
|
tab,
|
2019-07-02 08:10:25 +01:00
|
|
|
});
|
|
|
|
|
2019-07-15 14:47:05 +01:00
|
|
|
export const fetchGroupsSuccess = (groups, tab) => ({
|
2019-07-02 08:10:25 +01:00
|
|
|
type: GROUPS_FETCH_SUCCESS,
|
|
|
|
groups,
|
2019-07-15 14:47:05 +01:00
|
|
|
tab,
|
2019-07-02 08:10:25 +01:00
|
|
|
});
|
|
|
|
|
2020-06-04 23:48:24 +01:00
|
|
|
export const fetchGroupsFail = (error, tab) => ({
|
2019-07-02 08:10:25 +01:00
|
|
|
type: GROUPS_FETCH_FAIL,
|
|
|
|
error,
|
2020-06-04 23:48:24 +01:00
|
|
|
tab,
|
2019-07-02 08:10:25 +01:00
|
|
|
});
|
|
|
|
|
|
|
|
export function joinGroup(id) {
|
|
|
|
return (dispatch, getState) => {
|
|
|
|
if (!me) return;
|
|
|
|
|
|
|
|
dispatch(joinGroupRequest(id));
|
|
|
|
|
|
|
|
api(getState).post(`/api/v1/groups/${id}/accounts`).then(response => {
|
|
|
|
dispatch(joinGroupSuccess(response.data));
|
|
|
|
}).catch(error => {
|
|
|
|
dispatch(joinGroupFail(id, error));
|
|
|
|
});
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
export function leaveGroup(id) {
|
|
|
|
return (dispatch, getState) => {
|
|
|
|
if (!me) return;
|
|
|
|
|
|
|
|
dispatch(leaveGroupRequest(id));
|
|
|
|
|
|
|
|
api(getState).delete(`/api/v1/groups/${id}/accounts`).then(response => {
|
|
|
|
dispatch(leaveGroupSuccess(response.data));
|
|
|
|
}).catch(error => {
|
|
|
|
dispatch(leaveGroupFail(id, error));
|
|
|
|
});
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
export function joinGroupRequest(id) {
|
|
|
|
return {
|
|
|
|
type: GROUP_JOIN_REQUEST,
|
|
|
|
id,
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
export function joinGroupSuccess(relationship) {
|
|
|
|
return {
|
|
|
|
type: GROUP_JOIN_SUCCESS,
|
|
|
|
relationship
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
export function joinGroupFail(error) {
|
|
|
|
return {
|
|
|
|
type: GROUP_JOIN_FAIL,
|
|
|
|
error,
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
export function leaveGroupRequest(id) {
|
|
|
|
return {
|
|
|
|
type: GROUP_LEAVE_REQUEST,
|
|
|
|
id,
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
export function leaveGroupSuccess(relationship) {
|
|
|
|
return {
|
|
|
|
type: GROUP_LEAVE_SUCCESS,
|
|
|
|
relationship,
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
export function leaveGroupFail(error) {
|
|
|
|
return {
|
|
|
|
type: GROUP_LEAVE_FAIL,
|
|
|
|
error,
|
|
|
|
};
|
|
|
|
};
|
2019-07-15 14:47:05 +01:00
|
|
|
|
|
|
|
export function fetchMembers(id) {
|
|
|
|
return (dispatch, getState) => {
|
|
|
|
if (!me) return;
|
|
|
|
|
|
|
|
dispatch(fetchMembersRequest(id));
|
|
|
|
|
|
|
|
api(getState).get(`/api/v1/groups/${id}/accounts`).then(response => {
|
|
|
|
const next = getLinks(response).refs.find(link => link.rel === 'next');
|
|
|
|
|
|
|
|
dispatch(importFetchedAccounts(response.data));
|
|
|
|
dispatch(fetchMembersSuccess(id, response.data, next ? next.uri : null));
|
|
|
|
dispatch(fetchRelationships(response.data.map(item => item.id)));
|
|
|
|
}).catch(error => {
|
|
|
|
dispatch(fetchMembersFail(id, error));
|
|
|
|
});
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
export function fetchMembersRequest(id) {
|
|
|
|
return {
|
|
|
|
type: GROUP_MEMBERS_FETCH_REQUEST,
|
|
|
|
id,
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
export function fetchMembersSuccess(id, accounts, next) {
|
|
|
|
return {
|
|
|
|
type: GROUP_MEMBERS_FETCH_SUCCESS,
|
|
|
|
id,
|
|
|
|
accounts,
|
|
|
|
next,
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
export function fetchMembersFail(id, error) {
|
|
|
|
return {
|
|
|
|
type: GROUP_MEMBERS_FETCH_FAIL,
|
|
|
|
id,
|
|
|
|
error,
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
export function expandMembers(id) {
|
|
|
|
return (dispatch, getState) => {
|
|
|
|
if (!me) return;
|
|
|
|
|
2020-06-09 21:47:12 +01:00
|
|
|
const url = getState().getIn(['user_lists', 'groups', id, 'next'])
|
|
|
|
const isLoading = getState().getIn(['user_lists', 'groups', id, 'isLoading'])
|
2019-07-15 14:47:05 +01:00
|
|
|
|
2020-06-09 21:47:12 +01:00
|
|
|
if (url === null || isLoading) return
|
2019-07-15 14:47:05 +01:00
|
|
|
|
|
|
|
dispatch(expandMembersRequest(id));
|
|
|
|
|
|
|
|
api(getState).get(url).then(response => {
|
|
|
|
const next = getLinks(response).refs.find(link => link.rel === 'next');
|
|
|
|
|
|
|
|
dispatch(importFetchedAccounts(response.data));
|
|
|
|
dispatch(expandMembersSuccess(id, response.data, next ? next.uri : null));
|
|
|
|
dispatch(fetchRelationships(response.data.map(item => item.id)));
|
|
|
|
}).catch(error => {
|
|
|
|
dispatch(expandMembersFail(id, error));
|
|
|
|
});
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
export function expandMembersRequest(id) {
|
|
|
|
return {
|
|
|
|
type: GROUP_MEMBERS_EXPAND_REQUEST,
|
|
|
|
id,
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
export function expandMembersSuccess(id, accounts, next) {
|
|
|
|
return {
|
|
|
|
type: GROUP_MEMBERS_EXPAND_SUCCESS,
|
|
|
|
id,
|
|
|
|
accounts,
|
|
|
|
next,
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
export function expandMembersFail(id, error) {
|
|
|
|
return {
|
|
|
|
type: GROUP_MEMBERS_EXPAND_FAIL,
|
|
|
|
id,
|
|
|
|
error,
|
|
|
|
};
|
2019-07-16 20:57:35 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
export function fetchRemovedAccounts(id) {
|
|
|
|
return (dispatch, getState) => {
|
|
|
|
if (!me) return;
|
|
|
|
|
|
|
|
dispatch(fetchRemovedAccountsRequest(id));
|
|
|
|
|
|
|
|
api(getState).get(`/api/v1/groups/${id}/removed_accounts`).then(response => {
|
|
|
|
const next = getLinks(response).refs.find(link => link.rel === 'next');
|
|
|
|
|
|
|
|
dispatch(importFetchedAccounts(response.data));
|
|
|
|
dispatch(fetchRemovedAccountsSuccess(id, response.data, next ? next.uri : null));
|
|
|
|
dispatch(fetchRelationships(response.data.map(item => item.id)));
|
|
|
|
}).catch(error => {
|
|
|
|
dispatch(fetchRemovedAccountsFail(id, error));
|
|
|
|
});
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
export function fetchRemovedAccountsRequest(id) {
|
|
|
|
return {
|
|
|
|
type: GROUP_REMOVED_ACCOUNTS_FETCH_REQUEST,
|
|
|
|
id,
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
export function fetchRemovedAccountsSuccess(id, accounts, next) {
|
|
|
|
return {
|
|
|
|
type: GROUP_REMOVED_ACCOUNTS_FETCH_SUCCESS,
|
|
|
|
id,
|
|
|
|
accounts,
|
|
|
|
next,
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
export function fetchRemovedAccountsFail(id, error) {
|
|
|
|
return {
|
|
|
|
type: GROUP_REMOVED_ACCOUNTS_FETCH_FAIL,
|
|
|
|
id,
|
|
|
|
error,
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
export function expandRemovedAccounts(id) {
|
|
|
|
return (dispatch, getState) => {
|
|
|
|
if (!me) return;
|
|
|
|
|
2020-09-10 21:24:38 +01:00
|
|
|
const url = getState().getIn(['user_lists', 'group_removed_accounts', id, 'next']);
|
|
|
|
const isLoading = getState().getIn(['user_lists', 'group_removed_accounts', id, 'isLoading'])
|
2019-07-16 20:57:35 +01:00
|
|
|
|
2020-06-09 21:47:12 +01:00
|
|
|
if (url === null || isLoading) return
|
2019-07-16 20:57:35 +01:00
|
|
|
|
|
|
|
dispatch(expandRemovedAccountsRequest(id));
|
|
|
|
|
|
|
|
api(getState).get(url).then(response => {
|
|
|
|
const next = getLinks(response).refs.find(link => link.rel === 'next');
|
|
|
|
|
|
|
|
dispatch(importFetchedAccounts(response.data));
|
|
|
|
dispatch(expandRemovedAccountsSuccess(id, response.data, next ? next.uri : null));
|
|
|
|
dispatch(fetchRelationships(response.data.map(item => item.id)));
|
|
|
|
}).catch(error => {
|
|
|
|
dispatch(expandRemovedAccountsFail(id, error));
|
|
|
|
});
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
export function expandRemovedAccountsRequest(id) {
|
|
|
|
return {
|
|
|
|
type: GROUP_REMOVED_ACCOUNTS_EXPAND_REQUEST,
|
|
|
|
id,
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
export function expandRemovedAccountsSuccess(id, accounts, next) {
|
|
|
|
return {
|
|
|
|
type: GROUP_REMOVED_ACCOUNTS_EXPAND_SUCCESS,
|
|
|
|
id,
|
|
|
|
accounts,
|
|
|
|
next,
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
export function expandRemovedAccountsFail(id, error) {
|
|
|
|
return {
|
|
|
|
type: GROUP_REMOVED_ACCOUNTS_EXPAND_FAIL,
|
|
|
|
id,
|
|
|
|
error,
|
|
|
|
};
|
2019-07-16 21:18:23 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
export function removeRemovedAccount(groupId, id) {
|
|
|
|
return (dispatch, getState) => {
|
|
|
|
if (!me) return;
|
|
|
|
|
|
|
|
dispatch(removeRemovedAccountRequest(groupId, id));
|
|
|
|
|
|
|
|
api(getState).delete(`/api/v1/groups/${groupId}/removed_accounts?account_id=${id}`).then(response => {
|
|
|
|
dispatch(removeRemovedAccountSuccess(groupId, id));
|
|
|
|
}).catch(error => {
|
|
|
|
dispatch(removeRemovedAccountFail(groupId, id, error));
|
|
|
|
});
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
export function removeRemovedAccountRequest(groupId, id) {
|
|
|
|
return {
|
|
|
|
type: GROUP_REMOVED_ACCOUNTS_REMOVE_REQUEST,
|
|
|
|
groupId,
|
|
|
|
id,
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
export function removeRemovedAccountSuccess(groupId, id) {
|
|
|
|
return {
|
|
|
|
type: GROUP_REMOVED_ACCOUNTS_REMOVE_SUCCESS,
|
|
|
|
groupId,
|
|
|
|
id,
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
export function removeRemovedAccountFail(groupId, id, error) {
|
|
|
|
return {
|
|
|
|
type: GROUP_REMOVED_ACCOUNTS_REMOVE_FAIL,
|
|
|
|
groupId,
|
|
|
|
id,
|
|
|
|
error,
|
|
|
|
};
|
2019-07-16 23:25:23 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
export function createRemovedAccount(groupId, id) {
|
|
|
|
return (dispatch, getState) => {
|
|
|
|
if (!me) return;
|
|
|
|
|
|
|
|
dispatch(createRemovedAccountRequest(groupId, id));
|
|
|
|
|
|
|
|
api(getState).post(`/api/v1/groups/${groupId}/removed_accounts?account_id=${id}`).then(response => {
|
|
|
|
dispatch(createRemovedAccountSuccess(groupId, id));
|
|
|
|
}).catch(error => {
|
|
|
|
dispatch(createRemovedAccountFail(groupId, id, error));
|
|
|
|
});
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
export function createRemovedAccountRequest(groupId, id) {
|
|
|
|
return {
|
|
|
|
type: GROUP_REMOVED_ACCOUNTS_CREATE_REQUEST,
|
|
|
|
groupId,
|
|
|
|
id,
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
export function createRemovedAccountSuccess(groupId, id) {
|
|
|
|
return {
|
|
|
|
type: GROUP_REMOVED_ACCOUNTS_CREATE_SUCCESS,
|
|
|
|
groupId,
|
|
|
|
id,
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
export function createRemovedAccountFail(groupId, id, error) {
|
|
|
|
return {
|
|
|
|
type: GROUP_REMOVED_ACCOUNTS_CREATE_FAIL,
|
|
|
|
groupId,
|
|
|
|
id,
|
|
|
|
error,
|
|
|
|
};
|
2019-07-16 23:42:26 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
export function groupRemoveStatus(groupId, id) {
|
|
|
|
return (dispatch, getState) => {
|
|
|
|
if (!me) return;
|
|
|
|
|
|
|
|
dispatch(groupRemoveStatusRequest(groupId, id));
|
|
|
|
|
|
|
|
api(getState).delete(`/api/v1/groups/${groupId}/statuses/${id}`).then(response => {
|
|
|
|
dispatch(groupRemoveStatusSuccess(groupId, id));
|
|
|
|
}).catch(error => {
|
|
|
|
dispatch(groupRemoveStatusFail(groupId, id, error));
|
|
|
|
});
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
export function groupRemoveStatusRequest(groupId, id) {
|
|
|
|
return {
|
|
|
|
type: GROUP_REMOVE_STATUS_REQUEST,
|
|
|
|
groupId,
|
|
|
|
id,
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
export function groupRemoveStatusSuccess(groupId, id) {
|
|
|
|
return {
|
|
|
|
type: GROUP_REMOVE_STATUS_SUCCESS,
|
|
|
|
groupId,
|
|
|
|
id,
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
export function groupRemoveStatusFail(groupId, id, error) {
|
|
|
|
return {
|
|
|
|
type: GROUP_REMOVE_STATUS_FAIL,
|
|
|
|
groupId,
|
|
|
|
id,
|
|
|
|
error,
|
|
|
|
};
|
2019-08-08 12:40:44 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
export function updateRole(groupId, id, role) {
|
|
|
|
return (dispatch, getState) => {
|
|
|
|
if (!me) return;
|
|
|
|
|
|
|
|
dispatch(updateRoleRequest(groupId, id));
|
|
|
|
|
|
|
|
api(getState).patch(`/api/v1/groups/${groupId}/accounts?account_id=${id}`, { role }).then(response => {
|
|
|
|
dispatch(updateRoleSuccess(groupId, id));
|
|
|
|
}).catch(error => {
|
|
|
|
dispatch(updateRoleFail(groupId, id, error));
|
|
|
|
});
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
export function updateRoleRequest(groupId, id) {
|
|
|
|
return {
|
|
|
|
type: GROUP_REMOVED_ACCOUNTS_CREATE_REQUEST,
|
|
|
|
groupId,
|
|
|
|
id,
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
export function updateRoleSuccess(groupId, id) {
|
|
|
|
return {
|
|
|
|
type: GROUP_REMOVED_ACCOUNTS_CREATE_SUCCESS,
|
|
|
|
groupId,
|
|
|
|
id,
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
export function updateRoleFail(groupId, id, error) {
|
|
|
|
return {
|
|
|
|
type: GROUP_REMOVED_ACCOUNTS_CREATE_FAIL,
|
|
|
|
groupId,
|
|
|
|
id,
|
|
|
|
error,
|
|
|
|
};
|
2020-07-25 03:41:05 +01:00
|
|
|
};
|
|
|
|
|
2020-09-10 21:07:01 +01:00
|
|
|
|
2020-09-10 23:07:00 +01:00
|
|
|
export function fetchJoinRequests(id) {
|
|
|
|
return (dispatch, getState) => {
|
|
|
|
if (!me) return
|
|
|
|
|
|
|
|
dispatch(fetchJoinRequestsRequest(id))
|
|
|
|
|
|
|
|
api(getState).get(`/api/v1/groups/${id}/join_requests`).then((response) => {
|
|
|
|
const next = getLinks(response).refs.find(link => link.rel === 'next')
|
|
|
|
|
|
|
|
dispatch(importFetchedAccounts(response.data))
|
|
|
|
dispatch(fetchJoinRequestsSuccess(id, response.data, next ? next.uri : null))
|
|
|
|
dispatch(fetchRelationships(response.data.map(item => item.id)))
|
|
|
|
}).catch((error) => {
|
|
|
|
dispatch(fetchJoinRequestsFail(id, error))
|
|
|
|
})
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
export function fetchJoinRequestsRequest(id) {
|
|
|
|
return {
|
|
|
|
type: GROUP_JOIN_REQUESTS_FETCH_REQUEST,
|
|
|
|
id,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
export function fetchJoinRequestsSuccess(id, accounts, next) {
|
|
|
|
return {
|
|
|
|
type: GROUP_JOIN_REQUESTS_FETCH_SUCCESS,
|
|
|
|
id,
|
|
|
|
accounts,
|
|
|
|
next,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
export function fetchJoinRequestsFail(id, error) {
|
|
|
|
return {
|
|
|
|
type: GROUP_JOIN_REQUESTS_FETCH_FAIL,
|
|
|
|
id,
|
|
|
|
error,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
export function expandJoinRequests(id) {
|
|
|
|
return (dispatch, getState) => {
|
|
|
|
if (!me) return
|
|
|
|
|
|
|
|
const url = getState().getIn(['user_lists', 'group_join_requests', id, 'next'])
|
|
|
|
const isLoading = getState().getIn(['user_lists', 'group_join_requests', id, 'isLoading'])
|
|
|
|
|
|
|
|
if (url === null || isLoading) return
|
|
|
|
|
|
|
|
dispatch(expandJoinRequestsRequest(id))
|
|
|
|
|
|
|
|
api(getState).get(url).then(response => {
|
|
|
|
const next = getLinks(response).refs.find(link => link.rel === 'next')
|
|
|
|
|
|
|
|
dispatch(importFetchedAccounts(response.data))
|
|
|
|
dispatch(expandJoinRequestsSuccess(id, response.data, next ? next.uri : null))
|
|
|
|
dispatch(fetchRelationships(response.data.map(item => item.id)))
|
|
|
|
}).catch(error => {
|
|
|
|
dispatch(expandJoinRequestsFail(id, error))
|
|
|
|
})
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
export function expandJoinRequestsRequest(id) {
|
|
|
|
return {
|
|
|
|
type: GROUP_JOIN_REQUESTS_EXPAND_REQUEST,
|
|
|
|
id,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
export function expandJoinRequestsSuccess(id, accounts, next) {
|
|
|
|
return {
|
|
|
|
type: GROUP_JOIN_REQUESTS_EXPAND_SUCCESS,
|
|
|
|
id,
|
|
|
|
accounts,
|
|
|
|
next,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
export function expandJoinRequestsFail(id, error) {
|
|
|
|
return {
|
|
|
|
type: GROUP_JOIN_REQUESTS_EXPAND_FAIL,
|
|
|
|
id,
|
|
|
|
error,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
export const approveJoinRequest = (accountId, groupId) => (dispatch, getState) => {
|
|
|
|
if (!me) return
|
|
|
|
|
2020-09-11 23:22:33 +01:00
|
|
|
api(getState).post(`/api/v1/groups/${groupId}/join_requests/respond`, { accountId, type: 'approve' }).then((response) => {
|
|
|
|
dispatch(approveJoinRequestSuccess(response.data.accountId, groupId))
|
2020-09-10 23:07:00 +01:00
|
|
|
}).catch((error) => {
|
|
|
|
dispatch(approveJoinRequestFail(accountId, groupId, error))
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
export function approveJoinRequestSuccess(accountId, groupId) {
|
|
|
|
return {
|
|
|
|
type: GROUP_JOIN_REQUESTS_APPROVE_SUCCESS,
|
|
|
|
accountId,
|
|
|
|
groupId,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
export function approveJoinRequestFail(accountId, groupId, error) {
|
|
|
|
return {
|
|
|
|
type: GROUP_JOIN_REQUESTS_APPROVE_FAIL,
|
|
|
|
accountId,
|
|
|
|
groupId,
|
|
|
|
error,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
export const rejectJoinRequest = (accountId, groupId) => (dispatch, getState) => {
|
|
|
|
if (!me) return
|
|
|
|
|
2020-09-11 23:22:33 +01:00
|
|
|
api(getState).post(`/api/v1/groups/${groupId}/join_requests/respond`, { accountId, type: 'reject' }).then((response) => {
|
|
|
|
console.log("response:", response)
|
|
|
|
dispatch(rejectJoinRequestSuccess(response.data.accountId, groupId))
|
2020-09-10 23:07:00 +01:00
|
|
|
}).catch((error) => {
|
|
|
|
dispatch(rejectJoinRequestFail(accountId, groupId, error))
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
export function rejectJoinRequestSuccess(accountId, groupId) {
|
|
|
|
return {
|
|
|
|
type: GROUP_JOIN_REQUESTS_REJECT_SUCCESS,
|
|
|
|
accountId,
|
|
|
|
groupId,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
export function rejectJoinRequestFail(accountId, groupId, error) {
|
|
|
|
return {
|
|
|
|
type: GROUP_JOIN_REQUESTS_REJECT_FAIL,
|
|
|
|
accountId,
|
|
|
|
groupId,
|
|
|
|
error,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-09-10 21:07:01 +01:00
|
|
|
export function pinGroupStatus(groupId, statusId) {
|
|
|
|
return (dispatch, getState) => {
|
|
|
|
if (!me) return
|
|
|
|
|
|
|
|
dispatch(pinGroupStatusRequest(groupId))
|
|
|
|
|
|
|
|
api(getState).post(`/api/v1/groups/${groupId}/pin`, { statusId }).then((response) => {
|
|
|
|
dispatch(pinGroupStatusSuccess(groupId, statusId))
|
|
|
|
}).catch((error) => {
|
|
|
|
dispatch(pinGroupStatusFail(groupId, statusId, error))
|
|
|
|
})
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
export function pinGroupStatusRequest(groupId) {
|
|
|
|
return {
|
|
|
|
type: GROUP_PIN_STATUS_REQUEST,
|
|
|
|
groupId,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
export function pinGroupStatusSuccess(groupId, statusId) {
|
|
|
|
return {
|
|
|
|
type: GROUP_PIN_STATUS_SUCCESS,
|
|
|
|
groupId,
|
|
|
|
statusId,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
export function pinGroupStatusFail(groupId, statusId, error) {
|
|
|
|
return {
|
|
|
|
type: GROUP_PIN_STATUS_FAIL,
|
|
|
|
groupId,
|
|
|
|
statusId,
|
|
|
|
error,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
export function unpinGroupStatus(groupId, statusId) {
|
|
|
|
return (dispatch, getState) => {
|
|
|
|
if (!me) return
|
|
|
|
|
|
|
|
dispatch(unpinGroupStatusRequest(groupId))
|
|
|
|
|
|
|
|
api(getState).post(`/api/v1/groups/${groupId}/unpin`, { statusId }).then((response) => {
|
|
|
|
dispatch(unpinGroupStatusSuccess(groupId, statusId))
|
|
|
|
}).catch((error) => {
|
|
|
|
dispatch(unpinGroupStatusFail(groupId, statusId, error))
|
|
|
|
})
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
export function unpinGroupStatusRequest(groupId) {
|
|
|
|
return {
|
|
|
|
type: GROUP_UNPIN_STATUS_REQUEST,
|
|
|
|
groupId,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
export function unpinGroupStatusSuccess(groupId, statusId) {
|
|
|
|
return {
|
|
|
|
type: GROUP_UNPIN_STATUS_SUCCESS,
|
|
|
|
groupId,
|
|
|
|
statusId,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
export function unpinGroupStatusFail(groupId, statusId, error) {
|
|
|
|
return {
|
|
|
|
type: GROUP_UNPIN_STATUS_FAIL,
|
|
|
|
groupId,
|
|
|
|
statusId,
|
|
|
|
error,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-07-25 03:41:05 +01:00
|
|
|
export const sortGroups = (tab, sortType) => (dispatch, getState) => {
|
|
|
|
const groupIdsByTab = getState().getIn(['group_lists', tab, 'items'], ImmutableList()).toJS()
|
|
|
|
const allGroups = getState().get('groups', ImmutableMap()).toJS()
|
|
|
|
|
|
|
|
let groupsByTab = []
|
|
|
|
|
|
|
|
for (const key in allGroups) {
|
|
|
|
const block = allGroups[key]
|
|
|
|
if (groupIdsByTab.indexOf(block.id > -1)) {
|
|
|
|
groupsByTab.push(block)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (sortType === GROUP_LIST_SORTING_TYPE_ALPHABETICAL) {
|
|
|
|
groupsByTab.sort((a, b) => a.title.localeCompare(b.title))
|
|
|
|
} else if (sortType === GROUP_LIST_SORTING_TYPE_MOST_POPULAR) {
|
|
|
|
groupsByTab.sort((a, b) => (a.member_count < b.member_count) ? 1 : -1)
|
|
|
|
}
|
|
|
|
|
|
|
|
const sortedGroupsIdsByTab = groupsByTab.map((group) => group.id)
|
|
|
|
|
|
|
|
dispatch(groupsSort(tab, sortedGroupsIdsByTab))
|
|
|
|
};
|
|
|
|
|
|
|
|
export function groupsSort(tab, groupIds) {
|
|
|
|
return {
|
|
|
|
type: GROUP_SORT,
|
|
|
|
tab,
|
|
|
|
groupIds,
|
|
|
|
}
|
2020-08-06 04:59:12 +01:00
|
|
|
}
|
|
|
|
|
2020-08-07 23:26:32 +01:00
|
|
|
export const setGroupTimelineSort = (sortValue) => (dispatch) => {
|
2020-08-06 04:59:12 +01:00
|
|
|
dispatch({
|
|
|
|
type: GROUP_TIMELINE_SORT,
|
|
|
|
sortValue,
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2020-08-07 23:26:32 +01:00
|
|
|
export const setGroupTimelineTopSort = (sortValue) => (dispatch) => {
|
2020-08-06 04:59:12 +01:00
|
|
|
dispatch({
|
|
|
|
type: GROUP_TIMELINE_TOP_SORT,
|
|
|
|
sortValue,
|
|
|
|
})
|
2020-08-07 05:19:18 +01:00
|
|
|
}
|