From d8bd57901e33a7057e26e782e295099ffcc0da89 Mon Sep 17 00:00:00 2001 From: Christopher Speller Date: Wed, 6 Sep 2017 23:04:13 -0700 Subject: Removing webapp --- .../components/analytics/team_analytics/index.js | 36 ---------------------- 1 file changed, 36 deletions(-) delete mode 100644 webapp/components/analytics/team_analytics/index.js (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 deleted file mode 100644 index fe53a1559..000000000 --- a/webapp/components/analytics/team_analytics/index.js +++ /dev/null @@ -1,36 +0,0 @@ -// Copyright (c) 2017 Mattermost, Inc. All Rights Reserved. -// See License.txt for license information. - -import {connect} from 'react-redux'; -import {bindActionCreators} from 'redux'; -import {getTeams} from 'mattermost-redux/actions/teams'; -import {getProfilesInTeam} from 'mattermost-redux/actions/users'; - -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 - }; -} - -function mapDispatchToProps(dispatch) { - return { - actions: bindActionCreators({ - getTeams, - getProfilesInTeam - }, dispatch) - }; -} - -export default connect(mapStateToProps, mapDispatchToProps)(TeamAnalytics); -- cgit v1.2.3-1-g7c22