@@ -127,12 +127,6 @@ function recursiveFreeze( obj ) {
127
127
Object . freeze ( obj ) ;
128
128
}
129
129
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
-
136
130
/**
137
131
* URL Metric being assembled for submission.
138
132
*
@@ -331,6 +325,16 @@ export default async function detect( {
331
325
return ;
332
326
}
333
327
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
+
334
338
// TODO: Does this make sense here?
335
339
// Prevent detection when page is not scrolled to the initial viewport.
336
340
if ( doc . documentElement . scrollTop > 0 ) {
@@ -449,7 +453,10 @@ export default async function detect( {
449
453
450
454
urlMetric = {
451
455
url : currentUrl ,
452
- viewport,
456
+ viewport : {
457
+ width : win . innerWidth ,
458
+ height : win . innerHeight ,
459
+ } ,
453
460
elements : [ ] ,
454
461
} ;
455
462
@@ -512,10 +519,7 @@ export default async function detect( {
512
519
513
520
// Only proceed with submitting the URL Metric if viewport stayed the same size. Changing the viewport size (e.g. due
514
521
// 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 ) {
519
523
if ( isDebug ) {
520
524
log (
521
525
'Aborting URL Metric collection due to viewport size change.'
0 commit comments