-
Notifications
You must be signed in to change notification settings - Fork 462
Expand file tree
/
Copy pathPublish.tsx
More file actions
448 lines (422 loc) · 14.8 KB
/
Publish.tsx
File metadata and controls
448 lines (422 loc) · 14.8 KB
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
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
/* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
import * as React from 'react';
import classNames from 'classnames';
import type { InflightProfileEncoding } from 'firefox-profiler/actions/publish';
import {
updateSharingOption,
attemptToPublish,
resetUploadState,
encodeSanitizedProfile,
} from 'firefox-profiler/actions/publish';
import {
getProfile,
getProfileRootRange,
getHasPreferenceMarkers,
getContainsPrivateBrowsingInformation,
getHasArgumentValues,
} from 'firefox-profiler/selectors/profile';
import {
getAbortFunction,
getCheckedSharingOptions,
getFilenameString,
getUploadPhase,
getUploadProgress,
getUploadProgressString,
getUploadError,
getShouldSanitizeByDefault,
getSanitizedProfileEncodingState,
} from 'firefox-profiler/selectors/publish';
import { BlobUrlLink } from 'firefox-profiler/components/shared/BlobUrlLink';
import { assertExhaustiveCheck } from 'firefox-profiler/utils/types';
import prettyBytes from 'firefox-profiler/utils/pretty-bytes';
import explicitConnect, {
type ConnectedProps,
} from 'firefox-profiler/utils/connect';
import WarningImage from 'firefox-profiler-res/img/svg/warning.svg';
import type {
Profile,
CheckedSharingOptions,
StartEndRange,
UploadPhase,
SanitizedProfileEncodingState,
} from 'firefox-profiler/types';
import './Publish.css';
import { Localized } from '@fluent/react';
type OwnProps = {
readonly isRepublish?: boolean;
};
type StateProps = {
readonly profile: Profile;
readonly rootRange: StartEndRange;
readonly shouldShowPreferenceOption: boolean;
readonly profileContainsPrivateBrowsingInformation: boolean;
readonly profileHasArgumentValues: boolean;
readonly checkedSharingOptions: CheckedSharingOptions;
readonly sanitizedProfileEncodingState: SanitizedProfileEncodingState;
readonly downloadFileName: string;
readonly uploadPhase: UploadPhase;
readonly uploadProgress: number;
readonly uploadProgressString: string;
readonly shouldSanitizeByDefault: boolean;
readonly uploadError: unknown;
readonly abortFunction: () => void;
};
type DispatchProps = {
readonly updateSharingOption: typeof updateSharingOption;
readonly encodeSanitizedProfile: typeof encodeSanitizedProfile;
readonly attemptToPublish: typeof attemptToPublish;
readonly resetUploadState: typeof resetUploadState;
};
type PublishProps = ConnectedProps<OwnProps, StateProps, DispatchProps>;
class PublishPanelImpl extends React.PureComponent<PublishProps, {}> {
_inflightEncoding: InflightProfileEncoding | undefined;
override componentDidMount(): void {
this._inflightEncoding = this.props.encodeSanitizedProfile();
}
_onCheckboxChange = (e: React.ChangeEvent<HTMLInputElement>) => {
const sharingOption = e.target.name as keyof CheckedSharingOptions;
this.props.updateSharingOption(sharingOption, e.target.checked);
this._inflightEncoding = this.props.encodeSanitizedProfile(
this._inflightEncoding
);
};
_renderCheckbox(
slug: keyof CheckedSharingOptions,
labelL10nId: string,
additionalContent?: React.ReactNode
) {
const { checkedSharingOptions } = this.props;
return (
<label className="photon-label publishPanelDataChoicesLabel">
<input
type="checkbox"
className="photon-checkbox photon-checkbox-default"
name={slug}
onChange={this._onCheckboxChange}
checked={checkedSharingOptions[slug]}
/>
<Localized id={labelL10nId} />
{additionalContent}
</label>
);
}
_onSubmit = () => {
this.props.attemptToPublish(this._inflightEncoding);
};
_renderPublishPanel() {
const {
shouldShowPreferenceOption,
profileContainsPrivateBrowsingInformation,
profileHasArgumentValues,
sanitizedProfileEncodingState,
downloadFileName,
shouldSanitizeByDefault,
isRepublish,
} = this.props;
return (
<div data-testid="PublishPanel-container">
<form
className="publishPanelContent photon-body-10"
onSubmit={this._onSubmit}
>
<h1 className="publishPanelTitle photon-title-40">
{isRepublish ? (
<Localized id="MenuButtons--publish--reupload-performance-profile">
Re-upload Performance Profile
</Localized>
) : (
<Localized id="MenuButtons--publish--share-performance-profile">
Share Performance Profile
</Localized>
)}
</h1>
<p className="publishPanelInfoDescription">
<Localized id="MenuButtons--publish--info-description">
Upload your profile and make it accessible to anyone with the
link.
</Localized>{' '}
{shouldSanitizeByDefault ? (
<Localized id="MenuButtons--publish--info-description-default">
By default, your personal data is removed.
</Localized>
) : (
<Localized id="MenuButtons--publish--info-description-firefox-nightly2">
This profile is from Firefox Nightly, so by default most
information is included.
</Localized>
)}
</p>
<h3 className="photon-title-10">
<Localized id="MenuButtons--publish--include-additional-data">
Include additional data that may be identifiable
</Localized>
</h3>
<div className="publishPanelDataChoices">
{this._renderCheckbox(
'includeHiddenThreads',
'MenuButtons--publish--renderCheckbox-label-hidden-threads'
)}
{this._renderCheckbox(
'includeFullTimeRange',
'MenuButtons--publish--renderCheckbox-label-hidden-time'
)}
{this._renderCheckbox(
'includeScreenshots',
'MenuButtons--publish--renderCheckbox-label-include-screenshots'
)}
{this._renderCheckbox(
'includeUrls',
'MenuButtons--publish--renderCheckbox-label-resource'
)}
{this._renderCheckbox(
'includeExtension',
'MenuButtons--publish--renderCheckbox-label-extension'
)}
{shouldShowPreferenceOption
? this._renderCheckbox(
'includePreferenceValues',
'MenuButtons--publish--renderCheckbox-label-preference'
)
: null}
{profileContainsPrivateBrowsingInformation
? this._renderCheckbox(
'includePrivateBrowsingData',
'MenuButtons--publish--renderCheckbox-label-private-browsing',
<Localized
id="MenuButtons--publish--renderCheckbox-label-private-browsing-warning-image"
attrs={{ title: true }}
>
<img
className="publishPanelDataChoicesIndicator"
src={WarningImage}
title="This profile contains private browsing data"
/>
</Localized>
)
: null}
{profileHasArgumentValues
? this._renderCheckbox(
'includeArgumentValues',
'MenuButtons--publish--renderCheckbox-label-argument-values'
)
: null}
</div>
{sanitizedProfileEncodingState.phase === 'ERROR' ? (
<div className="photon-message-bar photon-message-bar-error photon-message-bar-inner-content">
<div className="photon-message-bar-inner-text">
<Localized id="MenuButtons--publish--error-while-compressing">
Error while compressing, try unchecking some checkboxes to
reduce the profile size.
</Localized>
</div>
</div>
) : null}
<div className="publishPanelButtons">
<DownloadButton
downloadFileName={downloadFileName}
sanitizedProfileEncodingState={sanitizedProfileEncodingState}
/>
<button
type="submit"
className="photon-button photon-button-primary publishPanelButton publishPanelButtonsUpload"
disabled={sanitizedProfileEncodingState.phase === 'ERROR'}
>
<span className="publishPanelButtonsSvg publishPanelButtonsSvgUpload" />
<Localized id="MenuButtons--publish--button-upload">
Upload
</Localized>
</button>
</div>
</form>
</div>
);
}
_renderUploadPanel() {
const {
uploadProgress,
uploadProgressString,
abortFunction,
downloadFileName,
sanitizedProfileEncodingState,
} = this.props;
return (
<div
className="publishPanelUpload photon-body-10"
data-testid="PublishPanel-container"
>
<div className="publishPanelUploadTop">
<div className="publishPanelUploadTitle photon-title-20">
<Localized id="MenuButtons--publish--upload-title">
Uploading profile…
</Localized>
</div>
<div className="publishPanelUploadPercentage">
{uploadProgressString}
</div>
<div className="publishPanelUploadBar">
<div
className="publishPanelUploadBarInner"
style={{ width: `${uploadProgress * 100}%` }}
/>
</div>
</div>
<div className="publishPanelButtons">
<DownloadButton
downloadFileName={downloadFileName}
sanitizedProfileEncodingState={sanitizedProfileEncodingState}
/>
<button
type="button"
className="photon-button photon-button-default publishPanelButton publishPanelButtonsCancelUpload"
onClick={abortFunction}
>
<Localized id="MenuButtons--publish--cancel-upload">
Cancel Upload
</Localized>
</button>
</div>
</div>
);
}
_renderErrorPanel() {
const { uploadError: error, resetUploadState } = this.props;
let message: string =
'There was an unknown error when trying to upload the profile.';
if (
error &&
typeof error === 'object' &&
'message' in error &&
typeof error.message === 'string'
) {
// This is most likely an error, but do a runtime check just in case.
message = error.message;
} else if (typeof error === 'string') {
message = error;
}
return (
<div
className="publishPanelUpload photon-body-10"
data-testid="PublishPanel-container"
>
<div className="photon-message-bar photon-message-bar-error photon-message-bar-inner-content">
<div className="photon-message-bar-inner-text">
<Localized id="MenuButtons--publish--message-something-went-wrong">
Uh oh, something went wrong when uploading the profile.
</Localized>
</div>
<button
className="photon-button photon-button-micro photon-message-bar-action-button"
type="button"
onClick={resetUploadState}
>
<Localized id="MenuButtons--publish--message-try-again">
Try again
</Localized>
</button>
</div>
<div className="publishPanelError">{message}</div>
</div>
);
}
override render() {
const { uploadPhase } = this.props;
switch (uploadPhase) {
case 'error':
return this._renderErrorPanel();
case 'local':
case 'uploaded':
return this._renderPublishPanel();
case 'uploading':
case 'compressing':
return this._renderUploadPanel();
default:
throw assertExhaustiveCheck(uploadPhase);
}
}
}
export const PublishPanel = explicitConnect<
OwnProps,
StateProps,
DispatchProps
>({
mapStateToProps: (state) => ({
profile: getProfile(state),
rootRange: getProfileRootRange(state),
shouldShowPreferenceOption: getHasPreferenceMarkers(state),
profileContainsPrivateBrowsingInformation:
getContainsPrivateBrowsingInformation(state),
profileHasArgumentValues: getHasArgumentValues(state),
checkedSharingOptions: getCheckedSharingOptions(state),
downloadFileName: getFilenameString(state),
sanitizedProfileEncodingState: getSanitizedProfileEncodingState(state),
uploadPhase: getUploadPhase(state),
uploadProgress: getUploadProgress(state),
uploadProgressString: getUploadProgressString(state),
uploadError: getUploadError(state),
shouldSanitizeByDefault: getShouldSanitizeByDefault(state),
abortFunction: getAbortFunction(state),
}),
mapDispatchToProps: {
updateSharingOption,
encodeSanitizedProfile,
attemptToPublish,
resetUploadState,
},
component: PublishPanelImpl,
});
type DownloadButtonProps = {
readonly sanitizedProfileEncodingState: SanitizedProfileEncodingState;
readonly downloadFileName: string;
};
/**
* The DownloadButton handles unpacking the compressed profile promise.
*/
class DownloadButton extends React.PureComponent<DownloadButtonProps, {}> {
override render() {
const { sanitizedProfileEncodingState, downloadFileName } = this.props;
const className =
'photon-button publishPanelButton publishPanelButtonsDownload';
switch (sanitizedProfileEncodingState.phase) {
case 'DONE': {
const { profileData } = sanitizedProfileEncodingState;
return (
<BlobUrlLink
blob={profileData}
download={`${downloadFileName}.gz`}
className={className}
>
<span className="publishPanelButtonsSvg publishPanelButtonsSvgDownload" />
<Localized id="MenuButtons--publish--download">Download</Localized>{' '}
<span className="menuButtonsDownloadSize">
({prettyBytes(profileData.size)})
</span>
</BlobUrlLink>
);
}
case 'ERROR': {
return (
<button type="button" className={className} disabled>
<Localized id="MenuButtons--publish--download">Download</Localized>
</button>
);
}
case 'INITIAL':
case 'ENCODING': {
return (
<button
type="button"
className={classNames(className, 'publishPanelButtonDisabled')}
>
<Localized id="MenuButtons--publish--compressing">
Compressing…
</Localized>
</button>
);
}
default:
throw assertExhaustiveCheck(sanitizedProfileEncodingState);
}
}
}