strong-arc
Version:
A visual suite for the StrongLoop API Platform
757 lines (662 loc) • 21.7 kB
JavaScript
/*
* 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.
*/
/**
* @constructor
* @extends {WebInspector.Object}
* @param {string} elementType
*/
WebInspector.StatusBarItem = function(elementType)
{
this.element = document.createElement(elementType);
this._enabled = true;
this._visible = true;
}
WebInspector.StatusBarItem.prototype = {
/**
* @param {boolean} value
*/
setEnabled: function(value)
{
if (this._enabled === value)
return;
this._enabled = value;
this.applyEnabledState();
},
/**
* @protected
*/
applyEnabledState: function()
{
this.element.disabled = !this._enabled;
},
get visible()
{
return this._visible;
},
set visible(x)
{
if (this._visible === x)
return;
this.element.classList.toggle("hidden", !x);
this._visible = x;
},
__proto__: WebInspector.Object.prototype
}
/**
* @constructor
* @extends {WebInspector.StatusBarItem}
* @param {!Array.<string>} counters
* @param {string=} className
*/
WebInspector.StatusBarCounter = function(counters, className)
{
WebInspector.StatusBarItem.call(this, "div");
this.element.className = "status-bar-item status-bar-counter hidden";
if (className)
this.element.classList.add(className);
this.element.addEventListener("click", this._clicked.bind(this), false);
/** @type {!Array.<!{element: !Element, counter: string, value: number, title: string}>} */
this._counters = [];
for (var i = 0; i < counters.length; ++i) {
var element = this.element.createChild("span", "status-bar-counter-item");
element.createChild("div", counters[i]);
element.createChild("span");
this._counters.push({counter: counters[i], element: element, value: 0, title: ""});
}
this._update();
}
WebInspector.StatusBarCounter.prototype = {
/**
* @param {string} counter
* @param {number} value
* @param {string} title
*/
setCounter: function(counter, value, title)
{
for (var i = 0; i < this._counters.length; ++i) {
if (this._counters[i].counter === counter) {
this._counters[i].value = value;
this._counters[i].title = title;
this._update();
return;
}
}
},
_update: function()
{
var total = 0;
var title = "";
for (var i = 0; i < this._counters.length; ++i) {
var counter = this._counters[i];
var value = counter.value;
if (!counter.value) {
counter.element.classList.add("hidden");
continue;
}
counter.element.classList.remove("hidden");
counter.element.classList.toggle("status-bar-counter-item-first", !total);
counter.element.querySelector("span").textContent = value;
total += value;
if (counter.title) {
if (title)
title += ", ";
title += counter.title;
}
}
this.element.classList.toggle("hidden", !total);
this.element.title = title;
},
/**
* @param {!Event} event
*/
_clicked: function(event)
{
this.dispatchEventToListeners("click");
},
__proto__: WebInspector.StatusBarItem.prototype
}
/**
* @constructor
* @extends {WebInspector.StatusBarItem}
* @param {string} text
* @param {string=} className
*/
WebInspector.StatusBarText = function(text, className)
{
WebInspector.StatusBarItem.call(this, "span");
this.element.className = "status-bar-item status-bar-text";
if (className)
this.element.classList.add(className);
this.element.textContent = text;
}
WebInspector.StatusBarText.prototype = {
/**
* @param {string} text
*/
setText: function(text)
{
this.element.textContent = text;
},
__proto__: WebInspector.StatusBarItem.prototype
}
/**
* @constructor
* @extends {WebInspector.StatusBarItem}
* @param {string=} placeholder
* @param {number=} width
*/
WebInspector.StatusBarInput = function(placeholder, width)
{
WebInspector.StatusBarItem.call(this, "input");
this.element.className = "status-bar-item";
this.element.addEventListener("input", this._onChangeCallback.bind(this), false);
if (width)
this.element.style.width = width + "px";
if (placeholder)
this.element.setAttribute("placeholder", placeholder);
this._value = "";
}
WebInspector.StatusBarInput.Event = {
TextChanged: "TextChanged"
};
WebInspector.StatusBarInput.prototype = {
/**
* @param {string} value
*/
setValue: function(value)
{
this._value = value;
this.element.value = value;
},
/**
* @return {string}
*/
value: function()
{
return this.element.value;
},
_onChangeCallback: function()
{
this.dispatchEventToListeners(WebInspector.StatusBarInput.Event.TextChanged, this.element.value);
},
__proto__: WebInspector.StatusBarItem.prototype
}
/**
* @constructor
* @extends {WebInspector.StatusBarItem}
* @param {string} title
* @param {string} className
* @param {number=} states
*/
WebInspector.StatusBarButton = function(title, className, states)
{
WebInspector.StatusBarItem.call(this, "button");
this.element.className = className + " status-bar-item";
this.element.addEventListener("click", this._clicked.bind(this), false);
this.glyph = this.element.createChild("div", "glyph");
this.glyphShadow = this.element.createChild("div", "glyph shadow");
this.states = states;
if (!states)
this.states = 2;
if (states == 2)
this._state = false;
else
this._state = 0;
this.title = title;
this.className = className;
}
WebInspector.StatusBarButton.prototype = {
_clicked: function()
{
this.dispatchEventToListeners("click");
if (this._longClickInterval) {
clearInterval(this._longClickInterval);
delete this._longClickInterval;
}
},
/**
* @override
*/
applyEnabledState: function()
{
this.element.disabled = !this._enabled;
if (this._longClickInterval) {
clearInterval(this._longClickInterval);
delete this._longClickInterval;
}
},
/**
* @return {boolean}
*/
enabled: function()
{
return this._enabled;
},
get title()
{
return this._title;
},
set title(x)
{
if (this._title === x)
return;
this._title = x;
this.element.title = x;
},
get state()
{
return this._state;
},
set state(x)
{
if (this._state === x)
return;
if (this.states === 2) {
this.element.classList.toggle("toggled-on", x);
} else {
this.element.classList.remove("toggled-" + this._state);
if (x !== 0)
this.element.classList.add("toggled-" + x);
}
this._state = x;
},
get toggled()
{
if (this.states !== 2)
throw("Only used toggled when there are 2 states, otherwise, use state");
return this.state;
},
set toggled(x)
{
if (this.states !== 2)
throw("Only used toggled when there are 2 states, otherwise, use state");
this.state = x;
},
makeLongClickEnabled: function()
{
var boundMouseDown = mouseDown.bind(this);
var boundMouseUp = mouseUp.bind(this);
this.element.addEventListener("mousedown", boundMouseDown, false);
this.element.addEventListener("mouseout", boundMouseUp, false);
this.element.addEventListener("mouseup", boundMouseUp, false);
var longClicks = 0;
this._longClickData = { mouseUp: boundMouseUp, mouseDown: boundMouseDown };
/**
* @param {!Event} e
* @this {WebInspector.StatusBarButton}
*/
function mouseDown(e)
{
if (e.which !== 1)
return;
longClicks = 0;
this._longClickInterval = setInterval(longClicked.bind(this), 200);
}
/**
* @param {!Event} e
* @this {WebInspector.StatusBarButton}
*/
function mouseUp(e)
{
if (e.which !== 1)
return;
if (this._longClickInterval) {
clearInterval(this._longClickInterval);
delete this._longClickInterval;
}
}
/**
* @this {WebInspector.StatusBarButton}
*/
function longClicked()
{
++longClicks;
this.dispatchEventToListeners(longClicks === 1 ? "longClickDown" : "longClickPress");
}
},
unmakeLongClickEnabled: function()
{
if (!this._longClickData)
return;
this.element.removeEventListener("mousedown", this._longClickData.mouseDown, false);
this.element.removeEventListener("mouseout", this._longClickData.mouseUp, false);
this.element.removeEventListener("mouseup", this._longClickData.mouseUp, false);
delete this._longClickData;
},
/**
* @param {?function():!Array.<!WebInspector.StatusBarButton>} buttonsProvider
*/
setLongClickOptionsEnabled: function(buttonsProvider)
{
if (buttonsProvider) {
if (!this._longClickOptionsData) {
this.makeLongClickEnabled();
this.longClickGlyph = this.element.createChild("div", "fill long-click-glyph");
this.longClickGlyphShadow = this.element.createChild("div", "fill long-click-glyph shadow");
var longClickDownListener = this._showOptions.bind(this);
this.addEventListener("longClickDown", longClickDownListener, this);
this._longClickOptionsData = {
glyphElement: this.longClickGlyph,
glyphShadowElement: this.longClickGlyphShadow,
longClickDownListener: longClickDownListener
};
}
this._longClickOptionsData.buttonsProvider = buttonsProvider;
} else {
if (!this._longClickOptionsData)
return;
this.element.removeChild(this._longClickOptionsData.glyphElement);
this.element.removeChild(this._longClickOptionsData.glyphShadowElement);
this.removeEventListener("longClickDown", this._longClickOptionsData.longClickDownListener, this);
delete this._longClickOptionsData;
this.unmakeLongClickEnabled();
}
},
_showOptions: function()
{
var buttons = this._longClickOptionsData.buttonsProvider();
var mainButtonClone = new WebInspector.StatusBarButton(this.title, this.className, this.states);
mainButtonClone.addEventListener("click", this._clicked, this);
mainButtonClone.state = this.state;
buttons.push(mainButtonClone);
document.documentElement.addEventListener("mouseup", mouseUp, false);
var optionsGlassPane = new WebInspector.GlassPane();
var optionsBarElement = optionsGlassPane.element.createChild("div", "alternate-status-bar-buttons-bar");
const buttonHeight = 23;
var hostButtonPosition = this.element.totalOffset();
var topNotBottom = hostButtonPosition.top + buttonHeight * buttons.length < document.documentElement.offsetHeight;
if (topNotBottom)
buttons = buttons.reverse();
optionsBarElement.style.height = (buttonHeight * buttons.length) + "px";
if (topNotBottom)
optionsBarElement.style.top = (hostButtonPosition.top + 1) + "px";
else
optionsBarElement.style.top = (hostButtonPosition.top - (buttonHeight * (buttons.length - 1))) + "px";
optionsBarElement.style.left = (hostButtonPosition.left + 1) + "px";
for (var i = 0; i < buttons.length; ++i) {
buttons[i].element.addEventListener("mousemove", mouseOver, false);
buttons[i].element.addEventListener("mouseout", mouseOut, false);
optionsBarElement.appendChild(buttons[i].element);
}
var hostButtonIndex = topNotBottom ? 0 : buttons.length - 1;
buttons[hostButtonIndex].element.classList.add("emulate-active");
function mouseOver(e)
{
if (e.which !== 1)
return;
var buttonElement = e.target.enclosingNodeOrSelfWithClass("status-bar-item");
buttonElement.classList.add("emulate-active");
}
function mouseOut(e)
{
if (e.which !== 1)
return;
var buttonElement = e.target.enclosingNodeOrSelfWithClass("status-bar-item");
buttonElement.classList.remove("emulate-active");
}
function mouseUp(e)
{
if (e.which !== 1)
return;
optionsGlassPane.dispose();
document.documentElement.removeEventListener("mouseup", mouseUp, false);
for (var i = 0; i < buttons.length; ++i) {
if (buttons[i].element.classList.contains("emulate-active")) {
buttons[i].element.classList.remove("emulate-active");
buttons[i]._clicked();
break;
}
}
}
},
__proto__: WebInspector.StatusBarItem.prototype
}
/**
* @interface
*/
WebInspector.StatusBarItem.Provider = function()
{
}
WebInspector.StatusBarItem.Provider.prototype = {
/**
* @return {?WebInspector.StatusBarItem}
*/
item: function() {}
}
/**
* @constructor
* @extends {WebInspector.StatusBarItem}
* @param {?function(!Event)} changeHandler
* @param {string=} className
*/
WebInspector.StatusBarComboBox = function(changeHandler, className)
{
WebInspector.StatusBarItem.call(this, "span");
this.element.className = "status-bar-select-container";
this._selectElement = this.element.createChild("select", "status-bar-item");
this.element.createChild("div", "status-bar-select-arrow");
if (changeHandler)
this._selectElement.addEventListener("change", changeHandler, false);
if (className)
this._selectElement.classList.add(className);
}
WebInspector.StatusBarComboBox.prototype = {
/**
* @return {!Element}
*/
selectElement: function()
{
return this._selectElement;
},
/**
* @return {number}
*/
size: function()
{
return this._selectElement.childElementCount;
},
/**
* @param {!Element} option
*/
addOption: function(option)
{
this._selectElement.appendChild(option);
},
/**
* @param {string} label
* @param {string=} title
* @param {string=} value
* @return {!Element}
*/
createOption: function(label, title, value)
{
var option = this._selectElement.createChild("option");
option.text = label;
if (title)
option.title = title;
if (typeof value !== "undefined")
option.value = value;
return option;
},
/**
* @override
*/
applyEnabledState: function()
{
this._selectElement.disabled = !this._enabled;
},
/**
* @param {!Element} option
*/
removeOption: function(option)
{
this._selectElement.removeChild(option);
},
removeOptions: function()
{
this._selectElement.removeChildren();
},
/**
* @return {?Element}
*/
selectedOption: function()
{
if (this._selectElement.selectedIndex >= 0)
return this._selectElement[this._selectElement.selectedIndex];
return null;
},
/**
* @param {!Element} option
*/
select: function(option)
{
this._selectElement.selectedIndex = Array.prototype.indexOf.call(/** @type {?} */ (this._selectElement), option);
},
/**
* @param {number} index
*/
setSelectedIndex: function(index)
{
this._selectElement.selectedIndex = index;
},
/**
* @return {number}
*/
selectedIndex: function()
{
return this._selectElement.selectedIndex;
},
__proto__: WebInspector.StatusBarItem.prototype
}
/**
* @constructor
* @extends {WebInspector.StatusBarItem}
* @param {string} title
*/
WebInspector.StatusBarCheckbox = function(title)
{
WebInspector.StatusBarItem.call(this, "label");
this.element.classList.add("status-bar-item", "checkbox");
this.inputElement = this.element.createChild("input");
this.inputElement.type = "checkbox";
this.element.createTextChild(title);
}
WebInspector.StatusBarCheckbox.prototype = {
/**
* @return {boolean}
*/
checked: function()
{
return this.inputElement.checked;
},
__proto__: WebInspector.StatusBarItem.prototype
}
/**
* @constructor
* @extends {WebInspector.StatusBarButton}
* @param {string} className
* @param {!Array.<string>} states
* @param {!Array.<string>} titles
* @param {string} initialState
* @param {!WebInspector.Setting} currentStateSetting
* @param {!WebInspector.Setting} lastStateSetting
* @param {?function(string)} stateChangedCallback
*/
WebInspector.StatusBarStatesSettingButton = function(className, states, titles, initialState, currentStateSetting, lastStateSetting, stateChangedCallback)
{
WebInspector.StatusBarButton.call(this, "", className, states.length);
var onClickBound = this._onClick.bind(this);
this.addEventListener("click", onClickBound, this);
this._states = states;
this._buttons = [];
for (var index = 0; index < states.length; index++) {
var button = new WebInspector.StatusBarButton(titles[index], className, states.length);
button.state = this._states[index];
button.addEventListener("click", onClickBound, this);
this._buttons.push(button);
}
this._currentStateSetting = currentStateSetting;
this._lastStateSetting = lastStateSetting;
this._stateChangedCallback = stateChangedCallback;
this.setLongClickOptionsEnabled(this._createOptions.bind(this));
this._currentState = null;
this.toggleState(initialState);
}
WebInspector.StatusBarStatesSettingButton.prototype = {
/**
* @param {!WebInspector.Event} e
*/
_onClick: function(e)
{
this.toggleState(e.target.state);
},
/**
* @param {string} state
*/
toggleState: function(state)
{
if (this._currentState === state)
return;
if (this._currentState)
this._lastStateSetting.set(this._currentState);
this._currentState = state;
this._currentStateSetting.set(this._currentState);
if (this._stateChangedCallback)
this._stateChangedCallback(state);
var defaultState = this._defaultState();
this.state = defaultState;
this.title = this._buttons[this._states.indexOf(defaultState)].title;
},
/**
* @return {string}
*/
_defaultState: function()
{
var lastState = this._lastStateSetting.get();
if (lastState && this._states.indexOf(lastState) >= 0 && lastState != this._currentState)
return lastState;
if (this._states.length > 1 && this._currentState === this._states[0])
return this._states[1];
return this._states[0];
},
/**
* @return {!Array.<!WebInspector.StatusBarButton>}
*/
_createOptions: function()
{
var options = [];
for (var index = 0; index < this._states.length; index++) {
if (this._states[index] !== this.state && this._states[index] !== this._currentState)
options.push(this._buttons[index]);
}
return options;
},
__proto__: WebInspector.StatusBarButton.prototype
}