Skip to content

Commit e4bc34e

Browse files
authored
formatHex8 (#103)
* formatHex8 * adopt template literals
1 parent ac660c6 commit e4bc34e

File tree

2 files changed

+24
-7
lines changed

2 files changed

+24
-7
lines changed

src/color.js

+17-7
Original file line numberDiff line numberDiff line change
@@ -9,12 +9,12 @@ var reI = "\\s*([+-]?\\d+)\\s*",
99
reN = "\\s*([+-]?(?:\\d*\\.)?\\d+(?:[eE][+-]?\\d+)?)\\s*",
1010
reP = "\\s*([+-]?(?:\\d*\\.)?\\d+(?:[eE][+-]?\\d+)?)%\\s*",
1111
reHex = /^#([0-9a-f]{3,8})$/,
12-
reRgbInteger = new RegExp("^rgb\\(" + [reI, reI, reI] + "\\)$"),
13-
reRgbPercent = new RegExp("^rgb\\(" + [reP, reP, reP] + "\\)$"),
14-
reRgbaInteger = new RegExp("^rgba\\(" + [reI, reI, reI, reN] + "\\)$"),
15-
reRgbaPercent = new RegExp("^rgba\\(" + [reP, reP, reP, reN] + "\\)$"),
16-
reHslPercent = new RegExp("^hsl\\(" + [reN, reP, reP] + "\\)$"),
17-
reHslaPercent = new RegExp("^hsla\\(" + [reN, reP, reP, reN] + "\\)$");
12+
reRgbInteger = new RegExp(`^rgb\\(${reI},${reI},${reI}\\)$`),
13+
reRgbPercent = new RegExp(`^rgb\\(${reP},${reP},${reP}\\)$`),
14+
reRgbaInteger = new RegExp(`^rgba\\(${reI},${reI},${reI},${reN}\\)$`),
15+
reRgbaPercent = new RegExp(`^rgba\\(${reP},${reP},${reP},${reN}\\)$`),
16+
reHslPercent = new RegExp(`^hsl\\(${reN},${reP},${reP}\\)$`),
17+
reHslaPercent = new RegExp(`^hsla\\(${reN},${reP},${reP},${reN}\\)$`);
1818

1919
var named = {
2020
aliceblue: 0xf0f8ff,
@@ -176,6 +176,7 @@ define(Color, color, {
176176
},
177177
hex: color_formatHex, // Deprecated! Use color.formatHex.
178178
formatHex: color_formatHex,
179+
formatHex8: color_formatHex8,
179180
formatHsl: color_formatHsl,
180181
formatRgb: color_formatRgb,
181182
toString: color_formatRgb
@@ -185,6 +186,10 @@ function color_formatHex() {
185186
return this.rgb().formatHex();
186187
}
187188

189+
function color_formatHex8() {
190+
return this.rgb().formatHex8();
191+
}
192+
188193
function color_formatHsl() {
189194
return hslConvert(this).formatHsl();
190195
}
@@ -262,12 +267,17 @@ define(Rgb, rgb, extend(Color, {
262267
},
263268
hex: rgb_formatHex, // Deprecated! Use color.formatHex.
264269
formatHex: rgb_formatHex,
270+
formatHex8: rgb_formatHex8,
265271
formatRgb: rgb_formatRgb,
266272
toString: rgb_formatRgb
267273
}));
268274

269275
function rgb_formatHex() {
270-
return "#" + hex(this.r) + hex(this.g) + hex(this.b);
276+
return `#${hex(this.r)}${hex(this.g)}${hex(this.b)}`;
277+
}
278+
279+
function rgb_formatHex8() {
280+
return `#${hex(this.r)}${hex(this.g)}${hex(this.b)}${hex((isNaN(this.opacity) ? 1 : this.opacity) * 255)}`;
271281
}
272282

273283
function rgb_formatRgb() {

test/rgb-test.js

+7
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,13 @@ it("rgb.formatHex() formats as #rrggbb", () => {
4646
assert.strictEqual(rgb("hsla(60, 100%, 20%, 0.4)").formatHex(), "#666600");
4747
});
4848

49+
it("rgb.formatHex8() formats as #rrggbbaa", () => {
50+
assert.strictEqual(rgb("#abcdef").formatHex8(), "#abcdefff");
51+
assert.strictEqual(rgb("hsl(60, 100%, 20%)").formatHex8(), "#666600ff");
52+
assert.strictEqual(rgb("rgba(12%, 34%, 56%, 0.4)").formatHex8(), "#1f578f66");
53+
assert.strictEqual(rgb("hsla(60, 100%, 20%, 0.4)").formatHex8(), "#66660066");
54+
});
55+
4956
it("rgb.hex() is an alias for rgb.formatHex()", () => {
5057
assert.strictEqual(color.prototype.hex, color.prototype.formatHex);
5158
assert.strictEqual(rgb.prototype.hex, rgb.prototype.formatHex);

0 commit comments

Comments
 (0)