* Remove mattermost-redux * Move mm-redux files into app/redux * Add @redux path to tsconfig.json * Fix imports * Install missing dependencies * Fix tsc errors * Fix i18n_utils test * Fix more imports * Remove redux websocket * Fix tests * Rename @redux * Apply changes from mattermost-redux PR 1103 * Remove mattermost-redux mention in template * Add missing imports * Rename app/redux/ to app/mm-redux/ * Remove test file * Fix fetching Sidebar GM profiles Co-authored-by: Elias Nahum <nahumhbl@gmail.com>
69 lines
2.5 KiB
JavaScript
69 lines
2.5 KiB
JavaScript
// Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved.
|
|
// See LICENSE.txt for license information.
|
|
|
|
import {batchActions} from 'redux-batched-actions';
|
|
|
|
import {ChannelTypes, TeamTypes} from '@mm-redux/action_types';
|
|
import {getMyTeams} from '@mm-redux/actions/teams';
|
|
import {RequestStatus} from '@mm-redux/constants';
|
|
import {getConfig} from '@mm-redux/selectors/entities/general';
|
|
import EventEmitter from '@mm-redux/utils/event_emitter';
|
|
|
|
import {NavigationTypes} from 'app/constants';
|
|
import {selectFirstAvailableTeam} from 'app/utils/teams';
|
|
|
|
export function handleTeamChange(teamId) {
|
|
return async (dispatch, getState) => {
|
|
const state = getState();
|
|
const {currentTeamId} = state.entities.teams;
|
|
if (currentTeamId === teamId) {
|
|
return;
|
|
}
|
|
|
|
dispatch(batchActions([
|
|
{type: TeamTypes.SELECT_TEAM, data: teamId},
|
|
{type: ChannelTypes.SELECT_CHANNEL, data: '', extra: {}},
|
|
], 'BATCH_SWITCH_TEAM'));
|
|
};
|
|
}
|
|
|
|
export function selectDefaultTeam() {
|
|
return async (dispatch, getState) => {
|
|
const state = getState();
|
|
|
|
const {ExperimentalPrimaryTeam} = getConfig(state);
|
|
const {teams: allTeams, myMembers} = state.entities.teams;
|
|
const teams = Object.keys(myMembers).map((key) => allTeams[key]);
|
|
|
|
let defaultTeam = selectFirstAvailableTeam(teams, ExperimentalPrimaryTeam);
|
|
|
|
if (defaultTeam) {
|
|
dispatch(handleTeamChange(defaultTeam.id));
|
|
} else if (state.requests.teams.getTeams.status === RequestStatus.FAILURE || state.requests.teams.getMyTeams.status === RequestStatus.FAILURE) {
|
|
EventEmitter.emit(NavigationTypes.NAVIGATION_ERROR_TEAMS);
|
|
} else {
|
|
// If for some reason we reached this point cause of a failure in rehydration or something
|
|
// lets fetch the teams one more time to make sure the user does not belong to any team
|
|
const {data, error} = await dispatch(getMyTeams());
|
|
if (error) {
|
|
EventEmitter.emit(NavigationTypes.NAVIGATION_ERROR_TEAMS);
|
|
return;
|
|
}
|
|
|
|
if (data) {
|
|
defaultTeam = selectFirstAvailableTeam(data, ExperimentalPrimaryTeam);
|
|
}
|
|
|
|
if (defaultTeam) {
|
|
dispatch(handleTeamChange(defaultTeam.id));
|
|
} else {
|
|
EventEmitter.emit(NavigationTypes.NAVIGATION_NO_TEAMS);
|
|
}
|
|
}
|
|
};
|
|
}
|
|
|
|
export default {
|
|
handleTeamChange,
|
|
selectDefaultTeam,
|
|
};
|