Index: static/js/main.js |
=================================================================== |
--- a/static/js/main.js |
+++ b/static/js/main.js |
@@ -1,9 +1,10 @@ |
-(function(){ |
+(function() |
+{ |
document.addEventListener("DOMContentLoaded", function() |
{ |
/************************************************************************** |
* General |
**************************************************************************/ |
// Change html class name from "no-js" to "js" |
@@ -50,16 +51,18 @@ |
// to move to newly focused element |
setTimeout(function() |
{ |
var newFocus = document.activeElement; |
if (newFocus |
.classList.contains("custom-select-selected") || |
newFocus |
+ .classList.contains("custom-select-option") || |
+ newFocus |
.parentElement |
.classList.contains("custom-select-option")) |
{ |
return; |
} |
this.close(); |
@@ -219,10 +222,116 @@ |
} |
var productTopicsAccordion = document.getElementById('product-topics-accordion'); |
if (productTopicsAccordion) |
{ |
new Accordion(productTopicsAccordion); |
} |
+ /************************************************************************** |
+ * BrowserSelect |
+ **************************************************************************/ |
+ |
+ function BrowserSelect(select) |
+ { |
+ this.select = select; |
+ CustomSelect.apply(this, [this.select]); |
+ |
+ this.BROWSER_STORAGE_KEY = "BROWSER"; |
+ this.BROWSER_AUTODETECTED_STORAGE_KEY = "BROWSER_AUTODETECTED"; |
+ this.SUPPORTED_BROWSERS = ["chrome", "opera", "samsungBrowser", |
+ "yandexbrowser", "maxthon", "msie", |
+ "msedge", "firefox", "ios", "safari"]; |
+ this.DEFAULT_BROWSER = "chrome"; |
+ |
+ this.select |
+ .addEventListener("click", this._onClickOrKeyDown.bind(this), false); |
+ |
+ this.select |
+ .addEventListener("keydown", this._onClickOrKeyDown.bind(this), false); |
+ |
+ var storedBrowser = localStorage.getItem(this.BROWSER_STORAGE_KEY); |
+ if (storedBrowser) this.selectOption(storedBrowser); |
+ else this.detectBrowser(); |
+ } |
+ |
+ BrowserSelect.prototype = Object.create(CustomSelect.prototype); |
+ BrowserSelect.prototype.constructor = BrowserSelect; |
+ |
+ BrowserSelect.prototype.detectBrowser = function() |
+ { |
+ for (var i = 0; i < this.SUPPORTED_BROWSERS.length; i++) |
+ { |
+ var supportedBrowser = this.SUPPORTED_BROWSERS[i]; |
+ if (bowser[supportedBrowser]) |
+ { |
+ localStorage.setItem(this.BROWSER_AUTODETECTED_STORAGE_KEY, "true"); |
+ return this.selectOption(supportedBrowser); |
+ } |
+ } |
+ |
+ this.selectOption(this.DEFAULT_BROWSER); |
+ }; |
+ |
+ BrowserSelect.prototype.selectOption = function(browser) |
+ { |
+ localStorage.setItem(this.BROWSER_STORAGE_KEY, browser); |
+ |
+ // Change body class |
+ var bodyClassList = Array.prototype.slice.call(document.body.classList); |
+ for (var i = 0; i < bodyClassList.length; i++) |
+ { |
+ if (bodyClassList[i].indexOf('ua-') > -1) |
+ { |
+ document.body.classList.remove(bodyClassList[i]); |
+ } |
+ } |
+ document.body.classList.add("ua-" + browser); |
+ |
+ // Check selected option |
+ var selectedItem = this.select |
+ .querySelector("[data-value='" + browser + "']"); |
+ selectedItem.setAttribute("aria-checked", "true"); |
+ |
+ // Set selected option |
+ var selectedOption = selectedItem.innerHTML; |
+ |
+ if (localStorage.getItem(this.BROWSER_AUTODETECTED_STORAGE_KEY)) |
+ { |
+ var autodetected = document |
+ .getElementById('browser-select-autodetected') |
+ .innerHTML; |
+ selectedOption += "<span class='muted'>(" + autodetected + ")</span>"; |
+ } |
+ |
+ this.select |
+ .querySelector(".custom-select-selected") |
+ .innerHTML = selectedOption; |
+ }; |
+ |
+ BrowserSelect.prototype._onClickOrKeyDown = function(event) |
+ { |
+ if (!event.target.classList.contains("custom-select-option")) return; |
+ |
+ var IS_ENTER_KEY = event.key == "Enter" || event.keyCode == 13; |
+ if (event.keyCode && !IS_ENTER_KEY) return; |
+ |
+ localStorage.removeItem(this.BROWSER_AUTODETECTED_STORAGE_KEY); |
+ |
+ // Uncheck previously checked option |
+ this.select |
+ .querySelector("[aria-checked='true']") |
+ .setAttribute("aria-checked", "false"); |
+ |
+ this.selectOption(event.target.getAttribute("data-value")); |
+ |
+ this.close(); |
+ }; |
+ |
+ var browserSelect = document.getElementById("browser-select"); |
+ if (browserSelect) |
+ { |
+ new BrowserSelect(browserSelect); |
+ } |
+ |
}, false); |
}()); |