/* * Copyright (C) 2009 Google Inc. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are * met: * * * Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * * Redistributions in binary form must reproduce the above * copyright notice, this list of conditions and the following disclaimer * in the documentation and/or other materials provided with the * distribution. * * Neither the name of Google Inc. nor the names of its * contributors may be used to endorse or promote products derived from * this software without specific prior written permission. * * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ WebInspector.AuditLauncherView = function(categoriesById, runnerCallback) { WebInspector.View.call(this); this._categoriesById = categoriesById; this._runnerCallback = runnerCallback; this._categoryIdPrefix = "audit-category-item-"; this._auditRunning = false; this.element.addStyleClass("audit-launcher-view"); this._contentElement = document.createElement("div"); this._contentElement.className = "audit-launcher-view-content"; this.element.appendChild(this._contentElement); function categorySortFunction(a, b) { var aTitle = a.displayName || ""; var bTitle = b.displayName || ""; return aTitle.localeCompare(bTitle); } var sortedCategories = []; for (var id in this._categoriesById) sortedCategories.push(this._categoriesById[id]); sortedCategories.sort(categorySortFunction); if (!sortedCategories.length) { this._headerElement = document.createElement("h1"); this._headerElement.className = "no-audits"; this._headerElement.textContent = WebInspector.UIString("No audits to run"); this._contentElement.appendChild(this._headerElement); } else this._createLauncherUI(sortedCategories); } WebInspector.AuditLauncherView.prototype = { updateResourceTrackingState: function(isTracking) { if (!this._auditPresentStateLabelElement) return; if (isTracking) { this._auditPresentStateLabelElement.nodeValue = WebInspector.UIString("Audit Present State"); this._auditPresentStateElement.disabled = false; this._auditPresentStateElement.parentElement.removeStyleClass("disabled"); } else { this._auditPresentStateLabelElement.nodeValue = WebInspector.UIString("Audit Present State (Resource Tracking must be enabled)"); this._auditPresentStateElement.disabled = true; this._auditPresentStateElement.parentElement.addStyleClass("disabled"); this.auditReloadedStateElement.checked = true; } }, _setAuditRunning: function(auditRunning) { if (this._auditRunning === auditRunning) return; this._auditRunning = auditRunning; this._updateButton(); }, _launchButtonClicked: function(event) { var catIds = []; var childNodes = this._categoriesElement.childNodes; for (var id in this._categoriesById) { if (this._categoriesById[id]._checkboxElement.checked) catIds.push(id); } function profilingFinishedCallback() { this._setAuditRunning(false); } this._setAuditRunning(true); this._runnerCallback(catIds, this._auditPresentStateElement.checked, profilingFinishedCallback.bind(this)); }, _selectAllClicked: function(checkCategories) { var childNodes = this._categoriesElement.childNodes; for (var i = 0, length = childNodes.length; i < length; ++i) childNodes[i].firstChild.checked = checkCategories; this._currentCategoriesCount = checkCategories ? this._totalCategoriesCount : 0; this._updateButton(); }, _categoryClicked: function(event) { this._currentCategoriesCount += event.target.checked ? 1 : -1; this._selectAllCheckboxElement.checked = this._currentCategoriesCount === this._totalCategoriesCount; this._updateButton(); }, _createCategoryElement: function(title, id) { var element; var labelElement = document.createElement("label"); labelElement.id = this._categoryIdPrefix + id; element = document.createElement("input"); element.type = "checkbox"; labelElement.appendChild(element); labelElement.appendChild(document.createTextNode(title)); return labelElement; }, _createLauncherUI: function(sortedCategories) { this._headerElement = document.createElement("h1"); this._headerElement.textContent = WebInspector.UIString("Select audits to run"); this._contentElement.appendChild(this._headerElement); function handleSelectAllClick(event) { this._selectAllClicked(event.target.checked); } var categoryElement = this._createCategoryElement(WebInspector.UIString("Select All"), ""); categoryElement.id = "audit-launcher-selectall"; this._selectAllCheckboxElement = categoryElement.firstChild; this._selectAllCheckboxElement.checked = true; this._selectAllCheckboxElement.addEventListener("click", handleSelectAllClick.bind(this), false); this._contentElement.appendChild(categoryElement); this._categoriesElement = document.createElement("div"); this._categoriesElement.className = "audit-categories-container"; this._contentElement.appendChild(this._categoriesElement); var boundCategoryClickListener = this._categoryClicked.bind(this); for (var i = 0; i < sortedCategories.length; ++i) { categoryElement = this._createCategoryElement(sortedCategories[i].displayName, sortedCategories[i].id); categoryElement.firstChild.addEventListener("click", boundCategoryClickListener, false); sortedCategories[i]._checkboxElement = categoryElement.firstChild; this._categoriesElement.appendChild(categoryElement); } this._totalCategoriesCount = this._categoriesElement.childNodes.length; this._currentCategoriesCount = 0; this._buttonContainerElement = document.createElement("div"); this._buttonContainerElement.className = "button-container"; var labelElement = document.createElement("label"); this._auditPresentStateElement = document.createElement("input"); this._auditPresentStateElement.name = "audit-mode"; this._auditPresentStateElement.type = "radio"; this._auditPresentStateElement.checked = true; this._auditPresentStateLabelElement = document.createTextNode(""); labelElement.appendChild(this._auditPresentStateElement); labelElement.appendChild(this._auditPresentStateLabelElement); this._buttonContainerElement.appendChild(labelElement); labelElement = document.createElement("label"); this.auditReloadedStateElement = document.createElement("input"); this.auditReloadedStateElement.name = "audit-mode"; this.auditReloadedStateElement.type = "radio"; labelElement.appendChild(this.auditReloadedStateElement); labelElement.appendChild(document.createTextNode("Reload Page and Audit on Load")); this._buttonContainerElement.appendChild(labelElement); this._launchButton = document.createElement("button"); this._launchButton.setAttribute("type", "button"); this._launchButton.addEventListener("click", this._launchButtonClicked.bind(this), false); this._buttonContainerElement.appendChild(this._launchButton); this._contentElement.appendChild(this._buttonContainerElement); this._selectAllClicked(this._selectAllCheckboxElement.checked); this.updateResourceTrackingState(); this._updateButton(); }, _updateButton: function() { this._launchButton.disabled = !this._currentCategoriesCount || this._auditRunning; if (this._auditRunning) this._launchButton.textContent = WebInspector.UIString("Running..."); else this._launchButton.textContent = WebInspector.UIString("Run"); }, show: function(parentElement) { WebInspector.View.prototype.show.call(this, parentElement); setTimeout(this.resize(), 0); }, resize: function() { if (this._categoriesElement) this._categoriesElement.style.height = (this._buttonContainerElement.totalOffsetTop - this._categoriesElement.totalOffsetTop) + "px"; } } WebInspector.AuditLauncherView.prototype.__proto__ = WebInspector.View.prototype;