13
0
livetrax/share/web_surfaces/builtin/mixer-demo/js/widget.js

148 lines
3.3 KiB
JavaScript
Raw Normal View History

2020-02-20 07:12:36 -05:00
/*
* Copyright (C) 2020 Luciano Iam <lucianito@gmail.com>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License along
* with this program; if not, write to the Free Software Foundation, Inc.,
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
*/
export class Widget {
2020-02-20 07:12:36 -05:00
constructor (html) {
2020-02-20 07:12:36 -05:00
const template = document.createElement('template');
template.innerHTML = html;
this.el = template.content.firstChild;
}
appendTo (parent) {
2020-02-20 07:12:36 -05:00
parent.appendChild(this.el);
}
callback (value) {
// do nothing by default
}
}
export class Switch extends Widget {
2020-02-20 07:12:36 -05:00
constructor () {
super (`<input type="checkbox" class="widget-switch">`);
2020-02-20 07:12:36 -05:00
this.el.addEventListener('input', (ev) => this.callback(this.value));
}
get value () {
return this.el.checked;
}
set value (val) {
this.el.checked = val;
}
}
export class Slider extends Widget {
2020-02-20 07:12:36 -05:00
constructor (min, max, step) {
2020-02-20 07:12:36 -05:00
const html = `<input type="range" class="widget-slider"
min="${min}" max="${max}" step="${step}">`;
super(html);
2020-02-20 07:12:36 -05:00
this.min = min;
this.max = max;
this.el.addEventListener('input', (ev) => this.callback(this.value));
}
get value () {
return parseFloat(this.el.value)
}
set value (val) {
this.el.value = val;
}
}
export class DiscreteSlider extends Slider {
2020-02-20 07:12:36 -05:00
constructor (min, max, step) {
super(min, max, step || 1);
2020-02-20 07:12:36 -05:00
}
}
export class ContinuousSlider extends Slider {
2020-02-20 07:12:36 -05:00
constructor (min, max) {
super(min, max, 0.001);
2020-02-20 07:12:36 -05:00
}
}
export class LogarithmicSlider extends ContinuousSlider {
2020-02-20 07:12:36 -05:00
constructor (min, max) {
super(0, 1.0);
2020-02-20 07:12:36 -05:00
this.minVal = Math.log(min);
this.maxVal = Math.log(max);
this.scale = this.maxVal - this.minVal;
}
get value () {
return Math.exp(this.minVal + this.scale * super.value);
}
set value (val) {
this.el.value = (Math.log(val) - this.minVal) / this.scale;
}
}
export class StripPanSlider extends ContinuousSlider {
2020-02-20 07:12:36 -05:00
constructor () {
super(-1.0, 1.0);
2020-02-20 07:12:36 -05:00
}
}
export class StripGainSlider extends ContinuousSlider {
2020-02-20 07:12:36 -05:00
constructor () {
super(0, 1.0)
2020-02-20 07:12:36 -05:00
this.minVal = -58.0;
this.maxVal = 6.0;
this.scale = (this.maxVal - this.minVal);
}
get value () {
return this.maxVal + Math.log10(super.value) * this.scale;
}
set value (val) {
this.el.value = Math.pow(10.0, (val - this.maxVal) / this.scale);
}
}
export class StripMeter extends Widget {
2020-02-20 07:12:36 -05:00
constructor () {
super(`<label></label>`);
2020-02-20 07:12:36 -05:00
}
set value (val) {
this.el.innerHTML = val == -Infinity ? '-∞' : `${Math.round(val)} dB`;
}
}