summaryrefslogtreecommitdiffstats
path: root/devtools/client/netmonitor/src/components/search/StatusBar.js
diff options
context:
space:
mode:
Diffstat (limited to 'devtools/client/netmonitor/src/components/search/StatusBar.js')
-rw-r--r--devtools/client/netmonitor/src/components/search/StatusBar.js97
1 files changed, 97 insertions, 0 deletions
diff --git a/devtools/client/netmonitor/src/components/search/StatusBar.js b/devtools/client/netmonitor/src/components/search/StatusBar.js
new file mode 100644
index 0000000000..31ecdeffe9
--- /dev/null
+++ b/devtools/client/netmonitor/src/components/search/StatusBar.js
@@ -0,0 +1,97 @@
+/* This Source Code Form is subject to the terms of the Mozilla Public
+ * License, v. 2.0. If a copy of the MPL was not distributed with this
+ * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
+
+"use strict";
+
+const {
+ Component,
+} = require("resource://devtools/client/shared/vendor/react.js");
+const PropTypes = require("resource://devtools/client/shared/vendor/react-prop-types.js");
+const dom = require("resource://devtools/client/shared/vendor/react-dom-factories.js");
+const {
+ connect,
+} = require("resource://devtools/client/shared/redux/visibility-handler-connect.js");
+const {
+ getSearchStatus,
+ getSearchResultCount,
+ getSearchResourceCount,
+} = require("resource://devtools/client/netmonitor/src/selectors/index.js");
+const { PluralForm } = require("resource://devtools/shared/plural-form.js");
+const {
+ L10N,
+} = require("resource://devtools/client/netmonitor/src/utils/l10n.js");
+const { div, span } = dom;
+const {
+ SEARCH_STATUS,
+} = require("resource://devtools/client/netmonitor/src/constants.js");
+
+/**
+ * Displays the number of lines found for results and resource count (files)
+ */
+class StatusBar extends Component {
+ static get propTypes() {
+ return {
+ status: PropTypes.string,
+ resultsCount: PropTypes.string,
+ resourceCount: PropTypes.string,
+ };
+ }
+
+ getSearchStatusDoneLabel(lines, files) {
+ const matchingLines = PluralForm.get(
+ lines,
+ L10N.getStr("netmonitor.search.status.labels.matchingLines")
+ ).replace("#1", lines);
+ const matchingFiles = PluralForm.get(
+ files,
+ L10N.getStr("netmonitor.search.status.labels.fileCount")
+ ).replace("#1", files);
+
+ return L10N.getFormatStr(
+ "netmonitor.search.status.labels.done",
+ matchingLines,
+ matchingFiles
+ );
+ }
+
+ renderStatus() {
+ const { status, resultsCount, resourceCount } = this.props;
+
+ switch (status) {
+ case SEARCH_STATUS.FETCHING:
+ return L10N.getStr("netmonitor.search.status.labels.fetching");
+ case SEARCH_STATUS.DONE:
+ return this.getSearchStatusDoneLabel(resultsCount, resourceCount);
+ case SEARCH_STATUS.ERROR:
+ return L10N.getStr("netmonitor.search.status.labels.error");
+ case SEARCH_STATUS.CANCELED:
+ return L10N.getStr("netmonitor.search.status.labels.canceled");
+ default:
+ return "";
+ }
+ }
+
+ render() {
+ const { status } = this.props;
+ return div(
+ { className: "devtools-toolbar devtools-toolbar-bottom" },
+ div(
+ {
+ className: "status-bar-label",
+ title: this.renderStatus(),
+ },
+ this.renderStatus(),
+ status === SEARCH_STATUS.FETCHING
+ ? span({ className: "img loader" })
+ : ""
+ )
+ );
+ }
+}
+
+module.exports = connect(state => ({
+ status: getSearchStatus(state),
+ resultsCount: getSearchResultCount(state),
+ resourceCount: getSearchResourceCount(state),
+}))(StatusBar);