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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
|
'use strict';
import {mkdir, writeFile} from 'node:fs/promises';
import * as path from 'node:path';
import FlexSearch from 'flexsearch';
import {logError, logInfo, logWarn} from '#cli';
import {makeSearchIndex, populateSearchIndex, searchSpec} from '#search-spec';
import {stitchArrays} from '#sugar';
async function exportIndexToJSON(index) {
const results = {};
await index.export((key, data) => {
results[key] = data;
})
return results;
}
export async function writeSearchData({
wikiCachePath,
wikiData,
}) {
if (!wikiCachePath) {
throw new Error(`Expected wikiCachePath to write into`);
}
// Basic flow is:
// 1. Define schema for type
// 2. Add documents to index
// 3. Save index to exportable json
const keys =
Object.keys(searchSpec);
const descriptors =
Object.values(searchSpec);
const indexes =
descriptors
.map(descriptor =>
makeSearchIndex(descriptor, {FlexSearch}));
stitchArrays({
index: indexes,
descriptor: descriptors,
}).forEach(({index, descriptor}) =>
populateSearchIndex(index, descriptor, {wikiData}));
const jsonIndexes =
await Promise.all(indexes.map(exportIndexToJSON));
const searchData =
Object.fromEntries(
stitchArrays({
key: keys,
value: jsonIndexes,
}).map(({key, value}) => [key, value]));
const outputDirectory =
path.join(wikiCachePath, 'search');
const outputFile =
path.join(outputDirectory, 'index.json');
await mkdir(outputDirectory, {recursive: true});
await writeFile(outputFile, JSON.stringify(searchData));
logInfo`Search index successfully written.`;
}
|