-
Notifications
You must be signed in to change notification settings - Fork 220
/
settings.js
212 lines (199 loc) · 8.98 KB
/
settings.js
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
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
const page = require("./page");
// Algolia index settings.
//
// Changes to this file should be made with extreme care.
module.exports = {
// Attributes for faceting are the properties to use for top-level filtering of results -- for
// example, whether a given record is returned for a "Docs" query, "Registry" query, and so on.
// https://www.algolia.com/doc/api-reference/api-parameters/attributesForFaceting/
getAttributesForFaceting() {
return [
"searchable(section)",
];
},
// Synonyms allow us to surface content that may not directly match users' queries.
// https://www.algolia.com/doc/api-reference/api-methods/save-synonyms/#save-synonyms
getSynonyms() {
return [
[".NET", "dotnet"],
["aws", "aws classic"],
["azure", "azure native"],
["azuread", "azure ad", "azure active directory"],
["c#", "csharp"],
["cfn", "cloudformation"],
["config", "configuration"],
["crossguard", "pac", "policy as code"],
["crosswalk", "awsx"],
["f#", "fsharp"],
["gcp", "google cloud"],
["how-to guide", "how to guide", "example"],
["k8s", "kube", "kubernetes"],
["openid connect", "oidc"],
["org", "organization"],
["provider", "package"],
["pulumi service", "pulumi console", "pulumi cloud"],
["rbac", "role based access control"],
["saml", "sso"],
["stack reference", "stackreference"],
["tf", "terraform"],
["vm", "virtual machine"],
]
.map((synonyms, i) => {
return {
objectID: `synonym-${i}`,
type: "synonym",
synonyms,
};
});
},
// Searchable attributes control the fields that Algolia uses for query matching, as well as how
// relevant those fields are in relation to one another.
//
// The items in this list and their order are extremely significant. Do not adjust this list in
// any way unless you fully understand the implications of your change *and* you have verified
// the change on an index that isn't production.
//
// https://www.algolia.com/doc/guides/sending-and-managing-data/prepare-your-data/how-to/setting-searchable-attributes/#set-searchable-attributes-with-the-api
getSearchableAttributes() {
return [
"title,h1", // Title and H1 are considered of equal relevance, so they're listed on the same level.
"keywords", // Keywords are treated as ordered. Those higher up in the list are considered more relevant.
"href", // Hrefs are considered searchable as well. (URLs often contain relevant keywords.)
"unordered(tags)", // Tags are treated as unordered. Unlike keywords, their order has no significance.
"ancestors", // Ancestors contains a list of the labels comprising a breadcrumb. (These often contain relevant keywords also.)
"description", // Descriptions occasionally contain relevant keywords, but often don't, so we place them further down in the list.
"section", // Section is the primary "facet" of a record -- Docs, Registry, Blog, Examples, etc.
"unordered(authors)", // Blog-post authors are occasionally useful for searching, but their order is considered irrelevant.
];
},
// Attributes to highlight contains the list of searchable attributes that might be used to highlight query matches in the UI.
// https://www.algolia.com/doc/api-reference/api-parameters/attributesToHighlight/
getAttributesToHighlight() {
return [
"title",
"h1",
"description",
];
},
// Custom rankings are the attributes that Algolia uses for determining relative ranking --
// specifically for breaking ties between records that rank similarly for text matching. Similar
// to the above, order here is significant as well, so any changes here should be made with
// equal care.
//
// https://www.algolia.com/doc/guides/managing-results/must-do/custom-ranking/how-to/configure-custom-ranking
getCustomRanking() {
return [
// https://www.algolia.com/doc/guides/managing-results/must-do/custom-ranking/how-to/configure-custom-ranking/#configure-custom-ranking-with-the-api
"desc(rank)",
// https://www.algolia.com/doc/guides/managing-results/must-do/custom-ranking/how-to/boost-or-penalize-some-records/#using-the-api
"desc(boosted)",
];
},
// Rules are explicit instructions that apply fine-grained control over how certain queries are handled.
// https://www.algolia.com/doc/guides/managing-results/rules/rules-overview/
// https://www.algolia.com/doc/api-reference/api-methods/save-rule
getRules() {
return [
// When the query is for "cloud", deliver the Pulumi Cloud overview page as the top result.
{
objectID: "is-cloud",
enabled: true,
conditions: [
{
anchoring: "is",
pattern: "cloud",
alternatives: false,
},
],
consequence: {
filterPromotes: true,
promote: [
{
position: 0,
objectIDs: [
page.getObjectID({ href: "/docs/pulumi-cloud/" }),
],
},
],
},
},
// When the query contains "awsx" and the section is Registry, return AWSx, API Gateway, and EKS as the top results.
{
objectID: "contains-awsx-and-is-registry",
enabled: true,
conditions: [
{
anchoring: "contains",
pattern: "awsx",
alternatives: true,
filters: "(\"section\":\"Registry\")"
}
],
consequence: {
filterPromotes: true,
promote: [
{
position: 0,
objectIDs: [
page.getObjectID({ href: "/registry/packages/awsx/" }),
page.getObjectID({ href: "/registry/packages/aws-apigateway/" }),
page.getObjectID({ href: "/registry/packages/eks/" }),
],
},
],
},
},
// When the query contains "awsx" and the section is Docs, return the AWS Guides as the top result.
{
objectID: "contains-awsx-and-is-docs",
enabled: true,
conditions: [
{
anchoring: "contains",
pattern: "awsx",
alternatives: true,
filters: "(\"section\":\"Docs\")"
}
],
consequence: {
filterPromotes: true,
promote: [
{
position: 0,
objectIDs: [
page.getObjectID({ href: "/docs/iac/clouds/aws/guides/" }),
],
},
],
},
},
// When the query contains "awsx" and the section is "Docs or Registry", return the Guides, AWSx, API Gateway, and EKS.
{
objectID: "contains-awsx-and-is-docs-or-registry",
enabled: true,
conditions: [
{
anchoring: "contains",
pattern: "awsx",
alternatives: true,
filters: "(\"section\":\"Docs\" OR \"section\":\"Registry\")"
}
],
consequence: {
filterPromotes: true,
promote: [
{
position: 0,
objectIDs: [
page.getObjectID({ href: "/docs/iac/clouds/aws/guides/" }),
page.getObjectID({ href: "/registry/packages/awsx/" }),
page.getObjectID({ href: "/registry/packages/aws-apigateway/" }),
page.getObjectID({ href: "/registry/packages/eks/" }),
],
},
],
},
},
];
},
};