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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
|
// Index structures shared by client and server, and relevant interfaces.
// First and foremost, this is complemented by src/search-select.js, which
// actually fills the search indexes up with stuff. During build this all
// gets consumed by src/search.js to make an index, fill it with stuff
// (as described by search-select.js), and export it to disk; then on
// the client that export is consumed by src/static/js/search-worker.js,
// which builds an index in the same shape and imports the data for query.
const baselineStore = [
'primaryName',
'disambiguator',
'artwork',
'color',
];
const genericStore = baselineStore;
const searchShape = {
generic: {
index: [
'primaryName',
'parentName',
'artTags',
'additionalNames',
'contributors',
'groups',
].map(field => ({field, tokenize: 'forward'})),
store: genericStore,
},
verbatim: {
index: [
'primaryName',
'parentName',
'artTags',
'additionalNames',
'contributors',
'groups',
],
store: genericStore,
},
};
export default searchShape;
export function makeSearchIndex(descriptor, {FlexSearch}) {
return new FlexSearch.Document({
id: 'reference',
index: descriptor.index,
store: descriptor.store,
// Disable scoring, always return results according to provided order
// (specified above in `genericQuery`, etc).
resolution: 1,
});
}
// TODO: This function basically mirrors bind-utilities.js, which isn't
// exactly robust, but... binding might need some more thought across the
// codebase in *general.*
function bindSearchUtilities({
checkIfImagePathHasCachedThumbnails,
getThumbnailEqualOrSmaller,
thumbsCache,
urls,
}) {
// TODO: :boom:
const bound = {
urls,
};
bound.checkIfImagePathHasCachedThumbnails =
(imagePath) =>
checkIfImagePathHasCachedThumbnails(imagePath, thumbsCache);
bound.getThumbnailEqualOrSmaller =
(preferred, imagePath) =>
getThumbnailEqualOrSmaller(preferred, imagePath, thumbsCache);
return bound;
}
export function populateSearchIndex(index, descriptor, opts) {
const {wikiData} = opts;
const bound = bindSearchUtilities(opts);
for (const thing of descriptor.select(wikiData)) {
const reference = thing.constructor.getReference(thing);
let processed;
try {
processed = descriptor.process(thing, bound);
} catch (caughtError) {
throw new Error(
`Failed to process searchable thing ${reference}`,
{cause: caughtError});
}
index.add({reference, ...processed});
}
}
|