* Update mattermost-redux to use latest WS changes * Properly mark channel as read, keep the new message indicator, and fix push notification flow * unneeded parameter in setCurrentUserStatusOffline Co-Authored-By: enahum <nahumhbl@gmail.com> * Feedback review * Update mm-redux ref
45 lines
1.3 KiB
JavaScript
45 lines
1.3 KiB
JavaScript
// Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved.
|
|
// See LICENSE.txt for license information.
|
|
|
|
import {bindActionCreators} from 'redux';
|
|
import {connect} from 'react-redux';
|
|
|
|
import {handleTeamChange} from 'app/actions/views/select_team';
|
|
|
|
import {getTeams, joinTeam} from 'mattermost-redux/actions/teams';
|
|
import {logout} from 'mattermost-redux/actions/users';
|
|
import {getJoinableTeams} from 'mattermost-redux/selectors/entities/teams';
|
|
|
|
import {getCurrentLocale} from 'app/selectors/i18n';
|
|
|
|
import SelectTeam from './select_team.js';
|
|
|
|
function mapStateToProps(state) {
|
|
const locale = getCurrentLocale(state);
|
|
|
|
function sortTeams(a, b) {
|
|
const options = {
|
|
numeric: true,
|
|
sensitivity: 'base',
|
|
};
|
|
return a.display_name.localeCompare(b.display_name, locale, options);
|
|
}
|
|
|
|
return {
|
|
teamsRequest: state.requests.teams.getTeams,
|
|
teams: Object.values(getJoinableTeams(state)).sort(sortTeams),
|
|
};
|
|
}
|
|
|
|
function mapDispatchToProps(dispatch) {
|
|
return {
|
|
actions: bindActionCreators({
|
|
getTeams,
|
|
handleTeamChange,
|
|
joinTeam,
|
|
logout,
|
|
}, dispatch),
|
|
};
|
|
}
|
|
|
|
export default connect(mapStateToProps, mapDispatchToProps)(SelectTeam);
|