@digigov/text-search 0.1.0-47312a12

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (47) hide show
  1. package/LICENSE +0 -0
  2. package/README.md +70 -0
  3. package/cjs/hook.js +65 -0
  4. package/cjs/hook.spec.js +568 -0
  5. package/cjs/index.js +27 -0
  6. package/cjs/search/__tests__/utils.spec.js +84 -0
  7. package/cjs/search/index.js +11 -0
  8. package/cjs/search/lang/gr/encoder.js +28 -0
  9. package/cjs/search/lang/gr/normalization-map.js +107 -0
  10. package/cjs/search/search-index.js +165 -0
  11. package/cjs/search/utils.js +100 -0
  12. package/cjs/test-utils/data.json +552 -0
  13. package/cjs/types.js +5 -0
  14. package/hook.d.ts +19 -0
  15. package/hook.js +54 -0
  16. package/hook.spec.d.ts +1 -0
  17. package/hook.spec.js +560 -0
  18. package/index.d.ts +3 -0
  19. package/index.js +3 -0
  20. package/package.json +22 -0
  21. package/search/__tests__/utils.spec.d.ts +1 -0
  22. package/search/__tests__/utils.spec.js +81 -0
  23. package/search/index.d.ts +2 -0
  24. package/search/index.js +2 -0
  25. package/search/lang/gr/encoder.d.ts +11 -0
  26. package/search/lang/gr/encoder.js +20 -0
  27. package/search/lang/gr/normalization-map.d.ts +100 -0
  28. package/search/lang/gr/normalization-map.js +100 -0
  29. package/search/package.json +6 -0
  30. package/search/search-index.d.ts +42 -0
  31. package/search/search-index.js +150 -0
  32. package/search/utils.d.ts +25 -0
  33. package/search/utils.js +88 -0
  34. package/src/hook.spec.ts +289 -0
  35. package/src/hook.ts +50 -0
  36. package/src/index.ts +4 -0
  37. package/src/search/__tests__/utils.spec.ts +73 -0
  38. package/src/search/index.ts +3 -0
  39. package/src/search/lang/gr/encoder.ts +27 -0
  40. package/src/search/lang/gr/normalization-map.ts +100 -0
  41. package/src/search/search-index.ts +103 -0
  42. package/src/search/utils.ts +72 -0
  43. package/src/test-utils/data.json +552 -0
  44. package/src/types.ts +65 -0
  45. package/test-utils/data.json +552 -0
  46. package/types.d.ts +56 -0
  47. package/types.js +1 -0
