mirror of
https://github.com/netbymatt/ws4kp.git
synced 2026-04-14 15:49:31 -07:00
116 lines
2.5 KiB
JavaScript
116 lines
2.5 KiB
JavaScript
import Setting from './utils/setting.mjs';
|
|
|
|
document.addEventListener('DOMContentLoaded', () => {
|
|
init();
|
|
});
|
|
|
|
// default speed
|
|
const settings = { speed: { value: 1.0 } };
|
|
|
|
const init = () => {
|
|
// create settings see setting.mjs for defaults
|
|
settings.wide = new Setting('wide', {
|
|
name: 'Widescreen',
|
|
defaultValue: false,
|
|
changeAction: wideScreenChange,
|
|
sticky: true,
|
|
});
|
|
settings.kiosk = new Setting('kiosk', {
|
|
name: 'Kiosk',
|
|
defaultValue: false,
|
|
changeAction: kioskChange,
|
|
sticky: false,
|
|
});
|
|
settings.speed = new Setting('speed', {
|
|
name: 'Speed',
|
|
type: 'select',
|
|
defaultValue: 1.0,
|
|
values: [
|
|
[0.5, 'Very Fast'],
|
|
[0.75, 'Fast'],
|
|
[1.0, 'Normal'],
|
|
[1.25, 'Slow'],
|
|
[1.5, 'Very Slow'],
|
|
],
|
|
});
|
|
settings.scanLines = new Setting('scanLines', {
|
|
name: 'Scan Lines',
|
|
defaultValue: false,
|
|
changeAction: scanLineChange,
|
|
sticky: true,
|
|
});
|
|
settings.units = new Setting('units', {
|
|
name: 'Units',
|
|
type: 'select',
|
|
defaultValue: 'us',
|
|
changeAction: unitChange,
|
|
values: [
|
|
['us', 'US'],
|
|
['si', 'Metric'],
|
|
],
|
|
});
|
|
settings.refreshTime = new Setting('refreshTime', {
|
|
type: 'select',
|
|
defaultValue: 600_000,
|
|
sticky: false,
|
|
values: [
|
|
[30_000, 'TESTING'],
|
|
[300_000, '5 minutes'],
|
|
[600_000, '10 minutes'],
|
|
[900_000, '15 minutes'],
|
|
[1_800_000, '30 minutes'],
|
|
],
|
|
visible: false,
|
|
});
|
|
|
|
// generate html objects
|
|
const settingHtml = Object.values(settings).map((d) => d.generate());
|
|
|
|
// write to page
|
|
const settingsSection = document.querySelector('#settings');
|
|
settingsSection.innerHTML = '';
|
|
settingsSection.append(...settingHtml);
|
|
};
|
|
|
|
const wideScreenChange = (value) => {
|
|
const container = document.querySelector('#divTwc');
|
|
if (value) {
|
|
container.classList.add('wide');
|
|
} else {
|
|
container.classList.remove('wide');
|
|
}
|
|
};
|
|
|
|
const kioskChange = (value) => {
|
|
const body = document.querySelector('body');
|
|
if (value) {
|
|
body.classList.add('kiosk');
|
|
window.dispatchEvent(new Event('resize'));
|
|
} else {
|
|
body.classList.remove('kiosk');
|
|
}
|
|
};
|
|
|
|
const scanLineChange = (value) => {
|
|
const container = document.getElementById('container');
|
|
const navIcons = document.getElementById('ToggleScanlines');
|
|
if (value) {
|
|
container.classList.add('scanlines');
|
|
navIcons.classList.add('on');
|
|
} else {
|
|
container.classList.remove('scanlines');
|
|
navIcons.classList.remove('on');
|
|
}
|
|
};
|
|
|
|
const unitChange = () => {
|
|
// reload the data at the top level to refresh units
|
|
// after the initial load
|
|
if (unitChange.firstRunDone) {
|
|
window.location.reload();
|
|
}
|
|
unitChange.firstRunDone = true;
|
|
};
|
|
|
|
export default settings;
|