This repository has been archived by the owner on Aug 2, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 72
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Basic Dashboard events dashboard click, filters selected * Add alert panel explore link event * Add device group events Add events for create/edit device groups * Add rules page click event * Add Help and Refresh events add events for help dropdown. Also add event when refresh is clicked * Add map click event * Style fixes Style fixes. Fix issue with new version of link--doesn't work for external links. Switch to <a> instead * addressed comments style fixes * Remove unused code * Address comments style fixes, some renaming
- Loading branch information
Molly Moen
authored
Dec 10, 2018
1 parent
1b4a82d
commit 3c094ee
Showing
39 changed files
with
212 additions
and
63 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
11 changes: 11 additions & 0 deletions
11
src/components/pages/dashboard/panels/alerts/alertsPanel.container.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
// Copyright (c) Microsoft. All rights reserved. | ||
|
||
import { connect } from 'react-redux'; | ||
import { epics as appEpics } from 'store/reducers/appReducer'; | ||
import { AlertsPanel } from './alertsPanel'; | ||
|
||
const mapDispatchToProps = dispatch => ({ | ||
logEvent: diagnosticsModel => dispatch(appEpics.actions.logEvent(diagnosticsModel)) | ||
}); | ||
|
||
export const AlertsPanelContainer = connect(null, mapDispatchToProps)(AlertsPanel); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,4 @@ | ||
// Copyright (c) Microsoft. All rights reserved. | ||
|
||
export * from './alertsPanel'; | ||
export * from './alertsPanel.container'; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,4 @@ | ||
// Copyright (c) Microsoft. All rights reserved. | ||
|
||
export * from './mapPanel'; | ||
export * from './mapPanel.container'; |
11 changes: 11 additions & 0 deletions
11
src/components/pages/dashboard/panels/map/mapPanel.container.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
// Copyright (c) Microsoft. All rights reserved. | ||
|
||
import { connect } from 'react-redux'; | ||
import { epics as appEpics } from 'store/reducers/appReducer'; | ||
import { MapPanel } from './mapPanel'; | ||
|
||
const mapDispatchToProps = dispatch => ({ | ||
logEvent: diagnosticsModel => dispatch(appEpics.actions.logEvent(diagnosticsModel)) | ||
}); | ||
|
||
export const MapPanelContainer = connect(null, mapDispatchToProps)(MapPanel); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,3 +2,4 @@ | |
|
||
export * from './telemetryPanel'; | ||
export * from './telemetryChart'; | ||
export * from './telemetryChart.container' |
12 changes: 12 additions & 0 deletions
12
src/components/pages/dashboard/panels/telemetry/telemetryChart.container.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
// Copyright (c) Microsoft. All rights reserved. | ||
|
||
import { connect } from 'react-redux'; | ||
import { epics as appEpics } from 'store/reducers/appReducer'; | ||
import { TelemetryChart } from './telemetryChart' | ||
|
||
|
||
const mapDispatchToProps = dispatch => ({ | ||
logEvent: diagnosticsModel => dispatch(appEpics.actions.logEvent(diagnosticsModel)) | ||
}); | ||
|
||
export const TelemetryChartContainer = connect(null, mapDispatchToProps)(TelemetryChart); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
// Copyright (c) Microsoft. All rights reserved. | ||
|
||
import { connect } from 'react-redux'; | ||
import { epics as appEpics } from 'store/reducers/appReducer'; | ||
import { RefreshBar } from './refreshBar' | ||
|
||
const mapDispatchToProps = dispatch => ({ | ||
logEvent: diagnosticsModel => dispatch(appEpics.actions.logEvent(diagnosticsModel)) | ||
}); | ||
|
||
export const RefreshBarContainer = connect(null, mapDispatchToProps)(RefreshBar); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.