‘liusuyi’
2023-07-27 e279e456850734349842edd8ce52dc16fc5cdea7
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
class WebRTCStreamerSelectorElement extends HTMLElement {    
    static get observedAttributes() {
        return ['selected', 'webrtcurl'];
    }      
    constructor() {
        super(); 
        this.shadowDOM = this.attachShadow({mode: 'open'});
        this.shadowDOM.innerHTML = `
                    <style>@import "styles.css"</style>
                    <h2><select id="mediaList"></select></h2>
                    `;
    }
    connectedCallback() {
        this.fillList();
    }
    
    attributeChangedCallback(attrName, oldVal, newVal) {
        if (attrName === "selected") {
            this.selected = newVal;
            let mediaList = this.shadowDOM.getElementById("mediaList");
            for (const option of mediaList.getElementsByTagName('option')) {
                if (option === newVal) {
                    option.selected = true;
                }
            }
 
        } else if (attrName === "webrtcurl") {
            this.fillList();
        }
    }    
 
    fillList() {
        let mediaList = this.shadowDOM.getElementById("mediaList");
        const webrtcurl = this.getAttribute("webrtcurl") || "";
        fetch(webrtcurl + "/api/getMediaList").then(r => r.json()).then( (response) => { 
            response.forEach( (media) => {
                var newOption = document.createElement("option");
                newOption.text = media.video;
                newOption.value = JSON.stringify(media);
                if (this.selected && (this.selected === newOption.text) ) {
                    newOption.selected = true;
                }
                mediaList.appendChild(newOption);
            });
 
            if (mediaList.selectedOptions.length > 0) {
                this.dispatchEvent(new CustomEvent('change', {
                    detail: {
                      url: mediaList.selectedOptions[0].value,
                    }
                  }));                
            }    
        });    
 
        mediaList.onchange = (event) => {
                this.dispatchEvent(new CustomEvent('change', {
                    detail: {
                      url: mediaList.selectedOptions[0].value,
                    }
                  }));        
            }
    }
}
 
customElements.define('webrtc-streamer-selector', WebRTCStreamerSelectorElement);