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
24 lines
805 B
JavaScript
24 lines
805 B
JavaScript
'use strict';
|
|
|
|
var os = require('os');
|
|
|
|
// adapted from https://github.com/sindresorhus/os-homedir/blob/11e089f4754db38bb535e5a8416320c4446e8cfd/index.js
|
|
|
|
module.exports = os.homedir || function homedir() {
|
|
var home = process.env.HOME;
|
|
var user = process.env.LOGNAME || process.env.USER || process.env.LNAME || process.env.USERNAME;
|
|
|
|
if (process.platform === 'win32') {
|
|
return process.env.USERPROFILE || process.env.HOMEDRIVE + process.env.HOMEPATH || home || null;
|
|
}
|
|
|
|
if (process.platform === 'darwin') {
|
|
return home || (user ? '/Users/' + user : null);
|
|
}
|
|
|
|
if (process.platform === 'linux') {
|
|
return home || (process.getuid() === 0 ? '/root' : (user ? '/home/' + user : null)); // eslint-disable-line no-extra-parens
|
|
}
|
|
|
|
return home || null;
|
|
};
|