forked from web-platform-tests/wpt.fyi
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwpt-flags.js
323 lines (301 loc) · 9.65 KB
/
wpt-flags.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
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
/**
* Copyright 2018 The WPT Dashboard Project. All rights reserved.
* Use of this source code is governed by a BSD-style license that can be
* found in the LICENSE file.
*/
/*
`<wpt-flags>` is a component for checking wpt.fyi feature flags.
*/
import '../node_modules/@polymer/paper-checkbox/paper-checkbox.js';
import '../node_modules/@polymer/paper-item/paper-item.js';
import { html, PolymerElement } from '../node_modules/@polymer/polymer/polymer-element.js';
import { WPTEnvironmentFlags } from './wpt-env-flags.js';
const $_documentContainer = document.createElement('template');
$_documentContainer.innerHTML = `<dom-module id="wpt-flags">
</dom-module>`;
document.head.appendChild($_documentContainer.content);
window.wpt = window.wpt || {};
/* global wpt */
Object.defineProperty(wpt, 'ClientSideFeatures', {
get: function() {
return [
'colorHomepage',
'diffFromAPI',
'experimentalByDefault',
'experimentalAlignedExceptEdge',
'fetchManifestForTestList',
'githubCommitLinks',
'insightsTab',
'permalinks',
'queryBuilder',
'queryBuilderSHA',
'reftestAnalyzer',
'reftestAnalyzerMockScreenshots',
'reftestIframes',
'searchCacheInterop',
'showTestType',
'showTestRefURL',
'structuredQueries',
'searchPRsForDirectories',
'webPlatformTestsLive',
];
}
});
Object.defineProperty(wpt, 'ServerSideFeatures', {
get: function() {
return [
'checksAllUsers',
'diffRenames',
'failChecksOnRegression',
'ignoreHarnessInTotal',
'paginationTokens',
'pendingChecks',
'runsByPRNumber',
'serviceWorker',
'taskclusterAllBranches',
];
}
});
const makeFeatureProperties = function(target, features, readOnly, useLocalStorage) {
for (const feature of features) {
let value = null;
if (useLocalStorage) {
const stored = localStorage.getItem(`features.${feature}`);
value = stored && JSON.parse(stored);
}
// Fall back to env default.
if (value === null && typeof(WPTEnvironmentFlags) !== 'undefined') {
value = WPTEnvironmentFlags[feature];
}
target[feature] = {
type: Boolean,
readOnly: readOnly && !wpt.MUTABLE_FLAGS,
notify: true,
value: value,
};
}
};
wpt.FlagsClass = (superClass, readOnly, useLocalStorage) => class extends superClass {
static get is() {
return 'wpt-flags';
}
static get properties() {
const props = {};
makeFeatureProperties(props, wpt.ClientSideFeatures, readOnly, useLocalStorage);
return props;
}
};
const WPTFlags = (superClass) => wpt.FlagsClass(superClass, /*readOnly*/ true, /*useLocalStorage*/ true);
const FlagsEditorClass = (environmentFlags) =>
class extends wpt.FlagsClass(PolymerElement, /*readOnly*/ false, /*useLocalStorage*/ !environmentFlags) {
ready() {
super.ready();
const features = wpt.ClientSideFeatures;
for (const feature of features) {
this._createMethodObserver(`valueChanged(${feature}, '${feature}')`);
}
}
static get properties() {
const useLocalStorage = !environmentFlags;
const readOnly = false;
const props = {};
makeFeatureProperties(props, wpt.ClientSideFeatures, readOnly, useLocalStorage);
makeFeatureProperties(props, wpt.ServerSideFeatures, readOnly, useLocalStorage);
return props;
}
valueChanged(value, feature) {
if (environmentFlags) {
fetch('/admin/flags', {
method: 'POST',
body: JSON.stringify({
Name: feature,
Enabled: value,
}),
credentials: 'include',
}).catch(e => {
alert(`Failed to save feature ${feature}.\n\n${e}`);
});
} else {
return localStorage.setItem(
`features.${feature}`,
JSON.stringify(value));
}
}
};
class WPTFlagsEditor extends FlagsEditorClass(/*environmentFlags*/ false) {
static get template() {
return html`
<style>
paper-item[sub-item] {
margin-left: 32px;
}
</style>
<paper-item>
<paper-checkbox checked="{{queryBuilder}}">
Query Builder component
</paper-checkbox>
</paper-item>
<paper-item sub-item="">
<paper-checkbox checked="{{queryBuilderSHA}}">
SHA input
</paper-checkbox>
</paper-item>
<paper-item>
<paper-checkbox checked="{{diffFromAPI}}">
Compute diffs using /api/diff
</paper-checkbox>
</paper-item>
<paper-item>
<paper-checkbox checked="{{colorHomepage}}">
Use pass-rate colors on the homepage
</paper-checkbox>
</paper-item>
<paper-item>
<paper-checkbox checked="{{structuredQueries}}">
Interpret query strings as structured queries over test names and test
status/result values
</paper-checkbox>
</paper-item>
<paper-item sub-item>
<paper-checkbox checked="{{searchCacheInterop}}">
Compute interop results the fly, using the searchcache
</paper-checkbox>
</paper-item>
<paper-item>
<paper-checkbox checked="{{fetchManifestForTestList}}">
Fetch a manifest for a complete (expected) list of tests.
</paper-checkbox>
</paper-item>
<paper-item sub-item>
<paper-checkbox checked="{{showTestType}}">
Display test types
</paper-checkbox>
</paper-item>
<paper-item sub-item>
<paper-checkbox checked="{{showTestRefURL}}">
Display link to ref (for reftests)
</paper-checkbox>
</paper-item>
<paper-item sub-item>
<paper-checkbox checked="{{reftestIframes}}">
Display comparitive iframes for reftests
</paper-checkbox>
</paper-item>
<paper-item sub-item>
<paper-checkbox checked="{{reftestAnalyzer}}">
Show the reftest analyzer for reftests
</paper-checkbox>
</paper-item>
<paper-item sub-item>
<paper-checkbox checked="{{reftestAnalyzerMockScreenshots}}">
Use mock screenshots for all the reftests
</paper-checkbox>
</paper-item>
<paper-item>
<paper-checkbox checked="{{githubCommitLinks}}">
Show links to the commit on GitHub in the header row.
</paper-checkbox>
</paper-item>
<paper-item>
<paper-checkbox checked="{{searchPRsForDirectories}}">
On /results, list open PRs involving the current directory.
</paper-checkbox>
</paper-item>
<paper-item>
<paper-checkbox checked="{{permalinks}}">
Show dialog for copying a permalink (on /results page).
</paper-checkbox>
</paper-item>
<paper-item>
<paper-checkbox checked="{{webPlatformTestsLive}}">
Use web-platform-tests.live.
</paper-checkbox>
</paper-item>
`;
}
static get is() {
return 'wpt-flags-editor';
}
}
window.customElements.define(WPTFlagsEditor.is, WPTFlagsEditor);
/* global wpt */
class WPTEnvironmentFlagsEditor extends FlagsEditorClass(/*environmentFlags*/ true) {
static get template() {
return html`
${WPTFlagsEditor.template}
<h3>Server-side only features</h3>
<paper-item>
<paper-checkbox checked="{{diffRenames}}">
Compute renames in diffs with the GitHub API
</paper-checkbox>
</paper-item>
<paper-item>
<paper-checkbox checked="{{experimentalByDefault}}">
Fetch experimental runs as the default (homepage) query
</paper-checkbox>
</paper-item>
<paper-item sub-item="">
<paper-checkbox checked="{{experimentalAlignedExceptEdge}}">
All experimental, except edge, and aligned
</paper-checkbox>
</paper-item>
<paper-item>
<paper-checkbox checked="{{taskclusterAllBranches}}">
Process all taskcluster results (not just master)
</paper-checkbox>
</paper-item>
<paper-item>
<paper-checkbox checked="{{paginationTokens}}">
Return "wpt-next-page" pagination token HTTP header in /api/runs
</paper-checkbox>
</paper-item>
<paper-item>
<paper-checkbox checked="{{runsByPRNumber}}">
Allow /api/runs?pr=[GitHub PR number]
</paper-checkbox>
</paper-item>
<h5>GitHub Status Checks</h5>
<paper-item sub-item="">
<paper-checkbox checked="{{failChecksOnRegression}}">
Set the wpt.fyi GitHub status check to action_required if regressions are found.
</paper-checkbox>
</paper-item>
<paper-item sub-item="">
<paper-checkbox checked="{{checksAllUsers}}">
Run the wpt.fyi GitHub status check for all users, not just whitelisted ones.
</paper-checkbox>
</paper-item>
<paper-item sub-item="">
<paper-checkbox checked="{{pendingChecks}}">
Create pending GitHub status check when results first arrive, and are being processed.
</paper-checkbox>
</paper-item>
<paper-item>
<paper-checkbox checked="{{insightsTab}}">
Show the "Insights" tab in the main navigation, (and enable <a href="/insights">/insights</a>).
</paper-checkbox>
</paper-item>
<paper-item>
<paper-checkbox checked="{{serviceWorker}}">
Install a service worker to cache all the web components.
</paper-checkbox>
</paper-item>
<paper-item>
<paper-checkbox checked="{{ignoreHarnessInTotal}}">
Ignore "OK" harness status in test summary numbers.
</paper-checkbox>
</paper-item>
`;
}
static get is() {
return 'wpt-environment-flags-editor';
}
ready() {
super.ready();
for (const feature of wpt.ServerSideFeatures) {
this._createMethodObserver(`valueChanged(${feature}, '${feature}')`);
}
}
}
window.customElements.define(WPTEnvironmentFlagsEditor.is, WPTEnvironmentFlagsEditor);
export { WPTFlags, WPTFlagsEditor, WPTEnvironmentFlagsEditor };