-
Notifications
You must be signed in to change notification settings - Fork 20
/
Copy pathgsuiMixer.js
74 lines (68 loc) · 1.94 KB
/
gsuiMixer.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
"use strict";
class gsuiMixer extends gsui0ne {
#shadowChans = null;
#shadowEffects = null;
constructor() {
super( {
$cmpName: "gsuiMixer",
$tagName: "gsui-mixer",
$elements: {
$channels: "gsui-channels",
$effects: "gsui-effects",
$analyserType: ".gsuiMixer-analyserTypes-labels",
},
$attributes: {
analyser: "hz",
},
} );
Object.seal( this );
this.$elements.$analyserType.onclick = () => {
const type = GSUgetAttribute( this, "analyser" ) === "hz" ? "td" : "hz";
GSUsetAttribute( this, "analyser", type );
this.$dispatch( "changeAnalyser", type );
};
GSUlistenEvents( this, {
gsuiChannels: {
nbChannelsChange: () => {
this.#shadowChans.$update();
},
},
gsuiEffect: {
expand: () => {
setTimeout( () => this.#shadowEffects.$update(), 100 );
},
},
} );
}
// .........................................................................
$connected() {
this.#shadowChans = new gsuiScrollShadow( {
scrolledElem: this.querySelector( ".gsuiChannels-panChannels" ),
leftShadow: this.querySelector( ".gsuiChannels-panMain" ),
rightShadow: this.querySelector( ".gsuiMixer-effects" ),
} );
this.#shadowEffects = new gsuiScrollShadow( {
scrolledElem: this.$elements.$effects,
topShadow: this.querySelector( ".gsuiMixer-effects .gsuiMixer-head" ),
bottomShadow: this.querySelector( ".gsuiMixer-effects .gsuiMixer-bottomShadow" ),
} );
}
$disconnected() {
this.#shadowChans.$disconnected();
this.#shadowEffects.$disconnected();
}
static get observedAttributes() {
return [ "analyser" ];
}
$attributeChanged( prop, val ) {
switch ( prop ) {
case "analyser":
this.$elements.$channels.$setAnalyserType( val );
break;
}
}
// .........................................................................
$getChannels() { return this.$elements.$channels; }
$getEffects() { return this.$elements.$effects; }
}
GSUdefineElement( "gsui-mixer", gsuiMixer );