123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528 |
- // Copyright 2008 The Closure Library Authors. All Rights Reserved.
- //
- // Licensed under the Apache License, Version 2.0 (the "License");
- // you may not use this file except in compliance with the License.
- // You may obtain a copy of the License at
- //
- // http://www.apache.org/licenses/LICENSE-2.0
- //
- // Unless required by applicable law or agreed to in writing, software
- // distributed under the License is distributed on an "AS-IS" BASIS,
- // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- // See the License for the specific language governing permissions and
- // limitations under the License.
- /**
- * @fileoverview An HSV (hue/saturation/value) color palette/picker
- * implementation. Inspired by examples like
- * http://johndyer.name/lab/colorpicker/ and the author's initial work. This
- * control allows for more control in picking colors than a simple swatch-based
- * palette. Without the styles from the demo css file, only a hex color label
- * and input field show up.
- *
- * @author arv@google.com (Erik Arvidsson)
- * @see ../demos/hsvpalette.html
- */
- goog.provide('goog.ui.HsvPalette');
- goog.require('goog.color');
- goog.require('goog.dom.InputType');
- goog.require('goog.dom.TagName');
- goog.require('goog.events');
- goog.require('goog.events.EventType');
- goog.require('goog.events.InputHandler');
- goog.require('goog.style');
- goog.require('goog.style.bidi');
- goog.require('goog.ui.Component');
- goog.require('goog.userAgent');
- /**
- * Creates an HSV palette. Allows a user to select the hue, saturation and
- * value/brightness.
- * @param {goog.dom.DomHelper=} opt_domHelper Optional DOM helper.
- * @param {string=} opt_color Optional initial color (default is red).
- * @param {string=} opt_class Optional base for creating classnames (default is
- * goog.getCssName('goog-hsv-palette')).
- * @extends {goog.ui.Component}
- * @constructor
- */
- goog.ui.HsvPalette = function(opt_domHelper, opt_color, opt_class) {
- goog.ui.Component.call(this, opt_domHelper);
- this.setColorInternal(opt_color || '#f00');
- /**
- * The base class name for the component.
- * @type {string}
- * @protected
- */
- this.className = opt_class || goog.getCssName('goog-hsv-palette');
- /**
- * The document which is being listened to.
- * type {HTMLDocument}
- * @private
- */
- this.document_ = this.getDomHelper().getDocument();
- };
- goog.inherits(goog.ui.HsvPalette, goog.ui.Component);
- // TODO(user): Make this inherit from goog.ui.Control and split this into
- // a control and a renderer.
- goog.tagUnsealableClass(goog.ui.HsvPalette);
- /**
- * @desc Label for an input field where a user can enter a hexadecimal color
- * specification, such as #ff0000 for red.
- * @private
- */
- goog.ui.HsvPalette.MSG_HSV_PALETTE_HEX_COLOR_ = goog.getMsg('Hex color');
- /**
- * DOM element representing the hue/saturation background image.
- * @type {HTMLElement}
- * @private
- */
- goog.ui.HsvPalette.prototype.hsImageEl_;
- /**
- * DOM element representing the hue/saturation handle.
- * @type {HTMLElement}
- * @private
- */
- goog.ui.HsvPalette.prototype.hsHandleEl_;
- /**
- * DOM element representing the value background image.
- * @type {HTMLElement}
- * @protected
- */
- goog.ui.HsvPalette.prototype.valueBackgroundImageElement;
- /**
- * DOM element representing the value handle.
- * @type {HTMLElement}
- * @private
- */
- goog.ui.HsvPalette.prototype.vHandleEl_;
- /**
- * DOM element representing the current color swatch.
- * @type {Element}
- * @protected
- */
- goog.ui.HsvPalette.prototype.swatchElement;
- /**
- * DOM element representing the hex color input text field.
- * @type {Element}
- * @protected
- */
- goog.ui.HsvPalette.prototype.inputElement;
- /**
- * Input handler object for the hex value input field.
- * @type {goog.events.InputHandler}
- * @private
- */
- goog.ui.HsvPalette.prototype.inputHandler_;
- /**
- * Listener key for the mousemove event (during a drag operation).
- * @type {goog.events.Key}
- * @protected
- */
- goog.ui.HsvPalette.prototype.mouseMoveListener;
- /**
- * Listener key for the mouseup event (during a drag operation).
- * @type {goog.events.Key}
- * @protected
- */
- goog.ui.HsvPalette.prototype.mouseUpListener;
- /** @private {!goog.color.Hsv} */
- goog.ui.HsvPalette.prototype.hsv_;
- /**
- * Hex representation of the color.
- * @protected {string}
- */
- goog.ui.HsvPalette.prototype.color;
- /**
- * Gets the color that is currently selected in this color picker.
- * @return {string} The string of the selected color.
- */
- goog.ui.HsvPalette.prototype.getColor = function() {
- return this.color;
- };
- /**
- * Alpha transparency of the currently selected color, in [0, 1].
- * For the HSV palette this always returns 1. The HSVA palette overrides
- * this method.
- * @return {number} The current alpha value.
- */
- goog.ui.HsvPalette.prototype.getAlpha = function() {
- return 1;
- };
- /**
- * Updates the text entry field.
- * @protected
- */
- goog.ui.HsvPalette.prototype.updateInput = function() {
- var parsed;
- try {
- parsed = goog.color.parse(this.inputElement.value).hex;
- } catch (e) {
- // ignore
- }
- if (this.color != parsed) {
- this.inputElement.value = this.color;
- }
- };
- /**
- * Sets which color is selected and update the UI.
- * @param {string} color The selected color.
- */
- goog.ui.HsvPalette.prototype.setColor = function(color) {
- if (color != this.color) {
- this.setColorInternal(color);
- this.updateUi();
- this.dispatchEvent(goog.ui.Component.EventType.ACTION);
- }
- };
- /**
- * Sets which color is selected.
- * @param {string} color The selected color.
- * @protected
- */
- goog.ui.HsvPalette.prototype.setColorInternal = function(color) {
- var rgbHex = goog.color.parse(color).hex;
- var rgbArray = goog.color.hexToRgb(rgbHex);
- this.hsv_ = goog.color.rgbArrayToHsv(rgbArray);
- // Hue is divided by 360 because the documentation for goog.color is currently
- // incorrect.
- // TODO(user): Fix this, see http://1324469 .
- this.hsv_[0] = this.hsv_[0] / 360;
- this.color = rgbHex;
- };
- /**
- * Alters the hue, saturation, and/or value of the currently selected color and
- * updates the UI.
- * @param {?number=} opt_hue (optional) hue in [0, 1].
- * @param {?number=} opt_saturation (optional) saturation in [0, 1].
- * @param {?number=} opt_value (optional) value in [0, 255].
- */
- goog.ui.HsvPalette.prototype.setHsv = function(
- opt_hue, opt_saturation, opt_value) {
- if (opt_hue != null || opt_saturation != null || opt_value != null) {
- this.setHsv_(opt_hue, opt_saturation, opt_value);
- this.updateUi();
- this.dispatchEvent(goog.ui.Component.EventType.ACTION);
- }
- };
- /**
- * Alters the hue, saturation, and/or value of the currently selected color.
- * @param {?number=} opt_hue (optional) hue in [0, 1].
- * @param {?number=} opt_saturation (optional) saturation in [0, 1].
- * @param {?number=} opt_value (optional) value in [0, 255].
- * @private
- */
- goog.ui.HsvPalette.prototype.setHsv_ = function(
- opt_hue, opt_saturation, opt_value) {
- this.hsv_[0] = (opt_hue != null) ? opt_hue : this.hsv_[0];
- this.hsv_[1] = (opt_saturation != null) ? opt_saturation : this.hsv_[1];
- this.hsv_[2] = (opt_value != null) ? opt_value : this.hsv_[2];
- // Hue is multiplied by 360 because the documentation for goog.color is
- // currently incorrect.
- // TODO(user): Fix this, see http://1324469 .
- this.color = goog.color.hsvArrayToHex(
- [this.hsv_[0] * 360, this.hsv_[1], this.hsv_[2]]);
- };
- /**
- * HsvPalettes cannot be used to decorate pre-existing html, since the
- * structure they build is fairly complicated.
- * @param {Element} element Element to decorate.
- * @return {boolean} Returns always false.
- * @override
- */
- goog.ui.HsvPalette.prototype.canDecorate = function(element) {
- return false;
- };
- /** @override */
- goog.ui.HsvPalette.prototype.createDom = function() {
- var dom = this.getDomHelper();
- var noalpha = (goog.userAgent.IE && !goog.userAgent.isVersionOrHigher('7')) ?
- ' ' + goog.getCssName(this.className, 'noalpha') :
- '';
- var backdrop = dom.createDom(
- goog.dom.TagName.DIV, goog.getCssName(this.className, 'hs-backdrop'));
- this.hsHandleEl_ = /** @type {!HTMLElement} */ (
- dom.createDom(
- goog.dom.TagName.DIV, goog.getCssName(this.className, 'hs-handle')));
- this.hsImageEl_ = /** @type {!HTMLElement} */ (
- dom.createDom(
- goog.dom.TagName.DIV, goog.getCssName(this.className, 'hs-image'),
- this.hsHandleEl_));
- this.valueBackgroundImageElement = /** @type {!HTMLElement} */ (
- dom.createDom(
- goog.dom.TagName.DIV, goog.getCssName(this.className, 'v-image')));
- this.vHandleEl_ = /** @type {!HTMLElement} */ (
- dom.createDom(
- goog.dom.TagName.DIV, goog.getCssName(this.className, 'v-handle')));
- this.swatchElement = dom.createDom(
- goog.dom.TagName.DIV, goog.getCssName(this.className, 'swatch'));
- this.inputElement = dom.createDom(goog.dom.TagName.INPUT, {
- 'class': goog.getCssName(this.className, 'input'),
- 'aria-label': goog.ui.HsvPalette.MSG_HSV_PALETTE_HEX_COLOR_,
- 'type': goog.dom.InputType.TEXT,
- 'dir': 'ltr'
- });
- var labelElement =
- dom.createDom(goog.dom.TagName.LABEL, null, this.inputElement);
- var element = dom.createDom(
- goog.dom.TagName.DIV, this.className + noalpha, backdrop, this.hsImageEl_,
- this.valueBackgroundImageElement, this.vHandleEl_, this.swatchElement,
- labelElement);
- this.setElementInternal(element);
- // TODO(arv): Set tabIndex
- };
- /**
- * Renders the color picker inside the provided element. This will override the
- * current content of the element.
- * @override
- */
- goog.ui.HsvPalette.prototype.enterDocument = function() {
- goog.ui.HsvPalette.superClass_.enterDocument.call(this);
- // TODO(user): Accessibility.
- this.updateUi();
- var handler = this.getHandler();
- handler.listen(
- this.getElement(), goog.events.EventType.MOUSEDOWN, this.handleMouseDown);
- // Cannot create InputHandler in createDom because IE throws an exception
- // on document.activeElement
- if (!this.inputHandler_) {
- this.inputHandler_ = new goog.events.InputHandler(this.inputElement);
- }
- handler.listen(
- this.inputHandler_, goog.events.InputHandler.EventType.INPUT,
- this.handleInput);
- };
- /** @override */
- goog.ui.HsvPalette.prototype.disposeInternal = function() {
- goog.ui.HsvPalette.superClass_.disposeInternal.call(this);
- delete this.hsImageEl_;
- delete this.hsHandleEl_;
- delete this.valueBackgroundImageElement;
- delete this.vHandleEl_;
- delete this.swatchElement;
- delete this.inputElement;
- if (this.inputHandler_) {
- this.inputHandler_.dispose();
- delete this.inputHandler_;
- }
- goog.events.unlistenByKey(this.mouseMoveListener);
- goog.events.unlistenByKey(this.mouseUpListener);
- };
- /**
- * Updates the position, opacity, and styles for the UI representation of the
- * palette.
- * @protected
- */
- goog.ui.HsvPalette.prototype.updateUi = function() {
- if (this.isInDocument()) {
- var h = this.hsv_[0];
- var s = this.hsv_[1];
- var v = this.hsv_[2];
- var left = this.hsImageEl_.offsetWidth * h;
- // We don't use a flipped gradient image in RTL, so we need to flip the
- // offset in RTL so that it still hovers over the correct color on the
- // gradiant.
- if (this.isRightToLeft()) {
- left = this.hsImageEl_.offsetWidth - left;
- }
- // We also need to account for the handle size.
- var handleOffset = Math.ceil(this.hsHandleEl_.offsetWidth / 2);
- left -= handleOffset;
- var top = this.hsImageEl_.offsetHeight * (1 - s);
- // Account for the handle size.
- top -= Math.ceil(this.hsHandleEl_.offsetHeight / 2);
- goog.style.bidi.setPosition(
- this.hsHandleEl_, left, top, this.isRightToLeft());
- top = this.valueBackgroundImageElement.offsetTop -
- Math.floor(this.vHandleEl_.offsetHeight / 2) +
- this.valueBackgroundImageElement.offsetHeight * ((255 - v) / 255);
- this.vHandleEl_.style.top = top + 'px';
- goog.style.setOpacity(this.hsImageEl_, (v / 255));
- goog.style.setStyle(
- this.valueBackgroundImageElement, 'background-color',
- goog.color.hsvToHex(this.hsv_[0] * 360, this.hsv_[1], 255));
- goog.style.setStyle(this.swatchElement, 'background-color', this.color);
- goog.style.setStyle(
- this.swatchElement, 'color',
- (this.hsv_[2] > 255 / 2) ? '#000' : '#fff');
- this.updateInput();
- }
- };
- /**
- * Handles mousedown events on palette UI elements.
- * @param {goog.events.BrowserEvent} e Event object.
- * @protected
- */
- goog.ui.HsvPalette.prototype.handleMouseDown = function(e) {
- if (e.target == this.valueBackgroundImageElement ||
- e.target == this.vHandleEl_) {
- // Setup value change listeners
- var b = goog.style.getBounds(this.valueBackgroundImageElement);
- this.handleMouseMoveV_(b, e);
- this.mouseMoveListener = goog.events.listen(
- this.document_, goog.events.EventType.MOUSEMOVE,
- goog.bind(this.handleMouseMoveV_, this, b));
- this.mouseUpListener = goog.events.listen(
- this.document_, goog.events.EventType.MOUSEUP, this.handleMouseUp,
- false, this);
- } else if (e.target == this.hsImageEl_ || e.target == this.hsHandleEl_) {
- // Setup hue/saturation change listeners
- var b = goog.style.getBounds(this.hsImageEl_);
- this.handleMouseMoveHs_(b, e);
- this.mouseMoveListener = goog.events.listen(
- this.document_, goog.events.EventType.MOUSEMOVE,
- goog.bind(this.handleMouseMoveHs_, this, b));
- this.mouseUpListener = goog.events.listen(
- this.document_, goog.events.EventType.MOUSEUP, this.handleMouseUp,
- false, this);
- }
- };
- /**
- * Handles mousemove events on the document once a drag operation on the value
- * slider has started.
- * @param {goog.math.Rect} b Boundaries of the value slider object at the start
- * of the drag operation.
- * @param {goog.events.BrowserEvent} e Event object.
- * @private
- */
- goog.ui.HsvPalette.prototype.handleMouseMoveV_ = function(b, e) {
- e.preventDefault();
- var vportPos = this.getDomHelper().getDocumentScroll();
- var height =
- Math.min(Math.max(vportPos.y + e.clientY, b.top), b.top + b.height);
- var newV = Math.round(255 * (b.top + b.height - height) / b.height);
- this.setHsv(null, null, newV);
- };
- /**
- * Handles mousemove events on the document once a drag operation on the
- * hue/saturation slider has started.
- * @param {goog.math.Rect} b Boundaries of the value slider object at the start
- * of the drag operation.
- * @param {goog.events.BrowserEvent} e Event object.
- * @private
- */
- goog.ui.HsvPalette.prototype.handleMouseMoveHs_ = function(b, e) {
- e.preventDefault();
- var vportPos = this.getDomHelper().getDocumentScroll();
- var newH =
- (Math.min(Math.max(vportPos.x + e.clientX, b.left), b.left + b.width) -
- b.left) /
- b.width;
- var newS =
- (-Math.min(Math.max(vportPos.y + e.clientY, b.top), b.top + b.height) +
- b.top + b.height) /
- b.height;
- this.setHsv(newH, newS, null);
- };
- /**
- * Handles mouseup events on the document, which ends a drag operation.
- * @param {goog.events.Event} e Event object.
- * @protected
- */
- goog.ui.HsvPalette.prototype.handleMouseUp = function(e) {
- goog.events.unlistenByKey(this.mouseMoveListener);
- goog.events.unlistenByKey(this.mouseUpListener);
- };
- /**
- * Handles input events on the hex value input field.
- * @param {goog.events.Event} e Event object.
- * @protected
- */
- goog.ui.HsvPalette.prototype.handleInput = function(e) {
- if (/^#?[0-9a-f]{6}$/i.test(this.inputElement.value)) {
- this.setColor(this.inputElement.value);
- }
- };
|