aboutsummaryrefslogtreecommitdiff
path: root/src/js/fiveui/injected
diff options
context:
space:
mode:
authorGravatar Benjamin Jones <bjones@galois.com>2013-06-12 16:14:11 -0700
committerGravatar Benjamin Jones <bjones@galois.com>2013-06-12 16:14:11 -0700
commit0decef2093c676d91b0b590a9b94f201c4995716 (patch)
treea354b066ce621ff83367e83a0f8629a1d14d234a /src/js/fiveui/injected
parent3d1cba14c10bfe5984741aea83c2182d5a27c63e (diff)
refactored fiveui.color functions; added more unit tests!
Diffstat (limited to 'src/js/fiveui/injected')
-rw-r--r--src/js/fiveui/injected/prelude.js62
1 files changed, 38 insertions, 24 deletions
diff --git a/src/js/fiveui/injected/prelude.js b/src/js/fiveui/injected/prelude.js
index 705956a..ce27bdb 100644
--- a/src/js/fiveui/injected/prelude.js
+++ b/src/js/fiveui/injected/prelude.js
@@ -256,25 +256,32 @@ fiveui.color.colorCheck = function (selector, colorSet) {
// function expression ?!?
};
-/**
- * Convert a base-10 byte to a zero padded hex byte.
- */
-fiveui.color.componentToHex = function (c) {
- var hex = c.toString(16).toUpperCase();
- return hex.length == 1 ? "0" + hex : hex;
+componentToHex = function (c) {
+ var hex = c.toString(16).toUpperCase();
+ return hex.length == 1 ? "0" + hex : hex;
}
+shortHexToHex = function (color) {
+ var have = color.length - 1;
+ var haveDigits = color.substr(1, color.length);
+ var need = 6 - have;
+ var reps = Math.ceil(need / have);
+ var i, strColor;
+ for (i = 0, stdColor = color; i < reps; i += 1) { stdColor += haveDigits; }
+ return stdColor.substr(0, 7);
+};
+
/**
* Convert RGB values to Hex.
*/
fiveui.color.rgbToHex = function (r, g, b) {
- return "#" + componentToHex(r) + componentToHex(g) + componentToHex(b);
+ return "#" + componentToHex(r) + componentToHex(g) + componentToHex(b);
}
/**
* Convert a 3-byte hex value to base-10 RGB
*/
-fiveui.color.hexToRgb = function (hex) {
+fiveui.color.hexToRGB = function (hex) {
var result = /^#?([a-f\d]{2})([a-f\d]{2})([a-f\d]{2})$/i.exec(hex);
return result ? {
r: parseInt(result[1], 16),
@@ -295,36 +302,43 @@ fiveui.color.hexToRgb = function (hex) {
* @throws {ParseError} if the rgb color string cannot be parsed
*/
fiveui.color.colorToHex = function(color) {
- var have, need;
if (color.substr(0, 1) === '#') {
if (color.length === 7) {
return color;
}
else { // deal with #0 or #F7 cases
- var have = color.length - 1;
- var haveDigits = color.substr(1, color.length);
- var need = 6 - have;
- var reps = Math.ceil(need / have);
- var i, strColor;
- for (i = 0, stdColor = color; i < reps; i += 1) { stdColor += haveDigits; }
- return stdColor.substr(0, 7);
+ return shortHexToHex(color);
}
}
+ else { // color == 'rgb...'
+ var c = fiveui.color.colorToRGB(color)
+ return fiveui.color.rgbToHex(c.r, c.g, c.b);
+ }
+};
+
+/**
+ * Covert color to RGB color object.
+ *
+ * @param {!String} color The color string to convert. This should be either of the form rgb(...) or #...
+ * @returns {!Object} An RGB color object with attributes: r, g, b
+ * @throws {ParseError} if the rgb color string cannot be parsed
+ */
+fiveui.color.colorToRGB = function(color) {
+
+ if (color.substr(0, 1) === '#') {
+ return fiveui.color.hexToRGB(fiveui.color.colorToHex(color));
+ }
var digits = /rgba?\((\d+), (\d+), (\d+)/.exec(color);
if (!digits) {
- return color; // in case there is a parse error, we just
- // return the input unchanged
+ throw new ParseError('could not parse color string: ' + color);
}
- var r = parseInt(digits[1]);
- var g = parseInt(digits[2]);
- var b = parseInt(digits[3]);
-
- return fiveui.color.rgbToHex(r, g, b);
+ return { r: parseInt(digits[1]),
+ g: parseInt(digits[2]),
+ b: parseInt(digits[3]) };
};
-
/**
* Utilities for dealing with fonts.
*