// Copyright (c) 2016-present Mattermost, Inc. All Rights Reserved. // See License.txt for license information. import $ from 'jquery'; import * as RouteUtils from 'routes/route_utils.jsx'; import {browserHistory} from 'react-router/es6'; import TeamStore from 'stores/team_store.jsx'; import UserStore from 'stores/user_store.jsx'; import * as GlobalActions from 'actions/global_actions.jsx'; import {loadStatusesForChannelAndSidebar} from 'actions/status_actions.jsx'; import {reconnect} from 'actions/websocket_actions.jsx'; import Constants from 'utils/constants.jsx'; import * as AsyncClient from 'utils/async_client.jsx'; import ChannelStore from 'stores/channel_store.jsx'; import BrowserStore from 'stores/browser_store.jsx'; import emojiRoute from 'routes/route_emoji.jsx'; import integrationsRoute from 'routes/route_integrations.jsx'; import {loadNewDMIfNeeded, loadNewGMIfNeeded, loadProfilesForSidebar} from 'actions/user_actions.jsx'; // Redux actions import store from 'stores/redux_store.jsx'; const dispatch = store.dispatch; const getState = store.getState; import {fetchMyChannelsAndMembers, joinChannel} from 'mattermost-redux/actions/channels'; function onChannelEnter(nextState, replace, callback) { doChannelChange(nextState, replace, callback); } function doChannelChange(state, replace, callback) { let channel; if (state.location.query.fakechannel) { channel = JSON.parse(state.location.query.fakechannel); } else { channel = ChannelStore.getByName(state.params.channel); if (channel && channel.type === Constants.DM_CHANNEL) { loadNewDMIfNeeded(channel.id); } else if (channel && channel.type === Constants.GM_CHANNEL) { loadNewGMIfNeeded(channel.id); } if (!channel) { joinChannel(UserStore.getCurrentId(), TeamStore.getCurrentId(), null, state.params.channel)(dispatch, getState).then( (data) => { if (data) { GlobalActions.emitChannelClickEvent(data.channel); } else if (data == null) { if (state.params.team) { replace('/' + state.params.team + '/channels/town-square'); } else { replace('/'); } } callback(); } ); return; } } GlobalActions.emitChannelClickEvent(channel); callback(); } let wakeUpInterval; let lastTime = (new Date()).getTime(); const WAKEUP_CHECK_INTERVAL = 30000; // 30 seconds const WAKEUP_THRESHOLD = 60000; // 60 seconds function preNeedsTeam(nextState, replace, callback) { if (RouteUtils.checkIfMFARequired(nextState)) { browserHistory.push('/mfa/setup'); return; } clearInterval(wakeUpInterval); wakeUpInterval = setInterval(() => { const currentTime = (new Date()).getTime(); if (currentTime > (lastTime + WAKEUP_THRESHOLD)) { // ignore small delays console.log('computer woke up - fetching latest'); //eslint-disable-line no-console reconnect(false); } lastTime = currentTime; }, WAKEUP_CHECK_INTERVAL); // First check to make sure you're in the current team // for the current url. const teamName = nextState.params.team; const team = TeamStore.getByName(teamName); if (!team) { browserHistory.push('/'); return; } TeamStore.saveMyTeam(team); BrowserStore.setGlobalItem('team', team.id); TeamStore.emitChange(); GlobalActions.emitCloseRightHandSide(); if (nextState.location.pathname.indexOf('/channels/') > -1 || nextState.location.pathname.indexOf('/pl/') > -1) { AsyncClient.getMyTeamsUnread(); fetchMyChannelsAndMembers(team.id)(dispatch, getState); } const d1 = $.Deferred(); //eslint-disable-line new-cap fetchMyChannelsAndMembers(team.id)(dispatch, getState).then( () => { loadStatusesForChannelAndSidebar(); loadProfilesForSidebar(); d1.resolve(); } ); $.when(d1).done(() => { callback(); }); } function selectLastChannel(nextState, replace, callback) { const team = TeamStore.getByName(nextState.params.team); const channelId = BrowserStore.getGlobalItem(team.id); const channel = ChannelStore.getChannelById(channelId); let channelName = 'town-square'; if (channel) { channelName = channel.name; } replace(`/${team.name}/channels/${channelName}`); callback(); } function onPermalinkEnter(nextState, replace, callback) { const postId = nextState.params.postid; GlobalActions.emitPostFocusEvent( postId, () => callback() ); } export default { path: ':team', onEnter: preNeedsTeam, indexRoute: {onEnter: selectLastChannel}, childRoutes: [ integrationsRoute, emojiRoute, { getComponents: (location, callback) => { System.import('components/needs_team').then(RouteUtils.importComponentSuccess(callback)); }, childRoutes: [ { path: 'channels/:channel', onEnter: onChannelEnter, getComponents: (location, callback) => { Promise.all([ System.import('components/team_sidebar'), System.import('components/sidebar.jsx'), System.import('components/channel_view.jsx') ]).then( (comarr) => callback(null, {team_sidebar: comarr[0].default, sidebar: comarr[1].default, center: comarr[2].default}) ); } }, { path: 'pl/:postid', onEnter: onPermalinkEnter, getComponents: (location, callback) => { Promise.all([ System.import('components/team_sidebar'), System.import('components/sidebar.jsx'), System.import('components/permalink_view.jsx') ]).then( (comarr) => callback(null, {team_sidebar: comarr[0].default, sidebar: comarr[1].default, center: comarr[2].default}) ); } }, { path: 'tutorial', getComponents: (location, callback) => { Promise.all([ System.import('components/team_sidebar'), System.import('components/sidebar.jsx'), System.import('components/tutorial/tutorial_view.jsx') ]).then( (comarr) => callback(null, {team_sidebar: comarr[0].default, sidebar: comarr[1].default, center: comarr[2].default}) ); } } ] } ] };