-
-
Notifications
You must be signed in to change notification settings - Fork 114
/
Copy pathcompare.ts
32 lines (26 loc) · 1.34 KB
/
compare.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
import { hexToRgba } from "./convert";
import { ObjectColor } from "../types";
export const equalColorObjects = (first: ObjectColor, second: ObjectColor): boolean => {
if (first === second) return true;
for (const prop in first) {
// The following allows for a type-safe calling of this function (first & second have to be HSL, HSV, or RGB)
// with type-unsafe iterating over object keys. TS does not allow this without an index (`[key: string]: number`)
// on an object to define how iteration is normally done. To ensure extra keys are not allowed on our types,
// we must cast our object to unknown (as RGB demands `r` be a key, while `Record<string, x>` does not care if
// there is or not), and then as a type TS can iterate over.
if (
((first as unknown) as Record<string, number>)[prop] !==
((second as unknown) as Record<string, number>)[prop]
)
return false;
}
return true;
};
export const equalColorString = (first: string, second: string): boolean => {
return first.replace(/\s/g, "") === second.replace(/\s/g, "");
};
export const equalHex = (first: string, second: string): boolean => {
if (first.toLowerCase() === second.toLowerCase()) return true;
// To compare colors like `#FFF` and `ffffff` we convert them into RGB objects
return equalColorObjects(hexToRgba(first), hexToRgba(second));
};