Skip to content

Commit a66325a

Browse files
committed
Eliminate duplicate error messages
Signed-off-by: Shyamsundar Gadde <[email protected]>
1 parent ecf0fbd commit a66325a

File tree

1 file changed

+24
-24
lines changed

1 file changed

+24
-24
lines changed

plugins/optimization-detective/detect.js

+24-24
Original file line numberDiff line numberDiff line change
@@ -161,15 +161,8 @@ async function getAlreadySubmittedSessionStorageKey(
161161
currentUrl,
162162
urlMetricGroupStatus
163163
) {
164-
// Check if crypto.subtle is available.
165164
if ( ! window.crypto || ! window.crypto.subtle ) {
166-
// eslint-disable-next-line no-console
167-
console.warn(
168-
'[Optimization Detective] Web Crypto API is not available. This API is only available in secure contexts (HTTPS). Detection cannot proceed. If you are testing locally, ensure you use HTTPS or run on localhost.'
169-
);
170-
throw new Error(
171-
'Web Crypto API is unavailable in this context. Try using HTTPS or localhost.'
172-
);
165+
throw new Error( 'Web Crypto API is unavailable' );
173166
}
174167

175168
const message = [
@@ -402,35 +395,42 @@ export default async function detect( {
402395
return;
403396
}
404397

398+
// Abort if the client already submitted a URL Metric for this URL and viewport group.
405399
let alreadySubmittedSessionStorageKey;
406400
try {
407-
// Abort if the client already submitted a URL Metric for this URL and viewport group.
408401
alreadySubmittedSessionStorageKey =
409402
await getAlreadySubmittedSessionStorageKey(
410403
currentETag,
411404
currentUrl,
412405
urlMetricGroupStatus
413406
);
414-
if ( alreadySubmittedSessionStorageKey in sessionStorage ) {
415-
const previousVisitTime = parseInt(
416-
sessionStorage.getItem( alreadySubmittedSessionStorageKey ),
417-
10
407+
} catch ( err ) {
408+
if ( err.message === 'Web Crypto API is unavailable' ) {
409+
error(
410+
'Unable to create session storage key: Web Crypto API is not available. This API is only available in secure contexts (HTTPS). Detection cannot proceed. If you are testing locally, ensure you use HTTPS or run on localhost.'
418411
);
419-
if (
420-
! isNaN( previousVisitTime ) &&
421-
( getCurrentTime() - previousVisitTime ) / 1000 < freshnessTTL
422-
) {
423-
log(
424-
'The current client session already submitted a fresh URL Metric for this URL so a new one will not be collected now.'
425-
);
426-
return;
427-
}
412+
} else {
413+
error( 'Unable to create session storage key: ' + err.message );
428414
}
429-
} catch ( err ) {
430-
warn( 'Unable to create session storage key: ' + err.message );
431415
return;
432416
}
433417

418+
if ( alreadySubmittedSessionStorageKey in sessionStorage ) {
419+
const previousVisitTime = parseInt(
420+
sessionStorage.getItem( alreadySubmittedSessionStorageKey ),
421+
10
422+
);
423+
if (
424+
! isNaN( previousVisitTime ) &&
425+
( getCurrentTime() - previousVisitTime ) / 1000 < freshnessTTL
426+
) {
427+
log(
428+
'The current client session already submitted a fresh URL Metric for this URL so a new one will not be collected now.'
429+
);
430+
return;
431+
}
432+
}
433+
434434
// Abort if the viewport aspect ratio is not in a common range.
435435
const aspectRatio = win.innerWidth / win.innerHeight;
436436
if (

0 commit comments

Comments
 (0)