Skip to content

Commit 59082c7

Browse files
committed
Add --min-density / --max-density options
Fixes #405
1 parent 2df3892 commit 59082c7

4 files changed

+114
-42
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,70 @@
1+
const color = require('ansi-colors')
2+
const logger = require('./logger')
3+
4+
module.exports = function adjustDensitiesAndViewportsWithStats(stats, opt) {
5+
let result = {}
6+
7+
// check screen densities
8+
const statsMinDensity = stats.reduce(
9+
(min, p) => (p.density < min ? p.density : min),
10+
stats[0].density,
11+
)
12+
const statsMaxDensity = stats.reduce(
13+
(max, p) => (p.density > max ? p.density : max),
14+
stats[0].density,
15+
)
16+
logger.info(
17+
`\nScreen densities in stats go from ${color.green(
18+
statsMinDensity,
19+
)} to ${color.green(statsMaxDensity)}`,
20+
)
21+
result.minDensity = statsMinDensity
22+
result.maxDensity = statsMaxDensity
23+
24+
if (opt.minDensity || opt.maxDensity) {
25+
if (opt.minDensity) {
26+
result.minDensity = Math.max(statsMinDensity, opt.minDensity)
27+
}
28+
if (opt.maxDensity) {
29+
result.maxDensity = Math.min(statsMaxDensity, opt.maxDensity)
30+
}
31+
logger.info(
32+
`Screen densities will be limited from ${color.green(
33+
result.minDensity,
34+
)} to ${color.green(result.maxDensity)}`,
35+
)
36+
}
37+
38+
// check viewports
39+
const statsMinViewport = stats.reduce(
40+
(min, p) => (p.viewport < min ? p.viewport : min),
41+
stats[0].viewport,
42+
)
43+
const statsMaxViewport = stats.reduce(
44+
(max, p) => (p.viewport > max ? p.viewport : max),
45+
stats[0].viewport,
46+
)
47+
logger.info(
48+
`\nViewports in stats go from ${color.green(
49+
statsMinViewport + 'px',
50+
)} to ${color.green(statsMaxViewport + 'px')}`,
51+
)
52+
result.minViewport = statsMinViewport
53+
result.maxViewport = statsMaxViewport
54+
55+
if (opt.minViewport || opt.maxViewport) {
56+
if (opt.minViewport) {
57+
result.minViewport = Math.max(statsMinViewport, opt.minViewport)
58+
}
59+
if (opt.maxViewport) {
60+
result.maxViewport = Math.min(statsMaxViewport, opt.maxViewport)
61+
}
62+
logger.info(
63+
`Viewports will be limited from ${color.green(
64+
result.minViewport + 'px',
65+
)} to ${color.green(result.maxViewport + 'px')}`,
66+
)
67+
}
68+
69+
return result
70+
}

src/adjustViewportsWithStats.js

-37
This file was deleted.

src/cli.js

+36-1
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,14 @@ const argv = yargs
3333
describe: 'Maximum viewport width to check',
3434
type: 'number',
3535
},
36+
minDensity: {
37+
describe: 'Minimum screen density to consider',
38+
type: 'number',
39+
},
40+
maxDensity: {
41+
describe: 'Maximum screen density to consider',
42+
type: 'number',
43+
},
3644
url: {
3745
alias: 'u',
3846
describe: 'Page URL',
@@ -83,7 +91,10 @@ const argv = yargs
8391
['minViewport', 'maxViewport'],
8492
'Global: limit viewport widths, for example for Art Direction (see docs)',
8593
)
86-
.group(['statsFile'], 'Step 1: get actual stats of site visitors')
94+
.group(
95+
['statsFile', 'minDensity', 'maxDensity'],
96+
'Step 1: get actual stats of site visitors',
97+
)
8798
.group(
8899
['url', 'selector', 'delay', 'variationsFile'],
89100
'Step 2: get variations of image width across viewport widths',
@@ -118,6 +129,30 @@ const argv = yargs
118129
),
119130
)
120131
}
132+
if (argv.minDensity !== undefined && isNaN(argv.minDensity)) {
133+
throw new Error(
134+
color.red(`Error: ${color.redBright('minDensity')} must be a number`),
135+
)
136+
}
137+
if (argv.minDensity < 0) {
138+
throw new Error(
139+
color.red(`Error: ${color.redBright('minDensity')} must be >= 0`),
140+
)
141+
}
142+
if (argv.maxDensity !== undefined && isNaN(argv.maxDensity)) {
143+
throw new Error(
144+
color.red(`Error: ${color.redBright('maxDensity')} must be a number`),
145+
)
146+
}
147+
if (argv.maxDensity < argv.minDensity) {
148+
throw new Error(
149+
color.red(
150+
`Error: ${color.redBright(
151+
'maxDensity',
152+
)} must be greater than minDensity`,
153+
),
154+
)
155+
}
121156
if (isNaN(argv.delay)) {
122157
throw new Error(
123158
color.red(`Error: ${color.redBright('delay')} must be a number`),

src/index.js

+8-4
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ const fs = require('fs')
22
const util = require('util')
33
const path = require('path')
44
const color = require('ansi-colors')
5-
const adjustViewportsWithStats = require('./adjustViewportsWithStats')
5+
const adjustDensitiesAndViewportsWithStats = require('./adjustDensitiesAndViewportsWithStats')
66
const getStats = require('./getStats')
77
const browse = require('./browse')
88
const logger = require('./logger')
@@ -16,6 +16,8 @@ const defaultOptions = {
1616
selector: 'img',
1717
statsFile: null,
1818
variationsFile: null,
19+
minDensity: null,
20+
maxDensity: null,
1921
minViewport: null,
2022
maxViewport: null,
2123
delay: 5,
@@ -41,7 +43,7 @@ module.exports = async function main(settings) {
4143
path.resolve(options.basePath, options.statsFile),
4244
options,
4345
)
44-
Object.assign(options, adjustViewportsWithStats(stats, options))
46+
Object.assign(options, adjustDensitiesAndViewportsWithStats(stats, options))
4547

4648
/* ======================================================================== */
4749
logger.info(
@@ -72,6 +74,8 @@ module.exports = async function main(settings) {
7274
let totalViews = 0
7375
stats.map((value) => {
7476
if (
77+
value.density >= options.minDensity &&
78+
value.density <= options.maxDensity &&
7579
value.viewport >= options.minViewport &&
7680
value.viewport <= options.maxViewport
7781
) {
@@ -179,7 +183,7 @@ module.exports = async function main(settings) {
179183
options.widthsNumber
180184
} best widths, ${color.green('no computation necessary')}`,
181185
)
182-
optimalWidths = perfectWidthsByDecreasingViews.values()
186+
optimalWidths = [...perfectWidthsByDecreasingViews.keys()]
183187
} else {
184188
// Get all possible subset combinations in an array, with minimum and maximum lengths
185189
// Adapted from https://www.w3resource.com/javascript-exercises/javascript-function-exercise-21.php
@@ -312,7 +316,7 @@ module.exports = async function main(settings) {
312316
/* -------------------------- */
313317

314318
let srcset = []
315-
optimalWidths.forEach((width) => {
319+
optimalWidths.sort().forEach((width) => {
316320
srcset.push(`your/image/path.ext ${width}w`)
317321
})
318322

0 commit comments

Comments
 (0)