From 8239c68cf323e4bb20007d2b456336becead273d Mon Sep 17 00:00:00 2001 From: JoramWilander Date: Thu, 25 Feb 2016 12:32:46 -0500 Subject: Refactor and modularize analytics on the client --- web/react/components/analytics/table_chart.jsx | 60 ++++++++++++++++++++++++++ 1 file changed, 60 insertions(+) create mode 100644 web/react/components/analytics/table_chart.jsx (limited to 'web/react/components/analytics/table_chart.jsx') diff --git a/web/react/components/analytics/table_chart.jsx b/web/react/components/analytics/table_chart.jsx new file mode 100644 index 000000000..c94fa300b --- /dev/null +++ b/web/react/components/analytics/table_chart.jsx @@ -0,0 +1,60 @@ +// Copyright (c) 2016 Mattermost, Inc. All Rights Reserved. +// See License.txt for license information. + +import Constants from '../../utils/constants.jsx'; + +const Tooltip = ReactBootstrap.Tooltip; +const OverlayTrigger = ReactBootstrap.OverlayTrigger; + +export default class TableChart extends React.Component { + render() { + return ( +
+
+
+ {this.props.title} +
+
+ + + { + this.props.data.map((item) => { + const tooltip = ( + + {item.tip} + + ); + + return ( + + + + + ); + }) + } + +
+ + + + + {item.value} +
+
+
+
+ ); + } +} + +TableChart.propTypes = { + title: React.PropTypes.node, + data: React.PropTypes.array +}; -- cgit v1.2.3-1-g7c22