« get me outta code hell

searchSchema.js « util « src - hsmusic-wiki - HSMusic - static wiki software cataloguing collaborative creation
about summary refs log tree commit diff
path: root/src/util/searchSchema.js
blob: d4e1a8c0dc4a880310435583fd14d5bf687e6714 (plain)
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
// Index structures shared by client and server.

export function makeSearchIndexes(FlexSearch) {
  const doc = config =>
    new FlexSearch.Document({
      id: 'reference',
      ...config,
    });

  const indexes = {
    albums: doc({
      index: ['name', 'groups'],
    }),

    tracks: doc({
      index: [
        'name',
        'album',
        'artists',
        'additionalNames',
      ],

      store: [
        'color',
        'name',
        'albumDirectory',
        'artworkKind',
      ],
    }),

    artists: doc({
      index: ['names'],
    }),

    groups: doc({
      index: ['name', 'description', 'category'],
    }),

    flashes: doc({
      index: ['name', 'tracks', 'contributors'],
    }),
  };

  return indexes;
}