You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Change minimum viewport width to be exclusive whereas the maximum width remains inclusive
This will allow for creating media queries that avoid any 1px gaps. The key code change is in `OD_URL_Metric_Group::is_viewport_width_in_range()` (and `isViewportNeeded` in `detect.js`). This also avoid the need to add the number 1 to the minimum viewport width which can be confusing given the known breakpoints. This instead moves the addition of 1 at the moment to `od_generate_media_query()` but this will be removed with resolution of #1696.
Require that a viewport width and height for a URL Metric be at least 1px.
Copy file name to clipboardexpand all lines: plugins/optimization-detective/class-od-url-metric-group.php
+12-12
Original file line number
Diff line number
Diff line change
@@ -32,12 +32,11 @@ final class OD_URL_Metric_Group implements IteratorAggregate, Countable, JsonSer
32
32
private$url_metrics;
33
33
34
34
/**
35
-
* Minimum possible viewport width for the group (inclusive).
35
+
* Minimum possible viewport width for the group (exclusive).
36
36
*
37
37
* @since 0.1.0
38
38
*
39
-
* @var int
40
-
* @phpstan-var 0|positive-int
39
+
* @var int<0, max>
41
40
*/
42
41
private$minimum_viewport_width;
43
42
@@ -46,8 +45,7 @@ final class OD_URL_Metric_Group implements IteratorAggregate, Countable, JsonSer
46
45
*
47
46
* @since 0.1.0
48
47
*
49
-
* @var int
50
-
* @phpstan-var positive-int
48
+
* @var int<1, max>
51
49
*/
52
50
private$maximum_viewport_width;
53
51
@@ -103,8 +101,8 @@ final class OD_URL_Metric_Group implements IteratorAggregate, Countable, JsonSer
103
101
* @throws InvalidArgumentException If arguments are invalid.
104
102
*
105
103
* @param OD_URL_Metric[] $url_metrics URL Metrics to add to the group.
106
-
* @param int $minimum_viewport_width Minimum possible viewport width for the group. Must be zero or greater.
107
-
* @param int $maximum_viewport_width Maximum possible viewport width for the group. Must be greater than zero and the minimum viewport width.
104
+
* @param int $minimum_viewport_width Minimum possible viewport width (exclusive) for the group. Must be zero or greater.
105
+
* @param int $maximum_viewport_width Maximum possible viewport width (inclusive) for the group. Must be greater than zero and the minimum viewport width.
108
106
* @param int $sample_size Sample size for the maximum number of viewports in a group between breakpoints.
109
107
* @param int $freshness_ttl Freshness age (TTL) for a given URL Metric.
110
108
* @param OD_URL_Metric_Group_Collection $collection Collection that this instance belongs to.
@@ -158,12 +156,12 @@ public function __construct( array $url_metrics, int $minimum_viewport_width, in
158
156
}
159
157
160
158
/**
161
-
* Gets the minimum possible viewport width (inclusive).
159
+
* Gets the minimum possible viewport width (exclusive).
162
160
*
163
161
* @since 0.1.0
164
162
*
165
163
* @todo Eliminate in favor of readonly public property.
_doing_it_wrong( __FUNCTION__, esc_html__( 'The minimum width cannot be greater than the maximum width.', 'optimization-detective' ), 'Optimization Detective 0.7.0' );
_doing_it_wrong( __FUNCTION__, esc_html__( 'The minimum width cannot be greater than or equal to the maximum width.', 'optimization-detective' ), 'Optimization Detective 0.7.0' );
0 commit comments