Detects when user changes same config setting 3+ times within 24 hours. Shows non-intrusive prompt offering help with guided calibration flow. Guided calibration features: - Test for false positives (walk around room) - Test for missed motion (sit still) - Suggest optimal value based on diurnal baseline SNR and link health - Apply suggested value button Files: - dashboard/js/proactive.js: Complete implementation with localStorage tracking Acceptance: - Help prompt fires after 3+ changes in 24h - Calibration flow tests both directions - Suggests value based on system data - Apply button works
27 lines
794 B
JavaScript
27 lines
794 B
JavaScript
'use strict';
|
|
|
|
/**
|
|
* @param {string} msg The message to wrap
|
|
* @param {object} opts
|
|
* @param {number|string} [opts.margin] Left margin
|
|
* @param {number} opts.width Maximum characters per line including the margin
|
|
*/
|
|
module.exports = (msg, opts = {}) => {
|
|
const tab = Number.isSafeInteger(parseInt(opts.margin))
|
|
? new Array(parseInt(opts.margin)).fill(' ').join('')
|
|
: (opts.margin || '');
|
|
|
|
const width = opts.width;
|
|
|
|
return (msg || '').split(/\r?\n/g)
|
|
.map(line => line
|
|
.split(/\s+/g)
|
|
.reduce((arr, w) => {
|
|
if (w.length + tab.length >= width || arr[arr.length - 1].length + w.length + 1 < width)
|
|
arr[arr.length - 1] += ` ${w}`;
|
|
else arr.push(`${tab}${w}`);
|
|
return arr;
|
|
}, [ tab ])
|
|
.join('\n'))
|
|
.join('\n');
|
|
};
|