Skip to content

Commit e222c85

Browse files
committed
Use resize event to detect viewport change
1 parent a5bd367 commit e222c85

File tree

1 file changed

+15
-11
lines changed

1 file changed

+15
-11
lines changed

plugins/optimization-detective/detect.js

+15-11
Original file line numberDiff line numberDiff line change
@@ -127,12 +127,6 @@ function recursiveFreeze( obj ) {
127127
Object.freeze( obj );
128128
}
129129

130-
// This needs to be captured early in case the user later resizes the window.
131-
const viewport = {
132-
width: win.innerWidth,
133-
height: win.innerHeight,
134-
};
135-
136130
/**
137131
* URL Metric being assembled for submission.
138132
*
@@ -331,6 +325,16 @@ export default async function detect( {
331325
return;
332326
}
333327

328+
// Keep track of whether the window resized. If it resized, we abort sending the URLMetric.
329+
let didWindowResize = false;
330+
window.addEventListener(
331+
'resize',
332+
() => {
333+
didWindowResize = true;
334+
},
335+
{ once: true }
336+
);
337+
334338
// TODO: Does this make sense here?
335339
// Prevent detection when page is not scrolled to the initial viewport.
336340
if ( doc.documentElement.scrollTop > 0 ) {
@@ -449,7 +453,10 @@ export default async function detect( {
449453

450454
urlMetric = {
451455
url: currentUrl,
452-
viewport,
456+
viewport: {
457+
width: win.innerWidth,
458+
height: win.innerHeight,
459+
},
453460
elements: [],
454461
};
455462

@@ -512,10 +519,7 @@ export default async function detect( {
512519

513520
// Only proceed with submitting the URL Metric if viewport stayed the same size. Changing the viewport size (e.g. due
514521
// to resizing a window or changing the orientation of a device) will result in unexpected metrics being collected.
515-
if (
516-
window.innerWidth !== urlMetric.viewport.width ||
517-
window.innerHeight !== urlMetric.viewport.height
518-
) {
522+
if ( didWindowResize ) {
519523
if ( isDebug ) {
520524
log(
521525
'Aborting URL Metric collection due to viewport size change.'

0 commit comments

Comments
 (0)