@@ -0,0 +1,81 @@
1
+ import { findItemsByIds, getAllItemKeys, getResultIds } from "../utils";
2
+ describe('utils', function () {
3
+ describe('getResultIds', function () {
4
+ it('should return the ids of the results without duplicates', function () {
5
+ var result = [{
6
+ field: 'title',
7
+ result: [1, 2]
8
+ }, {
9
+ field: 'description',
10
+ result: [2, 3]
11
+ }, {
12
+ field: 'tag',
13
+ result: [1, 2, 3, 4]
14
+ }];
15
+ expect(getResultIds(result)).toEqual([1, 2, 3, 4]);
16
+ });
17
+ it('should return an empty array if there are no results', function () {
18
+ var result = [];
19
+ expect(getResultIds(result)).toEqual([]);
20
+ });
21
+ });
22
+ describe('findItemsByIds', function () {
23
+ it('should return the items that match the given ids', function () {
24
+ var items = [{
25
+ id: 1,
26
+ name: 'Anastasia'
27
+ }, {
28
+ id: 2,
29
+ name: 'Bob'
30
+ }, {
31
+ id: 3,
32
+ name: 'Cindy'
33
+ }];
34
+ var ids = [1, 3];
35
+ expect(findItemsByIds(items, ids, 'id')).toEqual([{
36
+ id: 1,
37
+ name: 'Anastasia'
38
+ }, {
39
+ id: 3,
40
+ name: 'Cindy'
41
+ }]);
42
+ });
43
+ it('should return an empty array if there are no items', function () {
44
+ var items = [];
45
+ var ids = [1, 3];
46
+ expect(findItemsByIds(items, ids, 'id')).toEqual([]);
47
+ });
48
+ it('should return an empty array if there are no ids', function () {
49
+ var items = [{
50
+ id: 1,
51
+ name: 'Anastasia'
52
+ }, {
53
+ id: 2,
54
+ name: 'Bob'
55
+ }, {
56
+ id: 3,
57
+ name: 'Cindy'
58
+ }];
59
+ var ids = [];
60
+ expect(findItemsByIds(items, ids, 'id')).toEqual([]);
61
+ });
62
+ });
63
+ describe('getAllItemKeys', function () {
64
+ it('should return all the keys for the given item', function () {
65
+ var item = {
66
+ id: 1,
67
+ name: 'Anastasia',
68
+ address: {
69
+ street: '123 Main St',
70
+ city: 'New York',
71
+ state: 'NY'
72
+ }
73
+ };
74
+ expect(getAllItemKeys(item)).toEqual(['id', 'name', 'address.street', 'address.city', 'address.state']);
75
+ });
76
+ it('should return an empty array if item is an empty object', function () {
77
+ var item = {};
78
+ expect(getAllItemKeys(item)).toEqual([]);
79
+ });
80
+ });
81
+ });
@@ -0,0 +1,2 @@
1
+ import { SearchIndex } from './search-index';
2
+ export default SearchIndex;
@@ -0,0 +1,2 @@
1
+ import { SearchIndex } from "./search-index";
2
+ export default SearchIndex;
@@ -0,0 +1,11 @@
1
+ /**
2
+ * Encode a string containing greek characters to greeklish
3
+ *
4
+ * This function is used to encode and tokenize a string containing greek characters.
5
+ * It replaces greek characters with their latin counterparts, while also removing
6
+ * any diacritics.
7
+ *
8
+ * @param str - The string to encode
9
+ * @returns An array of encoded words
10
+ */
11
+ export declare function encodeGreek(str: string): string[];
@@ -0,0 +1,20 @@
1
+ import { greekToGreeklishMap } from "./normalization-map";
2
+ var whitespaceRegex = /(?:[\0-\/:-@\[-`\{-\xA9\xAB-\xB1\xB4\xB6-\xB8\xBB\xBF\xD7\xF7\u02C2-\u02C5\u02D2-\u02DF\u02E5-\u02EB\u02ED\u02EF-\u02FF\u0375\u0378\u0379\u037E\u0380-\u0385\u0387\u038B\u038D\u03A2\u03F6\u0482\u0530\u0557\u0558\u055A-\u055F\u0589-\u0590\u05BE\u05C0\u05C3\u05C6\u05C8-\u05CF\u05EB-\u05EE\u05F3-\u060F\u061B-\u061F\u066A-\u066D\u06D4\u06DD\u06DE\u06E9\u06FD\u06FE\u0700-\u070F\u074B\u074C\u07B2-\u07BF\u07F6-\u07F9\u07FB\u07FC\u07FE\u07FF\u082E-\u083F\u085C-\u085F\u086B-\u086F\u0888\u088F-\u0897\u08E2\u0964\u0965\u0970\u0984\u098D\u098E\u0991\u0992\u09A9\u09B1\u09B3-\u09B5\u09BA\u09BB\u09C5\u09C6\u09C9\u09CA\u09CF-\u09D6\u09D8-\u09DB\u09DE\u09E4\u09E5\u09F2\u09F3\u09FA\u09FB\u09FD\u09FF\u0A00\u0A04\u0A0B-\u0A0E\u0A11\u0A12\u0A29\u0A31\u0A34\u0A37\u0A3A\u0A3B\u0A3D\u0A43-\u0A46\u0A49\u0A4A\u0A4E-\u0A50\u0A52-\u0A58\u0A5D\u0A5F-\u0A65\u0A76-\u0A80\u0A84\u0A8E\u0A92\u0AA9\u0AB1\u0AB4\u0ABA\u0ABB\u0AC6\u0ACA\u0ACE\u0ACF\u0AD1-\u0ADF\u0AE4\u0AE5\u0AF0-\u0AF8\u0B00\u0B04\u0B0D\u0B0E\u0B11\u0B12\u0B29\u0B31\u0B34\u0B3A\u0B3B\u0B45\u0B46\u0B49\u0B4A\u0B4E-\u0B54\u0B58-\u0B5B\u0B5E\u0B64\u0B65\u0B70\u0B78-\u0B81\u0B84\u0B8B-\u0B8D\u0B91\u0B96-\u0B98\u0B9B\u0B9D\u0BA0-\u0BA2\u0BA5-\u0BA7\u0BAB-\u0BAD\u0BBA-\u0BBD\u0BC3-\u0BC5\u0BC9\u0BCE\u0BCF\u0BD1-\u0BD6\u0BD8-\u0BE5\u0BF3-\u0BFF\u0C0D\u0C11\u0C29\u0C3A\u0C3B\u0C45\u0C49\u0C4E-\u0C54\u0C57\u0C5B\u0C5C\u0C5E\u0C5F\u0C64\u0C65\u0C70-\u0C77\u0C7F\u0C84\u0C8D\u0C91\u0CA9\u0CB4\u0CBA\u0CBB\u0CC5\u0CC9\u0CCE-\u0CD4\u0CD7-\u0CDC\u0CDF\u0CE4\u0CE5\u0CF0\u0CF3-\u0CFF\u0D0D\u0D11\u0D45\u0D49\u0D4F-\u0D53\u0D64\u0D65\u0D79\u0D80\u0D84\u0D97-\u0D99\u0DB2\u0DBC\u0DBE\u0DBF\u0DC7-\u0DC9\u0DCB-\u0DCE\u0DD5\u0DD7\u0DE0-\u0DE5\u0DF0\u0DF1\u0DF4-\u0E00\u0E3B-\u0E3F\u0E4F\u0E5A-\u0E80\u0E83\u0E85\u0E8B\u0EA4\u0EA6\u0EBE\u0EBF\u0EC5\u0EC7\u0ECE\u0ECF\u0EDA\u0EDB\u0EE0-\u0EFF\u0F01-\u0F17\u0F1A-\u0F1F\u0F34\u0F36\u0F38\u0F3A-\u0F3D\u0F48\u0F6D-\u0F70\u0F85\u0F98\u0FBD-\u0FC5\u0FC7-\u0FFF\u104A-\u104F\u109E\u109F\u10C6\u10C8-\u10CC\u10CE\u10CF\u10FB\u1249\u124E\u124F\u1257\u1259\u125E\u125F\u1289\u128E\u128F\u12B1\u12B6\u12B7\u12BF\u12C1\u12C6\u12C7\u12D7\u1311\u1316\u1317\u135B\u135C\u1360-\u1368\u137D-\u137F\u1390-\u139F\u13F6\u13F7\u13FE-\u1400\u166D\u166E\u1680\u169B-\u169F\u16EB-\u16ED\u16F9-\u16FF\u1716-\u171E\u1735-\u173F\u1754-\u175F\u176D\u1771\u1774-\u177F\u17D4-\u17D6\u17D8-\u17DB\u17DE\u17DF\u17EA-\u17EF\u17FA-\u180A\u180E\u181A-\u181F\u1879-\u187F\u18AB-\u18AF\u18F6-\u18FF\u191F\u192C-\u192F\u193C-\u1945\u196E\u196F\u1975-\u197F\u19AC-\u19AF\u19CA-\u19CF\u19DB-\u19FF\u1A1C-\u1A1F\u1A5F\u1A7D\u1A7E\u1A8A-\u1A8F\u1A9A-\u1AA6\u1AA8-\u1AAF\u1ACF-\u1AFF\u1B4D-\u1B4F\u1B5A-\u1B6A\u1B74-\u1B7F\u1BF4-\u1BFF\u1C38-\u1C3F\u1C4A-\u1C4C\u1C7E\u1C7F\u1C89-\u1C8F\u1CBB\u1CBC\u1CC0-\u1CCF\u1CD3\u1CFB-\u1CFF\u1F16\u1F17\u1F1E\u1F1F\u1F46\u1F47\u1F4E\u1F4F\u1F58\u1F5A\u1F5C\u1F5E\u1F7E\u1F7F\u1FB5\u1FBD\u1FBF-\u1FC1\u1FC5\u1FCD-\u1FCF\u1FD4\u1FD5\u1FDC-\u1FDF\u1FED-\u1FF1\u1FF5\u1FFD-\u206F\u2072\u2073\u207A-\u207E\u208A-\u208F\u209D-\u20CF\u20F1-\u2101\u2103-\u2106\u2108\u2109\u2114\u2116-\u2118\u211E-\u2123\u2125\u2127\u2129\u212E\u213A\u213B\u2140-\u2144\u214A-\u214D\u214F\u218A-\u245F\u249C-\u24E9\u2500-\u2775\u2794-\u2BFF\u2CE5-\u2CEA\u2CF4-\u2CFC\u2CFE\u2CFF\u2D26\u2D28-\u2D2C\u2D2E\u2D2F\u2D68-\u2D6E\u2D70-\u2D7E\u2D97-\u2D9F\u2DA7\u2DAF\u2DB7\u2DBF\u2DC7\u2DCF\u2DD7\u2DDF\u2E00-\u2E2E\u2E30-\u3004\u3008-\u3020\u3030\u3036\u3037\u303D-\u3040\u3097\u3098\u309B\u309C\u30A0\u30FB\u3100-\u3104\u3130\u318F-\u3191\u3196-\u319F\u31C0-\u31EF\u3200-\u321F\u322A-\u3247\u3250\u3260-\u327F\u328A-\u32B0\u32C0-\u33FF\u4DC0-\u4DFF\uA48D-\uA4CF\uA4FE\uA4FF\uA60D-\uA60F\uA62C-\uA63F\uA673\uA67E\uA6F2-\uA716\uA720\uA721\uA789\uA78A\uA7CB-\uA7CF\uA7D2\uA7D4\uA7DA-\uA7F1\uA828-\uA82B\uA82D-\uA82F\uA836-\uA83F\uA874-\uA87F\uA8C6-\uA8CF\uA8DA-\uA8DF\uA8F8-\uA8FA\uA8FC\uA92E\uA92F\uA954-\uA95F\uA97D-\uA97F\uA9C1-\uA9CE\uA9DA-\uA9DF\uA9FF\uAA37-\uAA3F\uAA4E\uAA4F\uAA5A-\uAA5F\uAA77-\uAA79\uAAC3-\uAADA\uAADE\uAADF\uAAF0\uAAF1\uAAF7-\uAB00\uAB07\uAB08\uAB0F\uAB10\uAB17-\uAB1F\uAB27\uAB2F\uAB5B\uAB6A-\uAB6F\uABEB\uABEE\uABEF\uABFA-\uABFF\uD7A4-\uD7AF\uD7C7-\uD7CA\uD7FC-\uD7FF\uE000-\uF8FF\uFA6E\uFA6F\uFADA-\uFAFF\uFB07-\uFB12\uFB18-\uFB1C\uFB29\uFB37\uFB3D\uFB3F\uFB42\uFB45\uFBB2-\uFBD2\uFD3E-\uFD4F\uFD90\uFD91\uFDC8-\uFDEF\uFDFC-\uFDFF\uFE10-\uFE1F\uFE30-\uFE6F\uFE75\uFEFD-\uFF0F\uFF1A-\uFF20\uFF3B-\uFF40\uFF5B-\uFF65\uFFBF-\uFFC1\uFFC8\uFFC9\uFFD0\uFFD1\uFFD8\uFFD9\uFFDD-\uFFFF]|\uD800[\uDC0C\uDC27\uDC3B\uDC3E\uDC4E\uDC4F\uDC5E-\uDC7F\uDCFB-\uDD06\uDD34-\uDD3F\uDD79-\uDD89\uDD8C-\uDDFC\uDDFE-\uDE7F\uDE9D-\uDE9F\uDED1-\uDEDF\uDEFC-\uDEFF\uDF24-\uDF2C\uDF4B-\uDF4F\uDF7B-\uDF7F\uDF9E\uDF9F\uDFC4-\uDFC7\uDFD0\uDFD6-\uDFFF]|\uD801[\uDC9E\uDC9F\uDCAA-\uDCAF\uDCD4-\uDCD7\uDCFC-\uDCFF\uDD28-\uDD2F\uDD64-\uDD6F\uDD7B\uDD8B\uDD93\uDD96\uDDA2\uDDB2\uDDBA\uDDBD-\uDDFF\uDF37-\uDF3F\uDF56-\uDF5F\uDF68-\uDF7F\uDF86\uDFB1\uDFBB-\uDFFF]|\uD802[\uDC06\uDC07\uDC09\uDC36\uDC39-\uDC3B\uDC3D\uDC3E\uDC56\uDC57\uDC77\uDC78\uDC9F-\uDCA6\uDCB0-\uDCDF\uDCF3\uDCF6-\uDCFA\uDD1C-\uDD1F\uDD3A-\uDD7F\uDDB8-\uDDBB\uDDD0\uDDD1\uDE04\uDE07-\uDE0B\uDE14\uDE18\uDE36\uDE37\uDE3B-\uDE3E\uDE49-\uDE5F\uDE7F\uDEA0-\uDEBF\uDEC8\uDEE7-\uDEEA\uDEF0-\uDEFF\uDF36-\uDF3F\uDF56\uDF57\uDF73-\uDF77\uDF92-\uDFA8\uDFB0-\uDFFF]|\uD803[\uDC49-\uDC7F\uDCB3-\uDCBF\uDCF3-\uDCF9\uDD28-\uDD2F\uDD3A-\uDE5F\uDE7F\uDEAA\uDEAD-\uDEAF\uDEB2-\uDEFF\uDF28-\uDF2F\uDF55-\uDF6F\uDF86-\uDFAF\uDFCC-\uDFDF\uDFF7-\uDFFF]|\uD804[\uDC47-\uDC51\uDC76-\uDC7E\uDCBB-\uDCC1\uDCC3-\uDCCF\uDCE9-\uDCEF\uDCFA-\uDCFF\uDD35\uDD40-\uDD43\uDD48-\uDD4F\uDD74\uDD75\uDD77-\uDD7F\uDDC5-\uDDC8\uDDCD\uDDDB\uDDDD-\uDDE0\uDDF5-\uDDFF\uDE12\uDE38-\uDE3D\uDE3F-\uDE7F\uDE87\uDE89\uDE8E\uDE9E\uDEA9-\uDEAF\uDEEB-\uDEEF\uDEFA-\uDEFF\uDF04\uDF0D\uDF0E\uDF11\uDF12\uDF29\uDF31\uDF34\uDF3A\uDF45\uDF46\uDF49\uDF4A\uDF4E\uDF4F\uDF51-\uDF56\uDF58-\uDF5C\uDF64\uDF65\uDF6D-\uDF6F\uDF75-\uDFFF]|\uD805[\uDC4B-\uDC4F\uDC5A-\uDC5D\uDC62-\uDC7F\uDCC6\uDCC8-\uDCCF\uDCDA-\uDD7F\uDDB6\uDDB7\uDDC1-\uDDD7\uDDDE-\uDDFF\uDE41-\uDE43\uDE45-\uDE4F\uDE5A-\uDE7F\uDEB9-\uDEBF\uDECA-\uDEFF\uDF1B\uDF1C\uDF2C-\uDF2F\uDF3C-\uDF3F\uDF47-\uDFFF]|\uD806[\uDC3B-\uDC9F\uDCF3-\uDCFE\uDD07\uDD08\uDD0A\uDD0B\uDD14\uDD17\uDD36\uDD39\uDD3A\uDD44-\uDD4F\uDD5A-\uDD9F\uDDA8\uDDA9\uDDD8\uDDD9\uDDE2\uDDE5-\uDDFF\uDE3F-\uDE46\uDE48-\uDE4F\uDE9A-\uDE9C\uDE9E-\uDEAF\uDEF9-\uDFFF]|\uD807[\uDC09\uDC37\uDC41-\uDC4F\uDC6D-\uDC71\uDC90\uDC91\uDCA8\uDCB7-\uDCFF\uDD07\uDD0A\uDD37-\uDD39\uDD3B\uDD3E\uDD48-\uDD4F\uDD5A-\uDD5F\uDD66\uDD69\uDD8F\uDD92\uDD99-\uDD9F\uDDAA-\uDEDF\uDEF7-\uDFAF\uDFB1-\uDFBF\uDFD5-\uDFFF]|\uD808[\uDF9A-\uDFFF]|\uD809[\uDC6F-\uDC7F\uDD44-\uDFFF]|[\uD80A\uD80E-\uD810\uD812-\uD819\uD824-\uD82A\uD82D\uD82E\uD830-\uD832\uD83D\uD83F\uD87B-\uD87D\uD87F\uD885-\uDB3F\uDB41-\uDBFF][\uDC00-\uDFFF]|\uD80B[\uDC00-\uDF8F\uDFF1-\uDFFF]|\uD80D[\uDC2F-\uDFFF]|\uD811[\uDE47-\uDFFF]|\uD81A[\uDE39-\uDE3F\uDE5F\uDE6A-\uDE6F\uDEBF\uDECA-\uDECF\uDEEE\uDEEF\uDEF5-\uDEFF\uDF37-\uDF3F\uDF44-\uDF4F\uDF5A\uDF62\uDF78-\uDF7C\uDF90-\uDFFF]|\uD81B[\uDC00-\uDE3F\uDE97-\uDEFF\uDF4B-\uDF4E\uDF88-\uDF8E\uDFA0-\uDFDF\uDFE2\uDFE5-\uDFEF\uDFF2-\uDFFF]|\uD821[\uDFF8-\uDFFF]|\uD823[\uDCD6-\uDCFF\uDD09-\uDFFF]|\uD82B[\uDC00-\uDFEF\uDFF4\uDFFC\uDFFF]|\uD82C[\uDD23-\uDD4F\uDD53-\uDD63\uDD68-\uDD6F\uDEFC-\uDFFF]|\uD82F[\uDC6B-\uDC6F\uDC7D-\uDC7F\uDC89-\uDC8F\uDC9A-\uDC9C\uDC9F-\uDFFF]|\uD833[\uDC00-\uDEFF\uDF2E\uDF2F\uDF47-\uDFFF]|\uD834[\uDC00-\uDD64\uDD6A-\uDD6C\uDD73-\uDD7A\uDD83\uDD84\uDD8C-\uDDA9\uDDAE-\uDE41\uDE45-\uDEDF\uDEF4-\uDF5F\uDF79-\uDFFF]|\uD835[\uDC55\uDC9D\uDCA0\uDCA1\uDCA3\uDCA4\uDCA7\uDCA8\uDCAD\uDCBA\uDCBC\uDCC4\uDD06\uDD0B\uDD0C\uDD15\uDD1D\uDD3A\uDD3F\uDD45\uDD47-\uDD49\uDD51\uDEA6\uDEA7\uDEC1\uDEDB\uDEFB\uDF15\uDF35\uDF4F\uDF6F\uDF89\uDFA9\uDFC3\uDFCC\uDFCD]|\uD836[\uDC00-\uDDFF\uDE37-\uDE3A\uDE6D-\uDE74\uDE76-\uDE83\uDE85-\uDE9A\uDEA0\uDEB0-\uDFFF]|\uD837[\uDC00-\uDEFF\uDF1F-\uDFFF]|\uD838[\uDC07\uDC19\uDC1A\uDC22\uDC25\uDC2B-\uDCFF\uDD2D-\uDD2F\uDD3E\uDD3F\uDD4A-\uDD4D\uDD4F-\uDE8F\uDEAF-\uDEBF\uDEFA-\uDFFF]|\uD839[\uDC00-\uDFDF\uDFE7\uDFEC\uDFEF\uDFFF]|\uD83A[\uDCC5\uDCC6\uDCD7-\uDCFF\uDD4C-\uDD4F\uDD5A-\uDFFF]|\uD83B[\uDC00-\uDC70\uDCAC\uDCB0\uDCB5-\uDD00\uDD2E\uDD3E-\uDDFF\uDE04\uDE20\uDE23\uDE25\uDE26\uDE28\uDE33\uDE38\uDE3A\uDE3C-\uDE41\uDE43-\uDE46\uDE48\uDE4A\uDE4C\uDE50\uDE53\uDE55\uDE56\uDE58\uDE5A\uDE5C\uDE5E\uDE60\uDE63\uDE65\uDE66\uDE6B\uDE73\uDE78\uDE7D\uDE7F\uDE8A\uDE9C-\uDEA0\uDEA4\uDEAA\uDEBC-\uDFFF]|\uD83C[\uDC00-\uDCFF\uDD0D-\uDFFF]|\uD83E[\uDC00-\uDFEF\uDFFA-\uDFFF]|\uD869[\uDEE0-\uDEFF]|\uD86D[\uDF39-\uDF3F]|\uD86E[\uDC1E\uDC1F]|\uD873[\uDEA2-\uDEAF]|\uD87A[\uDFE1-\uDFFF]|\uD87E[\uDE1E-\uDFFF]|\uD884[\uDF4B-\uDFFF]|\uDB40[\uDC00-\uDCFF\uDDF0-\uDFFF]|[\uD800-\uDBFF](?![\uDC00-\uDFFF])|(?:[^\uD800-\uDBFF]|^)[\uDC00-\uDFFF])+/;
3
+ var diacriticsRegex = /[\u0300-\u036f]/g;
4
+ var greekCharsRegex = new RegExp(Object.keys(greekToGreeklishMap).join('|'), 'igu');
5
+ /**
6
+ * Encode a string containing greek characters to greeklish
7
+ *
8
+ * This function is used to encode and tokenize a string containing greek characters.
9
+ * It replaces greek characters with their latin counterparts, while also removing
10
+ * any diacritics.
11
+ *
12
+ * @param str - The string to encode
13
+ * @returns An array of encoded words
14
+ */
15
+
16
+ export function encodeGreek(str) {
17
+ return ('' + str).toLowerCase().normalize('NFD').replace(diacriticsRegex, '').replace(greekCharsRegex, function (match) {
18
+ return greekToGreeklishMap[match];
19
+ }).split(whitespaceRegex);
20
+ }
@@ -0,0 +1,100 @@
1
+ export declare const greekToGreeklishMap: {
2
+ ΓΧ: string;
3
+ γχ: string;
4
+ ΤΘ: string;
5
+ τθ: string;
6
+ θη: string;
7
+ Θη: string;
8
+ ΘΗ: string;
9
+ αυ: string;
10
+ Αυ: string;
11
+ ΑΥ: string;
12
+ ευ: string;
13
+ εύ: string;
14
+ εϋ: string;
15
+ εΰ: string;
16
+ Ευ: string;
17
+ Εύ: string;
18
+ Εϋ: string;
19
+ Εΰ: string;
20
+ ΕΥ: string;
21
+ ου: string;
22
+ ού: string;
23
+ οϋ: string;
24
+ οΰ: string;
25
+ Ου: string;
26
+ Ού: string;
27
+ Οϋ: string;
28
+ Οΰ: string;
29
+ ΟΥ: string;
30
+ Α: string;
31
+ α: string;
32
+ ά: string;
33
+ Ά: string;
34
+ Β: string;
35
+ β: string;
36
+ Γ: string;
37
+ γ: string;
38
+ Δ: string;
39
+ δ: string;
40
+ Ε: string;
41
+ ε: string;
42
+ έ: string;
43
+ Έ: string;
44
+ Ζ: string;
45
+ ζ: string;
46
+ Η: string;
47
+ η: string;
48
+ ή: string;
49
+ Ή: string;
50
+ Θ: string;
51
+ θ: string;
52
+ Ι: string;
53
+ Ϊ: string;
54
+ ι: string;
55
+ ί: string;
56
+ ΐ: string;
57
+ ϊ: string;
58
+ Ί: string;
59
+ Κ: string;
60
+ κ: string;
61
+ Λ: string;
62
+ λ: string;
63
+ Μ: string;
64
+ μ: string;
65
+ Ν: string;
66
+ ν: string;
67
+ Ξ: string;
68
+ ξ: string;
69
+ Ο: string;
70
+ ο: string;
71
+ Ό: string;
72
+ ό: string;
73
+ Π: string;
74
+ π: string;
75
+ Ρ: string;
76
+ ρ: string;
77
+ Σ: string;
78
+ σ: string;
79
+ Τ: string;
80
+ τ: string;
81
+ Υ: string;
82
+ Ύ: string;
83
+ Ϋ: string;
84
+ ΰ: string;
85
+ ύ: string;
86
+ ϋ: string;
87
+ υ: string;
88
+ Φ: string;
89
+ φ: string;
90
+ Χ: string;
91
+ χ: string;
92
+ Ψ: string;
93
+ ψ: string;
94
+ Ω: string;
95
+ ω: string;
96
+ Ώ: string;
97
+ ώ: string;
98
+ ς: string;
99
+ ';': string;
100
+ };
@@ -0,0 +1,100 @@
1
+ export var greekToGreeklishMap = {
2
+ ΓΧ: 'GX',
3
+ γχ: 'gx',
4
+ ΤΘ: 'T8',
5
+ τθ: 't8',
6
+ θη: '8h',
7
+ Θη: '8h',
8
+ ΘΗ: '8H',
9
+ αυ: 'au',
10
+ Αυ: 'Au',
11
+ ΑΥ: 'AY',
12
+ ευ: 'eu',
13
+ εύ: 'eu',
14
+ εϋ: 'ey',
15
+ εΰ: 'ey',
16
+ Ευ: 'Eu',
17
+ Εύ: 'Eu',
18
+ Εϋ: 'Ey',
19
+ Εΰ: 'Ey',
20
+ ΕΥ: 'EY',
21
+ ου: 'ou',
22
+ ού: 'ou',
23
+ οϋ: 'oy',
24
+ οΰ: 'oy',
25
+ Ου: 'Ou',
26
+ Ού: 'Ou',
27
+ Οϋ: 'Oy',
28
+ Οΰ: 'Oy',
29
+ ΟΥ: 'OY',
30
+ Α: 'A',
31
+ α: 'a',
32
+ ά: 'a',
33
+ Ά: 'A',
34
+ Β: 'B',
35
+ β: 'b',
36
+ Γ: 'G',
37
+ γ: 'g',
38
+ Δ: 'D',
39
+ δ: 'd',
40
+ Ε: 'E',
41
+ ε: 'e',
42
+ έ: 'e',
43
+ Έ: 'E',
44
+ Ζ: 'Z',
45
+ ζ: 'z',
46
+ Η: 'H',
47
+ η: 'h',
48
+ ή: 'h',
49
+ Ή: 'H',
50
+ Θ: 'TH',
51
+ θ: 'th',
52
+ Ι: 'I',
53
+ Ϊ: 'I',
54
+ ι: 'i',
55
+ ί: 'i',
56
+ ΐ: 'i',
57
+ ϊ: 'i',
58
+ Ί: 'I',
59
+ Κ: 'K',
60
+ κ: 'k',
61
+ Λ: 'L',
62
+ λ: 'l',
63
+ Μ: 'M',
64
+ μ: 'm',
65
+ Ν: 'N',
66
+ ν: 'n',
67
+ Ξ: 'KS',
68
+ ξ: 'ks',
69
+ Ο: 'O',
70
+ ο: 'o',
71
+ Ό: 'O',
72
+ ό: 'o',
73
+ Π: 'P',
74
+ π: 'p',
75
+ Ρ: 'R',
76
+ ρ: 'r',
77
+ Σ: 'S',
78
+ σ: 's',
79
+ Τ: 'T',
80
+ τ: 't',
81
+ Υ: 'Y',
82
+ Ύ: 'Y',
83
+ Ϋ: 'Y',
84
+ ΰ: 'y',
85
+ ύ: 'y',
86
+ ϋ: 'y',
87
+ υ: 'y',
88
+ Φ: 'F',
89
+ φ: 'f',
90
+ Χ: 'X',
91
+ χ: 'x',
92
+ Ψ: 'Ps',
93
+ ψ: 'ps',
94
+ Ω: 'w',
95
+ ω: 'w',
96
+ Ώ: 'w',
97
+ ώ: 'w',
98
+ ς: 's',
99
+ ';': '?'
100
+ };
@@ -0,0 +1,6 @@
1
+ {
2
+ "sideEffects": false,
3
+ "module": "./index.js",
4
+ "types": "./index.d.ts",
5
+ "main": "../cjs/search/index.js"
6
+ }
@@ -0,0 +1,42 @@
1
+ import type { SearchIndexOptions } from '../types';
2
+ /**
3
+ * Wrapper class around third party index and search library
4
+ *
5
+ * @typeParam T - The type of the data that will be indexed
6
+ */
7
+ export declare class SearchIndex<T extends Record<string, any>> {
8
+ /**
9
+ * Instance of the third party library's index
10
+ */
11
+ private index;
12
+ private idKey;
13
+ constructor(items: T[], options?: SearchIndexOptions<T>);
14
+ /**
15
+ * Add an item to the index
16
+ *
17
+ * @param item - The item to add to the index
18
+ */
19
+ add(item: T): this;
20
+ /**
21
+ * Add multiple items to the index
22
+ *
23
+ * @param items - The list of items to add to the index
24
+ */
25
+ addAll(items: T[]): this;
26
+ /**
27
+ * Search the index for the given term
28
+ *
29
+ * @param documents - The list of documents to search
30
+ * @param searchTerm - The term to search for
31
+ * @returns The list of items that match the search term
32
+ */
33
+ search(documents: T[], searchTerm: string): T[];
34
+ /**
35
+ * Asynchronously search the index for the given term
36
+ *
37
+ * @param documents - The list of documents to search
38
+ * @param searchTerm - The term to search for
39
+ * @returns The list of items that match the search term
40
+ */
41
+ searchAsync(documents: T[], searchTerm: string): Promise<T[]>;
42
+ }
@@ -0,0 +1,150 @@
1
+ import _typeof from "@babel/runtime/helpers/typeof";
2
+ import _asyncToGenerator from "@babel/runtime/helpers/asyncToGenerator";
3
+ import _extends from "@babel/runtime/helpers/extends";
4
+ import _classCallCheck from "@babel/runtime/helpers/classCallCheck";
5
+ import _createClass from "@babel/runtime/helpers/createClass";
6
+
7
+ function _regeneratorRuntime() { "use strict"; /*! regenerator-runtime -- Copyright (c) 2014-present, Facebook, Inc. -- license (MIT): https://github.com/facebook/regenerator/blob/main/LICENSE */ _regeneratorRuntime = function _regeneratorRuntime() { return exports; }; var exports = {}, Op = Object.prototype, hasOwn = Op.hasOwnProperty, $Symbol = "function" == typeof Symbol ? Symbol : {}, iteratorSymbol = $Symbol.iterator || "@@iterator", asyncIteratorSymbol = $Symbol.asyncIterator || "@@asyncIterator", toStringTagSymbol = $Symbol.toStringTag || "@@toStringTag"; function define(obj, key, value) { return Object.defineProperty(obj, key, { value: value, enumerable: !0, configurable: !0, writable: !0 }), obj[key]; } try { define({}, ""); } catch (err) { define = function define(obj, key, value) { return obj[key] = value; }; } function wrap(innerFn, outerFn, self, tryLocsList) { var protoGenerator = outerFn && outerFn.prototype instanceof Generator ? outerFn : Generator, generator = Object.create(protoGenerator.prototype), context = new Context(tryLocsList || []); return generator._invoke = function (innerFn, self, context) { var state = "suspendedStart"; return function (method, arg) { if ("executing" === state) throw new Error("Generator is already running"); if ("completed" === state) { if ("throw" === method) throw arg; return doneResult(); } for (context.method = method, context.arg = arg;;) { var delegate = context.delegate; if (delegate) { var delegateResult = maybeInvokeDelegate(delegate, context); if (delegateResult) { if (delegateResult === ContinueSentinel) continue; return delegateResult; } } if ("next" === context.method) context.sent = context._sent = context.arg;else if ("throw" === context.method) { if ("suspendedStart" === state) throw state = "completed", context.arg; context.dispatchException(context.arg); } else "return" === context.method && context.abrupt("return", context.arg); state = "executing"; var record = tryCatch(innerFn, self, context); if ("normal" === record.type) { if (state = context.done ? "completed" : "suspendedYield", record.arg === ContinueSentinel) continue; return { value: record.arg, done: context.done }; } "throw" === record.type && (state = "completed", context.method = "throw", context.arg = record.arg); } }; }(innerFn, self, context), generator; } function tryCatch(fn, obj, arg) { try { return { type: "normal", arg: fn.call(obj, arg) }; } catch (err) { return { type: "throw", arg: err }; } } exports.wrap = wrap; var ContinueSentinel = {}; function Generator() {} function GeneratorFunction() {} function GeneratorFunctionPrototype() {} var IteratorPrototype = {}; define(IteratorPrototype, iteratorSymbol, function () { return this; }); var getProto = Object.getPrototypeOf, NativeIteratorPrototype = getProto && getProto(getProto(values([]))); NativeIteratorPrototype && NativeIteratorPrototype !== Op && hasOwn.call(NativeIteratorPrototype, iteratorSymbol) && (IteratorPrototype = NativeIteratorPrototype); var Gp = GeneratorFunctionPrototype.prototype = Generator.prototype = Object.create(IteratorPrototype); function defineIteratorMethods(prototype) { ["next", "throw", "return"].forEach(function (method) { define(prototype, method, function (arg) { return this._invoke(method, arg); }); }); } function AsyncIterator(generator, PromiseImpl) { function invoke(method, arg, resolve, reject) { var record = tryCatch(generator[method], generator, arg); if ("throw" !== record.type) { var result = record.arg, value = result.value; return value && "object" == _typeof(value) && hasOwn.call(value, "__await") ? PromiseImpl.resolve(value.__await).then(function (value) { invoke("next", value, resolve, reject); }, function (err) { invoke("throw", err, resolve, reject); }) : PromiseImpl.resolve(value).then(function (unwrapped) { result.value = unwrapped, resolve(result); }, function (error) { return invoke("throw", error, resolve, reject); }); } reject(record.arg); } var previousPromise; this._invoke = function (method, arg) { function callInvokeWithMethodAndArg() { return new PromiseImpl(function (resolve, reject) { invoke(method, arg, resolve, reject); }); } return previousPromise = previousPromise ? previousPromise.then(callInvokeWithMethodAndArg, callInvokeWithMethodAndArg) : callInvokeWithMethodAndArg(); }; } function maybeInvokeDelegate(delegate, context) { var method = delegate.iterator[context.method]; if (undefined === method) { if (context.delegate = null, "throw" === context.method) { if (delegate.iterator["return"] && (context.method = "return", context.arg = undefined, maybeInvokeDelegate(delegate, context), "throw" === context.method)) return ContinueSentinel; context.method = "throw", context.arg = new TypeError("The iterator does not provide a 'throw' method"); } return ContinueSentinel; } var record = tryCatch(method, delegate.iterator, context.arg); if ("throw" === record.type) return context.method = "throw", context.arg = record.arg, context.delegate = null, ContinueSentinel; var info = record.arg; return info ? info.done ? (context[delegate.resultName] = info.value, context.next = delegate.nextLoc, "return" !== context.method && (context.method = "next", context.arg = undefined), context.delegate = null, ContinueSentinel) : info : (context.method = "throw", context.arg = new TypeError("iterator result is not an object"), context.delegate = null, ContinueSentinel); } function pushTryEntry(locs) { var entry = { tryLoc: locs[0] }; 1 in locs && (entry.catchLoc = locs[1]), 2 in locs && (entry.finallyLoc = locs[2], entry.afterLoc = locs[3]), this.tryEntries.push(entry); } function resetTryEntry(entry) { var record = entry.completion || {}; record.type = "normal", delete record.arg, entry.completion = record; } function Context(tryLocsList) { this.tryEntries = [{ tryLoc: "root" }], tryLocsList.forEach(pushTryEntry, this), this.reset(!0); } function values(iterable) { if (iterable) { var iteratorMethod = iterable[iteratorSymbol]; if (iteratorMethod) return iteratorMethod.call(iterable); if ("function" == typeof iterable.next) return iterable; if (!isNaN(iterable.length)) { var i = -1, next = function next() { for (; ++i < iterable.length;) { if (hasOwn.call(iterable, i)) return next.value = iterable[i], next.done = !1, next; } return next.value = undefined, next.done = !0, next; }; return next.next = next; } } return { next: doneResult }; } function doneResult() { return { value: undefined, done: !0 }; } return GeneratorFunction.prototype = GeneratorFunctionPrototype, define(Gp, "constructor", GeneratorFunctionPrototype), define(GeneratorFunctionPrototype, "constructor", GeneratorFunction), GeneratorFunction.displayName = define(GeneratorFunctionPrototype, toStringTagSymbol, "GeneratorFunction"), exports.isGeneratorFunction = function (genFun) { var ctor = "function" == typeof genFun && genFun.constructor; return !!ctor && (ctor === GeneratorFunction || "GeneratorFunction" === (ctor.displayName || ctor.name)); }, exports.mark = function (genFun) { return Object.setPrototypeOf ? Object.setPrototypeOf(genFun, GeneratorFunctionPrototype) : (genFun.__proto__ = GeneratorFunctionPrototype, define(genFun, toStringTagSymbol, "GeneratorFunction")), genFun.prototype = Object.create(Gp), genFun; }, exports.awrap = function (arg) { return { __await: arg }; }, defineIteratorMethods(AsyncIterator.prototype), define(AsyncIterator.prototype, asyncIteratorSymbol, function () { return this; }), exports.AsyncIterator = AsyncIterator, exports.async = function (innerFn, outerFn, self, tryLocsList, PromiseImpl) { void 0 === PromiseImpl && (PromiseImpl = Promise); var iter = new AsyncIterator(wrap(innerFn, outerFn, self, tryLocsList), PromiseImpl); return exports.isGeneratorFunction(outerFn) ? iter : iter.next().then(function (result) { return result.done ? result.value : iter.next(); }); }, defineIteratorMethods(Gp), define(Gp, toStringTagSymbol, "Generator"), define(Gp, iteratorSymbol, function () { return this; }), define(Gp, "toString", function () { return "[object Generator]"; }), exports.keys = function (object) { var keys = []; for (var key in object) { keys.push(key); } return keys.reverse(), function next() { for (; keys.length;) { var key = keys.pop(); if (key in object) return next.value = key, next.done = !1, next; } return next.done = !0, next; }; }, exports.values = values, Context.prototype = { constructor: Context, reset: function reset(skipTempReset) { if (this.prev = 0, this.next = 0, this.sent = this._sent = undefined, this.done = !1, this.delegate = null, this.method = "next", this.arg = undefined, this.tryEntries.forEach(resetTryEntry), !skipTempReset) for (var name in this) { "t" === name.charAt(0) && hasOwn.call(this, name) && !isNaN(+name.slice(1)) && (this[name] = undefined); } }, stop: function stop() { this.done = !0; var rootRecord = this.tryEntries[0].completion; if ("throw" === rootRecord.type) throw rootRecord.arg; return this.rval; }, dispatchException: function dispatchException(exception) { if (this.done) throw exception; var context = this; function handle(loc, caught) { return record.type = "throw", record.arg = exception, context.next = loc, caught && (context.method = "next", context.arg = undefined), !!caught; } for (var i = this.tryEntries.length - 1; i >= 0; --i) { var entry = this.tryEntries[i], record = entry.completion; if ("root" === entry.tryLoc) return handle("end"); if (entry.tryLoc <= this.prev) { var hasCatch = hasOwn.call(entry, "catchLoc"), hasFinally = hasOwn.call(entry, "finallyLoc"); if (hasCatch && hasFinally) { if (this.prev < entry.catchLoc) return handle(entry.catchLoc, !0); if (this.prev < entry.finallyLoc) return handle(entry.finallyLoc); } else if (hasCatch) { if (this.prev < entry.catchLoc) return handle(entry.catchLoc, !0); } else { if (!hasFinally) throw new Error("try statement without catch or finally"); if (this.prev < entry.finallyLoc) return handle(entry.finallyLoc); } } } }, abrupt: function abrupt(type, arg) { for (var i = this.tryEntries.length - 1; i >= 0; --i) { var entry = this.tryEntries[i]; if (entry.tryLoc <= this.prev && hasOwn.call(entry, "finallyLoc") && this.prev < entry.finallyLoc) { var finallyEntry = entry; break; } } finallyEntry && ("break" === type || "continue" === type) && finallyEntry.tryLoc <= arg && arg <= finallyEntry.finallyLoc && (finallyEntry = null); var record = finallyEntry ? finallyEntry.completion : {}; return record.type = type, record.arg = arg, finallyEntry ? (this.method = "next", this.next = finallyEntry.finallyLoc, ContinueSentinel) : this.complete(record); }, complete: function complete(record, afterLoc) { if ("throw" === record.type) throw record.arg; return "break" === record.type || "continue" === record.type ? this.next = record.arg : "return" === record.type ? (this.rval = this.arg = record.arg, this.method = "return", this.next = "end") : "normal" === record.type && afterLoc && (this.next = afterLoc), ContinueSentinel; }, finish: function finish(finallyLoc) { for (var i = this.tryEntries.length - 1; i >= 0; --i) { var entry = this.tryEntries[i]; if (entry.finallyLoc === finallyLoc) return this.complete(entry.completion, entry.afterLoc), resetTryEntry(entry), ContinueSentinel; } }, "catch": function _catch(tryLoc) { for (var i = this.tryEntries.length - 1; i >= 0; --i) { var entry = this.tryEntries[i]; if (entry.tryLoc === tryLoc) { var record = entry.completion; if ("throw" === record.type) { var thrown = record.arg; resetTryEntry(entry); } return thrown; } } throw new Error("illegal catch attempt"); }, delegateYield: function delegateYield(iterable, resultName, nextLoc) { return this.delegate = { iterator: values(iterable), resultName: resultName, nextLoc: nextLoc }, "next" === this.method && (this.arg = undefined), ContinueSentinel; } }, exports; }
8
+
9
+ import { Document } from 'flexsearch';
10
+ import { encodeGreek } from "./lang/gr/encoder";
11
+ import { findItemsByIds, getAllItemKeys, getResultIds } from "./utils";
12
+ /**
13
+ * Wrapper class around third party index and search library
14
+ *
15
+ * @typeParam T - The type of the data that will be indexed
16
+ */
17
+
18
+ export var SearchIndex = /*#__PURE__*/function () {
19
+ /**
20
+ * Instance of the third party library's index
21
+ */
22
+ function SearchIndex(items, options) {
23
+ var _this = this;
24
+
25
+ _classCallCheck(this, SearchIndex);
26
+
27
+ this.index = void 0;
28
+ this.idKey = void 0;
29
+ this.idKey = 'id';
30
+
31
+ if (options && options.idKey) {
32
+ this.idKey = options.idKey.replace('.', ':');
33
+ } else if (!(items[0] && 'id' in items[0])) {
34
+ items = items.map(function (item, index) {
35
+ return _extends({}, item, {
36
+ id: index
37
+ });
38
+ });
39
+ }
40
+
41
+ var fields = [];
42
+
43
+ if (options && options.fields) {
44
+ fields = options.fields;
45
+ } else if (items[0]) {
46
+ fields = getAllItemKeys(items[0]);
47
+ }
48
+
49
+ fields = fields.filter(function (field) {
50
+ return field !== _this.idKey;
51
+ }).map(function (field) {
52
+ return field.replace('.', ':');
53
+ });
54
+ this.index = new Document({
55
+ document: {
56
+ id: this.idKey,
57
+ index: fields
58
+ },
59
+ tokenize: 'forward',
60
+ worker: options === null || options === void 0 ? void 0 : options.enableWorker,
61
+ encode: encodeGreek
62
+ });
63
+ this.addAll(items);
64
+ }
65
+ /**
66
+ * Add an item to the index
67
+ *
68
+ * @param item - The item to add to the index
69
+ */
70
+
71
+
72
+ _createClass(SearchIndex, [{
73
+ key: "add",
74
+ value: function add(item) {
75
+ this.index.add(item);
76
+ return this;
77
+ }
78
+ /**
79
+ * Add multiple items to the index
80
+ *
81
+ * @param items - The list of items to add to the index
82
+ */
83
+
84
+ }, {
85
+ key: "addAll",
86
+ value: function addAll(items) {
87
+ var _this2 = this;
88
+
89
+ items.forEach(function (item) {
90
+ return _this2.index.add(item);
91
+ });
92
+ return this;
93
+ }
94
+ /**
95
+ * Search the index for the given term
96
+ *
97
+ * @param documents - The list of documents to search
98
+ * @param searchTerm - The term to search for
99
+ * @returns The list of items that match the search term
100
+ */
101
+
102
+ }, {
103
+ key: "search",
104
+ value: function search(documents, searchTerm) {
105
+ var res = this.index.search(searchTerm);
106
+ var ids = getResultIds(res);
107
+ return findItemsByIds(documents, ids, this.idKey);
108
+ }
109
+ /**
110
+ * Asynchronously search the index for the given term
111
+ *
112
+ * @param documents - The list of documents to search
113
+ * @param searchTerm - The term to search for
114
+ * @returns The list of items that match the search term
115
+ */
116
+
117
+ }, {
118
+ key: "searchAsync",
119
+ value: function () {
120
+ var _searchAsync = _asyncToGenerator( /*#__PURE__*/_regeneratorRuntime().mark(function _callee(documents, searchTerm) {
121
+ var _this3 = this;
122
+
123
+ return _regeneratorRuntime().wrap(function _callee$(_context) {
124
+ while (1) {
125
+ switch (_context.prev = _context.next) {
126
+ case 0:
127
+ return _context.abrupt("return", this.index.searchAsync(searchTerm).then(function (res) {
128
+ return getResultIds(res);
129
+ }).then(function (res) {
130
+ return findItemsByIds(documents, res, _this3.idKey);
131
+ }));
132
+
133
+ case 1:
134
+ case "end":
135
+ return _context.stop();
136
+ }
137
+ }
138
+ }, _callee, this);
139
+ }));
140
+
141
+ function searchAsync(_x, _x2) {
142
+ return _searchAsync.apply(this, arguments);
143
+ }
144
+
145
+ return searchAsync;
146
+ }()
147
+ }]);
148
+
149
+ return SearchIndex;
150
+ }();
@@ -0,0 +1,25 @@
1
+ import { SimpleDocumentSearchResultSetUnit } from 'flexsearch';
2
+ /**
3
+ * Extracts the unique item IDs from the result set
4
+ *
5
+ * @param result - The result set to extract the IDs from
6
+ */
7
+ export declare function getResultIds(result: SimpleDocumentSearchResultSetUnit[]): (string | number)[];
8
+ /**
9
+ * Get the items from the list that match the given IDs
10
+ *
11
+ * @param items - The list of items to search through
12
+ * @param ids - The list of IDs to search for
13
+ * @param idKey - The key to use to find the IDs in the items
14
+ */
15
+ export declare function findItemsByIds<T extends Record<string, any>>(items: T[], ids: (string | number)[], idKey: Extract<keyof T, string>): T[];
16
+ /**
17
+ * Recursively get all the keys from an object
18
+ *
19
+ * The keys are returned in the format `parentKey.childKey` for nested objects
20
+ * and `key` for top level objects (objects that are not nested inside another object).
21
+ *
22
+ * @param object - The item to get the keys from
23
+ * @param parentKey - The parent key to which the current key should be appended
24
+ */
25
+ export declare function getAllItemKeys(object: Record<string, any>, parentKey?: string): string[];
@@ -0,0 +1,88 @@
1
+ import _typeof from "@babel/runtime/helpers/typeof";
2
+
3
+ function _createForOfIteratorHelper(o, allowArrayLike) { var it = typeof Symbol !== "undefined" && o[Symbol.iterator] || o["@@iterator"]; if (!it) { if (Array.isArray(o) || (it = _unsupportedIterableToArray(o)) || allowArrayLike && o && typeof o.length === "number") { if (it) o = it; var i = 0; var F = function F() {}; return { s: F, n: function n() { if (i >= o.length) return { done: true }; return { done: false, value: o[i++] }; }, e: function e(_e) { throw _e; }, f: F }; } throw new TypeError("Invalid attempt to iterate non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method."); } var normalCompletion = true, didErr = false, err; return { s: function s() { it = it.call(o); }, n: function n() { var step = it.next(); normalCompletion = step.done; return step; }, e: function e(_e2) { didErr = true; err = _e2; }, f: function f() { try { if (!normalCompletion && it["return"] != null) it["return"](); } finally { if (didErr) throw err; } } }; }
4
+
5
+ function _unsupportedIterableToArray(o, minLen) { if (!o) return; if (typeof o === "string") return _arrayLikeToArray(o, minLen); var n = Object.prototype.toString.call(o).slice(8, -1); if (n === "Object" && o.constructor) n = o.constructor.name; if (n === "Map" || n === "Set") return Array.from(o); if (n === "Arguments" || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)) return _arrayLikeToArray(o, minLen); }
6
+
7
+ function _arrayLikeToArray(arr, len) { if (len == null || len > arr.length) len = arr.length; for (var i = 0, arr2 = new Array(len); i < len; i++) { arr2[i] = arr[i]; } return arr2; }
8
+
9
+ /**
10
+ * Extracts the unique item IDs from the result set
11
+ *
12
+ * @param result - The result set to extract the IDs from
13
+ */
14
+ export function getResultIds(result) {
15
+ var set = new Set();
16
+ result.forEach(function (item) {
17
+ item.result.forEach(function (id) {
18
+ return set.add(id);
19
+ });
20
+ });
21
+ return Array.from(set);
22
+ }
23
+ /**
24
+ * Get the items from the list that match the given IDs
25
+ *
26
+ * @param items - The list of items to search through
27
+ * @param ids - The list of IDs to search for
28
+ * @param idKey - The key to use to find the IDs in the items
29
+ */
30
+
31
+ export function findItemsByIds(items, ids, idKey) {
32
+ return items.filter(function (item) {
33
+ return item && ids.includes(getValueFromNestedKey(item, idKey));
34
+ });
35
+ }
36
+
37
+ function getValueFromNestedKey(object, nestedKey) {
38
+ var keys = nestedKey.split(':');
39
+ var result = object;
40
+
41
+ var _iterator = _createForOfIteratorHelper(keys),
42
+ _step;
43
+
44
+ try {
45
+ for (_iterator.s(); !(_step = _iterator.n()).done;) {
46
+ var keySegment = _step.value;
47
+
48
+ if (result.hasOwnProperty(keySegment)) {
49
+ result = result[keySegment];
50
+ }
51
+ }
52
+ } catch (err) {
53
+ _iterator.e(err);
54
+ } finally {
55
+ _iterator.f();
56
+ }
57
+
58
+ return result;
59
+ }
60
+ /**
61
+ * Recursively get all the keys from an object
62
+ *
63
+ * The keys are returned in the format `parentKey.childKey` for nested objects
64
+ * and `key` for top level objects (objects that are not nested inside another object).
65
+ *
66
+ * @param object - The item to get the keys from
67
+ * @param parentKey - The parent key to which the current key should be appended
68
+ */
69
+
70
+
71
+ export function getAllItemKeys(object) {
72
+ var parentKey = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : '';
73
+ var keys = [];
74
+
75
+ for (var key in object) {
76
+ if (object.hasOwnProperty(key)) {
77
+ var currentKey = parentKey ? "".concat(parentKey, ".").concat(key) : key;
78
+
79
+ if (_typeof(object[key]) === 'object' && object[key] !== null) {
80
+ keys = keys.concat(getAllItemKeys(object[key], currentKey));
81
+ } else {
82
+ keys.push(currentKey);
83
+ }
84
+ }
85
+ }
86
+
87
+ return keys;
88
+ }