Skip to content

Commit 39f4cda

Browse files
feat: common patterns infrastructure (hex color) (#72)
1 parent 91663a7 commit 39f4cda

File tree

4 files changed

+73
-0
lines changed

4 files changed

+73
-0
lines changed

package.json

+12
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,18 @@
1515
"!**/__mocks__",
1616
"!**/.*"
1717
],
18+
"exports": {
19+
".": {
20+
"require": "./lib/commonjs/index",
21+
"import": "./lib/module/index",
22+
"types": "./lib/typescript/src/index.d.ts"
23+
},
24+
"./patterns": {
25+
"require": "./lib/commonjs/patterns/index",
26+
"import": "./lib/module/patterns/index",
27+
"types": "./lib/typescript/src/patterns/index.d.ts"
28+
}
29+
},
1830
"scripts": {
1931
"test": "jest",
2032
"typecheck": "tsc --noEmit",
+22
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
import { hexColorFinder, hexColorValidator } from '..';
2+
3+
test('hexColorValidator', () => {
4+
expect(hexColorValidator).toMatchString('#ffffff');
5+
expect(hexColorValidator).toMatchString('#000');
6+
7+
expect(hexColorValidator).not.toMatchString('#000 ');
8+
expect(hexColorValidator).not.toMatchString(' #000');
9+
expect(hexColorValidator).not.toMatchString('#0');
10+
expect(hexColorValidator).not.toMatchString('#11');
11+
expect(hexColorValidator).not.toMatchString('#4444');
12+
expect(hexColorValidator).not.toMatchString('#55555');
13+
expect(hexColorValidator).not.toMatchString('#7777777');
14+
});
15+
16+
test('hexColorFinder', () => {
17+
expect(hexColorFinder).toMatchAllGroups('The color is #ffffff', [['#ffffff']]);
18+
expect(hexColorFinder).toMatchAllGroups('The colors are #1, #22, #333, #4444, #55555, #666666', [
19+
['#333'],
20+
['#666666'],
21+
]);
22+
});

src/patterns/hex-color.ts

+38
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
import { buildRegExp } from '../builders';
2+
import { endOfString, startOfString, wordBoundary } from '../constructs/anchors';
3+
import { charClass, charRange, digit } from '../constructs/character-class';
4+
import { choiceOf } from '../constructs/choice-of';
5+
import { repeat } from '../constructs/repeat';
6+
7+
const hexDigit = charClass(digit, charRange('a', 'f'));
8+
9+
/** Find hex color strings in a text. */
10+
export const hexColorFinder = buildRegExp(
11+
[
12+
'#',
13+
choiceOf(
14+
repeat(hexDigit, 6), // #rrggbb
15+
repeat(hexDigit, 3), // #rgb
16+
),
17+
wordBoundary,
18+
],
19+
{ ignoreCase: true, global: true },
20+
);
21+
22+
/**
23+
* Check that given text is a valid hex color.
24+
*
25+
* Allows both 3 and 6 digit hex colors.
26+
* */
27+
export const hexColorValidator = buildRegExp(
28+
[
29+
startOfString, // Match whole string
30+
'#',
31+
choiceOf(
32+
repeat(hexDigit, 6), // #rrggbb
33+
repeat(hexDigit, 3), // #rgb
34+
),
35+
endOfString,
36+
],
37+
{ ignoreCase: true },
38+
);

src/patterns/index.ts

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
export { hexColorFinder, hexColorValidator } from './hex-color';

0 commit comments

Comments
 (0)