From 1138dd67705829a6af0d6c610cf3dbe09082187c Mon Sep 17 00:00:00 2001 From: Joram Wilander Date: Wed, 14 Jun 2017 08:56:56 -0400 Subject: PLT-6657 Move system console to use v4 endpoints and redux (#6572) * Move system console to use v4 endpoints and redux * Rename logs dir to get past gitignore * Fix test email * Update brand unit test * Updates per feedback --- webapp/components/analytics/team_analytics/index.js | 10 ++++++++++ 1 file changed, 10 insertions(+) (limited to 'webapp/components/analytics/team_analytics/index.js') diff --git a/webapp/components/analytics/team_analytics/index.js b/webapp/components/analytics/team_analytics/index.js index 270967a1b..0620a8fdb 100644 --- a/webapp/components/analytics/team_analytics/index.js +++ b/webapp/components/analytics/team_analytics/index.js @@ -5,10 +5,20 @@ import {connect} from 'react-redux'; import {bindActionCreators} from 'redux'; import {getTeams} from 'mattermost-redux/actions/teams'; +import {getTeamsList} from 'mattermost-redux/selectors/entities/teams'; +import BrowserStore from 'stores/browser_store.jsx'; + import TeamAnalytics from './team_analytics.jsx'; +const LAST_ANALYTICS_TEAM = 'last_analytics_team'; + function mapStateToProps(state, ownProps) { + const teams = getTeamsList(state); + const teamId = BrowserStore.getGlobalItem(LAST_ANALYTICS_TEAM, teams.length > 0 ? teams[0].id : ''); + return { + initialTeam: state.entities.teams.teams[teamId], + teams, ...ownProps }; } -- cgit v1.2.3-1-g7c22