Index: chrome/browser/resources/bluetooth_internals/sidebar.js |
diff --git a/chrome/browser/resources/bluetooth_internals/sidebar.js b/chrome/browser/resources/bluetooth_internals/sidebar.js |
new file mode 100644 |
index 0000000000000000000000000000000000000000..8b32bd6d1a922f40ef9a43961bbabca93c0c936d |
--- /dev/null |
+++ b/chrome/browser/resources/bluetooth_internals/sidebar.js |
@@ -0,0 +1,71 @@ |
+// Copyright 2016 The Chromium Authors. All rights reserved. |
+// Use of this source code is governed by a BSD-style license that can be |
+// found in the LICENSE file. |
+ |
+/** |
+ * Javascript for Sidebar, served from chrome://bluetooth-internals/. |
+ */ |
+ |
+cr.define('sidebar', function() { |
+ /** @const {!cr.ui.pageManager.PageManager}*/ |
+ var PageManager = cr.ui.pageManager.PageManager; |
+ |
+ /** |
+ * A side menu that lists the currently navigable pages. |
+ * @constructor |
+ * @param {string} sidebarDivId ID of the div corresponding to the sidebar. |
+ * @extends {PageManager.Observer} |
+ */ |
+ function Sidebar(sidebarDivId) { |
+ /** @private {!Element} */ |
+ this.sidebarDiv_ = $(sidebarDivId); |
+ /** @private {!Element} */ |
+ this.sidebarContent_ = this.sidebarDiv_.querySelector('.sidebar-content'); |
+ |
+ this.sidebarContent_.querySelectorAll('li').forEach(function(item) { |
+ item.addEventListener('click', this.close.bind(this)); |
+ }, this); |
+ |
+ /** @private {!Element} */ |
+ this.overlayDiv_ = this.sidebarDiv_.querySelector('.overlay'); |
+ this.overlayDiv_.addEventListener('click', this.close.bind(this)); |
+ |
+ window.matchMedia('screen and (max-width: 600px)').addListener( |
+ function(query) { if (!query.matches) this.close(); }.bind(this)); |
+ } |
+ |
+ Sidebar.prototype = { |
+ __proto__: PageManager.Observer.prototype, |
+ |
+ /** |
+ * Closes the sidebar. Only applies to layouts with window width <= 600px. |
+ */ |
+ close: function() { |
+ this.sidebarDiv_.classList.remove('open'); |
+ document.body.style.overflow = ''; |
+ }, |
+ |
+ /** |
+ * Opens the sidebar. Only applies to layouts with window width <= 600px. |
+ */ |
+ open: function() { |
+ document.body.style.overflow = 'hidden'; |
+ this.sidebarDiv_.classList.add('open'); |
+ }, |
+ |
+ /** |
+ * Called when a page is navigated to. |
+ * @override |
+ * @param {string} path The path of the page being visited. |
+ */ |
+ updateHistory: function(path) { |
+ this.sidebarContent_.querySelectorAll('li').forEach(function(item) { |
+ item.classList.toggle('selected', item.dataset.pageName === path); |
+ }); |
+ } |
+ }; |
+ |
+ return { |
+ Sidebar: Sidebar |
+ }; |
+}); |