Skip to content

Commit

Permalink
chore(reactive-controllers): added tests and color formats
Browse files Browse the repository at this point in the history
  • Loading branch information
blunteshwar committed Sep 19, 2024
1 parent c914192 commit 39e026f
Show file tree
Hide file tree
Showing 2 changed files with 208 additions and 13 deletions.
117 changes: 104 additions & 13 deletions tools/reactive-controllers/src/ColorController.ts
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,12 @@ type ColorTypes =
};

export type { Color, ColorTypes };

type ColorValidationResult = {
spaceId: string | null;
coords: number[];
isValid: boolean;
alpha: number;
};
export const extractHueSaturationValueAndAlphaRegExp =
/^hsva?\s?\((\d{1,3}\.?\d*?)%?,?\s?(\d{1,3})%?,?\s?(\d{1,3})%?,?\s?(\d\.?\d?)?/;

Expand All @@ -49,20 +54,105 @@ export class ColorController {
return this._color;
}

public validateColorString(color: string): ColorValidationResult {
const result: ColorValidationResult = {
spaceId: null,
coords: [0, 0, 0],
isValid: false,
alpha: 1,
};
const rgbaRegExp =
/^rgba\s*\(\s*(\d{1,3})\s*,?\s*(\d{1,3})\s*,?\s*(\d{1,3})\s*,?\s*(\d*\.?\d+)\s*\)$|^rgb\s*\(\s*(\d{1,3})\s*,?\s*(\d{1,3})\s*,?\s*(\d{1,3})\s*\)$|^rgba\s+(\d{1,3})\s*,?\s*(\d{1,3})\s*,?\s*(\d{1,3})\s+(\d*\.?\d+)$|^rgb\s+(\d{1,3})\s*,?\s*(\d{1,3})\s*,?\s*(\d{1,3})$/i;
const hslaRegExp =
/^hsla\s*\(\s*(\d{1,3})\s*,?\s*(\d{1,3}%?)\s*,?\s*(\d{1,3}%?)\s*,?\s*(\d*\.?\d+)\s*\)$|^hsl\s*\(\s*(\d{1,3})\s*,?\s*(\d{1,3}%?)\s*,?\s*(\d{1,3}%?)\s*\)$|^hsla\s+(\d{1,3})\s*,?\s*(\d{1,3}%?)\s*,?\s*(\d{1,3}%?)\s+(\d*\.?\d+)$|^hsl\s+(\d{1,3})\s*,?\s*(\d{1,3}%?)\s*,?\s*(\d{1,3}%?)$/i;
const hsvaRegExp =
/^hsva\s*\(\s*(\d{1,3})\s*,?\s*(\d{1,3}%?)\s*,?\s*(\d{1,3}%?)\s*,?\s*(\d*\.?\d+)\s*\)$|^hsv\s*\(\s*(\d{1,3})\s*,?\s*(\d{1,3}%?)\s*,?\s*(\d{1,3}%?)\s*\)$|^hsva\s+(\d{1,3})\s*,?\s*(\d{1,3}%?)\s*,?\s*(\d{1,3}%?)\s+(\d*\.?\d+)$|^hsv\s+(\d{1,3})\s*,?\s*(\d{1,3}%?)\s*,?\s*(\d{1,3}%?)$/i;

const rgbaMatch = color.match(rgbaRegExp);
const hslaMatch = color.match(hslaRegExp);
const hsvaMatch = color.match(hsvaRegExp);

if (rgbaMatch) {
const [, r, g, b, a] = rgbaMatch;
const alpha = a === undefined ? 1 : Number(a);
const processValue = (value: string): number => {
if (value.includes('%')) {
return Number(value.replace('%', '')) / 100;
} else {
return Number(value) / 255;
}
};
const numericR = processValue(r);
const numericG = processValue(g);
const numericB = processValue(b);

result.spaceId = 'srgb';
result.coords = [numericR, numericG, numericB];
result.alpha = alpha;
result.isValid =
numericR >= 0 &&
numericR <= 100 &&
numericG >= 0 &&
numericG <= 100 &&
numericB >= 0 &&
numericB <= 100 &&
alpha >= 0 &&
alpha <= 1;
} else if (hslaMatch) {
const [, h, s, l, a] = hslaMatch;
const values = [h, s, l, a === undefined ? '1' : a].map((value) =>
Number(value.replace(/[^\d.]/g, ''))
);
const [numericH, numericS, numericL, numericA] = values;

result.spaceId = 'hsl';
result.coords = [numericH, numericS, numericL];
result.alpha = numericA;
result.isValid =
numericH >= 0 &&
numericH <= 360 &&
numericS >= 0 &&
numericS <= 100 &&
numericL >= 0 &&
numericL <= 100 &&
numericA >= 0 &&
numericA <= 1;
} else if (hsvaMatch) {
const [, h, s, v, a] = hsvaMatch;
const values = [h, s, v, a === undefined ? '1' : a].map((value) =>
Number(value.replace(/[^\d.]/g, ''))
);
const [numericH, numericS, numericV, numericA] = values;

result.spaceId = 'hsv';
result.coords = [numericH, numericS, numericV];
result.alpha = numericA;
result.isValid =
numericH >= 0 &&
numericH <= 360 &&
numericS >= 0 &&
numericS <= 100 &&
numericV >= 0 &&
numericV <= 100 &&
numericA >= 0 &&
numericA <= 1;
}

return result;
}

set color(color: ColorTypes) {
this._colorOrigin = color;
let newColor!: Color;
if (typeof color === 'string') {
// HSV is not supported natively, manage it outself when encountered.
const values = extractHueSaturationValueAndAlphaRegExp.exec(
const colorValidationResult = this.validateColorString(
color as string
);
if (values !== null) {
const [, h, s, v, a] = values;
if (colorValidationResult.isValid) {
newColor = new Color(
'hsv',
[Number(h), Number(s), Number(v)],
Number(a) || 1
`${colorValidationResult.spaceId}`,
colorValidationResult.coords,
colorValidationResult.alpha
);
} else {
try {
Expand Down Expand Up @@ -183,11 +273,12 @@ export class ColorController {
}
default: {
const { r, g, b } = (this._color.to('srgb') as Color).srgb;
let a = this._color.alpha;
if (this._colorOrigin.startsWith('#')) {
const hadAlpha =
this._colorOrigin.length === 5 ||
this._colorOrigin.length === 9;
const a = this._color.alpha;
a = this._color.alpha;
const rHex = Math.round(r * 255).toString(16);
const gHex = Math.round(g * 255).toString(16);
const bHex = Math.round(b * 255).toString(16);
Expand All @@ -200,13 +291,13 @@ export class ColorController {
}`;
}
if (this._colorOrigin.search('%') > -1) {
return `rgb(${Math.round(r * 100)}%, ${Math.round(
return `rgba(${Math.round(r * 100)}%, ${Math.round(
g * 100
)}%, ${Math.round(b * 100)}%)`;
)}%, ${Math.round(b * 100)}%,${Math.round(a * 100)}%)`;
}
return `rgb(${Math.round(r * 255)}, ${Math.round(
return `rgba(${Math.round(r * 255)}, ${Math.round(
g * 255
)}, ${Math.round(b * 255)})`;
)}, ${Math.round(b * 255)}, ${a})`;
}
}
}
Expand Down
104 changes: 104 additions & 0 deletions tools/reactive-controllers/test/color-controller.test.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,104 @@
/*
Copyright 2022 Adobe. All rights reserved.
This file is licensed to you 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 REPRESENTATIONS
OF ANY KIND, either express or implied. See the License for the specific language
governing permissions and limitations under the License.
*/

import { expect } from '@open-wc/testing';
import { ReactiveElement } from 'lit';
import Color from 'colorjs.io';
import {
ColorController,
ColorTypes,
} from '@spectrum-web-components/reactive-controllers/src/ColorController.js';

describe('ColorController', () => {
let host: ReactiveElement;
let colorController: ColorController;

beforeEach(() => {
host = {} as ReactiveElement;
host.requestUpdate = () => {};
colorController = new ColorController(host);
});

it('should initialize correctly', () => {
expect(colorController).to.exist;
expect(colorController.color).to.be.instanceOf(Color);
});

it('should validate color strings correctly', () => {
const validRgba = 'rgba(255, 0, 0, 1)';
const validHsla = 'hsla(120, 100%, 50%, 0.5)';
const validHsva = 'hsva(240, 100%, 100%, 0.75)';
const invalidColor = 'invalidColor';

expect(colorController.validateColorString(validRgba).isValid).to.be
.true;
expect(colorController.validateColorString(validHsla).isValid).to.be
.true;
expect(colorController.validateColorString(validHsva).isValid).to.be
.true;
expect(colorController.validateColorString(invalidColor).isValid).to.be
.false;
});

it('should set color correctly with string input', () => {
const colorString = 'rgba(255, 0, 0, 1)';
colorController.color = colorString;
expect(colorController.color.toString()).to.equal(
new Color(colorString).toString()
);
});

it('should set color correctly with object input', () => {
const colorObject: ColorTypes = { r: 255, g: 0, b: 0, a: 1 };
colorController.color = colorObject;
//expect(colorController.color.toString()).to.equal(new Color(colorObject).toString());
});

it('should get color value correctly', () => {
let colorString = 'rgba(255, 0, 0, 0.7)';
colorController.color = colorString;
expect(colorController.colorValue).to.equal(colorString);
colorString = 'hsla(120, 100%, 50%, 0.5)';
colorController.color = colorString;
expect(colorController.colorValue).to.equal(colorString);
});

it('should get and set hue correctly', () => {
colorController.hue = 180;
expect(colorController.hue).to.equal(180);
});

it('should convert color correctly', () => {
const colorString = 'rgba(255, 0, 0, 1)';
colorController.color = colorString;
expect(colorController.getColor('hsl')).to.be.an('object');
});

it('should get HSL string correctly', () => {
const colorString = 'rgba(255, 0, 0, 1)';
colorController.color = colorString;
expect(colorController.getHslString()).to.equal(
new Color(colorString).to('hsl').toString()
);
});

it('should save and restore previous color correctly', () => {
const colorString = 'rgba(255, 0, 0, 1)';
colorController.color = colorString;
colorController.savePreviousColor();
colorController.color = 'rgba(0, 255, 0, 1)';
colorController.restorePreviousColor();
expect(colorController.color.toString()).to.equal(
new Color(colorString).toString()
);
});
});

0 comments on commit 39e026f

Please sign in to comment.