aboutsummaryrefslogtreecommitdiff
path: root/resources/index.html
blob: de191210c5b8d403a3e4bffed79f022e6bb54208 (plain)
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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
<!DOCTYPE html>
<html lang="en">
  <head>
    <meta http-equiv="content-type" content="text/html; charset=utf-8">
    <link rel="manifest" href="ir.webmanifest">
    <link rel="icon" href="ir.png">
    <title>IR</title>
    <script>
     "use strict"
     function fillTemplate(template,values) {
       const newElement=template.content.cloneNode(true);
 
       newElement.querySelectorAll('*').forEach(
         (e) => {
           if (e.tagName == 'SLOT') {
             const valueKey=e.textContent.trim();
             e.replaceWith(e.ownerDocument.createTextNode(values[valueKey]));
             return;
           }
 
           const attrs = e.attributes;
           for (var i = attrs.length - 1; i >= 0; i--) {
             if (attrs[i].name.startsWith('slot:')) {
               const name=attrs[i].name.replace('slot:','');
               const valueKey=attrs[i].value;
               e.removeAttribute(attrs[i].name);
               e.setAttribute(name,values[valueKey]);
             }
           }
         },
       );
 
       return newElement;
     }
     // example usage
     function addRow() {
       document.querySelector('#list').appendChild(
         fillTemplate(
           document.querySelector('#row'),
           {
             'play-url':'http://foo.bar',
             'name':'something',
           },
         )
       );
     }
 
     function call(method,path,args) {
       args ||= {};
       let url=new URL(path,location.href);
       for (let a in args) {
         url.searchParams.set(a,args[a]);
       }
       return fetch(url, {
         method: method,
         mode: 'no-cors',
       });
     }
 
     function vlcCommand(command,args) {
       call('post',`vlc/${command}`,args);
     }
 
     function irCommand(thing,arg) {
       call('post',`ir/${thing}/${arg}`);
     }
     
     async function updateView() {
       const status = (await (await call('get','vlc/status')).json()).status;
       const currentPos = document.querySelector('#current-pos');
 
       if (status.state != 'playing') {
         currentPos.disabled=true;
         return;
       }
 
       currentPos.disabled=false;
       const length = parseInt(status.length);
 
       if (!length) { return }
 
       const time = parseInt(status.time);
       currentPos.max=length;
       currentPos.value=time;
     }
 
     document.addEventListener('readystatechange', (event) => {
       if (document.readyState == 'complete') {
         setInterval(updateView, 1000);
       }
     })
    </script> 
    <style>
     body { font-size: 12vw }
     * { font-size: inherit }
 
     div.thing {
       padding: 0.2em 0.1em 0.2em 0.1em;
       margin-top: 0.5em;
       margin-bottom: 1em;
       border: solid 0.05em black;
       border-radius: 0.5em;
       position: relative;
     }
     div.thing label {
       font-size: 0.8em;
       line-height: 0.5em;
       position: absolute;
       top: -0.5em;
       left: 1em;
       background-color: white;
     }
     div.thing table {
       width: 100%;
       table-layout: fixed;
     }
     td button {
       border-radius: 0.5em;
       width: calc(100% - 0.2em);
       margin: 0.1em;
     }
 
     .power { color: white }
     .power.on { background-color: green }
     .power.off { background-color: red }
 
     .volume { background-color: lightblue }
     .input { background-color: darkorange }
     .control { background-color: black; color: white; filter: grayscale(100%) }
     .bd-red { background-color: red }
     .bd-yellow { background-color: yellow }
     .bd-blue { background-color: blue; color: white }
    </style> 
  </head>
  <body>
    <div class="thing">
      <label>Vlc</label>
      <table>
        <tr>
          <td><button onclick="irCommand('start','hdmi3')" class="power on">start</button></td>
          <td><button onclick="irCommand('stop','hdmi')" class="power off">stop</button></td>
        </tr>
      </table>
      <details>
        <summary>controls</summary>
        <button onclick="vlcCommand('play')">play</button>
        <button onclick="vlcCommand('pause')">pause</button>
        <button onclick="vlcCommand('stop')">stop</button>
        <button onclick="updateView()">update</button>
        <input type="range" id="current-pos">
      </details>
    </div>
    <div class="thing">
      <label>Laptop</label>
      <table>
        <tr>
          <td><button onclick="irCommand('start','hdmi1')" class="power on">start</button></td>
          <td><button onclick="irCommand('stop','hdmi')" class="power off">stop</button></td>
        </tr>
      </table>
    </div>
    <div class="thing">
      <label>Bluray</label>
      <table>
        <tr>
          <td><button onclick="irCommand('start','bluray')" class="power on">start</button></td>
          <td><button onclick="irCommand('stop','bluray')" class="power off">stop</button></td>
        </tr>
      </table>
      <details>
        <summary>controls</summary>
        <table>
          <tr>
            <td><button onclick="irCommand('bluray','ejectcd')" class="input"></button></td>
            <td>&nbsp;</td>
            <td><button onclick="irCommand('bluray','power')" class="power on">ON</button></td>
          </tr>
          <tr>
            <td><button onclick="irCommand('bluray','yellow')" class="bd-yellow">a</button></td>
            <td><button onclick="irCommand('bluray','blue')" class="bd-blue">b</button></td>
            <td><button onclick="irCommand('bluray','red')" class="bd-red">c</button></td>
          </tr>
          <tr>
            <td><button onclick="irCommand('bluray','menu')" class="control">🔝</button></td>
            <td><button onclick="irCommand('bluray','up')" class="control"></button></td>
            <td><button onclick="irCommand('bluray','context_menu')" class="control"></button></td>
          </tr>
          <tr>
            <td><button onclick="irCommand('bluray','left')" class="control"></button></td>
            <td><button onclick="irCommand('bluray','ok')" class="control">ok</button></td>
            <td><button onclick="irCommand('bluray','right')" class="control"></button></td>
          </tr>
          <tr>
            <td><button onclick="irCommand('bluray','back')" class="control">🔙</button></td>
            <td><button onclick="irCommand('bluray','down')" class="control"></button></td>
            <td><button onclick="irCommand('bluray','option')" class="control">opt</button></td>
          </tr>
          <tr>
            <td colspan="3"><button onclick="irCommand('bluray','home')" class="control">home</button></td>
          </tr>
          
          <tr>
            <td><button onclick="irCommand('bluray','previous')" class="control"></button></td>
            <td><button onclick="irCommand('bluray','play')" class="control"></button></td>
            <td><button onclick="irCommand('bluray','next')" class="control"></button></td>
          </tr>
          <tr>
            <td><button onclick="irCommand('bluray','review')" class="control"></button></td>
            <td><button onclick="irCommand('bluray','pause')" class="control"></button></td>
            <td><button onclick="irCommand('bluray','fastforward')" class="control"></button></td>
          </tr>
          <tr>
            <td><button onclick="irCommand('bluray','subtitle')" class="control">sub</button></td>
            <td><button onclick="irCommand('bluray','stop')" class="control"></button></td>
            <td><button onclick="irCommand('bluray','audio')" class="control">aud</button></td>
          </tr>
          <tr>
            <td>&nbsp;</td>
            <td>&nbsp;</td>
            <td><button onclick="irCommand('bluray','displaytoggle')" class="control">disp</button></td>
          </tr>
        </table>
      </details>
    </div>
    <div class="thing">
      <label>Amp</label>
      <table>
        <tr>
          <td><button onclick="irCommand('amplifier','power')" class="power on">ON</button></td>
          <td><button onclick="irCommand('amplifier','power')" class="power off">OFF</button></td>
          <td><button onclick="irCommand('amplifier','volumeup')" class="volume"></button></td>
        </tr>
        <tr>
          <td>&nbsp;</td>
          <td>&nbsp;</td>
          <td><button onclick="irCommand('amplifier','volumedown')" class="volume"></button></td>
        </tr>
        <tr>
          <td><button onclick="irCommand('amplifier','hdmi1')" class="input">Lap</button></td>
          <td><button onclick="irCommand('amplifier','hdmi2')" class="input">BD</button></td>
          <td><button onclick="irCommand('amplifier','hdmi3')" class="input">NAS</button></td>
        </tr>
      </table>
    </div>
 
    <div class="thing">
      <label>Projector</label>
      <table>
        <tr>
          <td><button onclick="irCommand('projector','power')" class="power on">ON</button></td>
          <td><button onclick="irCommand('projector','suspend')" class="power off">OFF</button></td>
        </tr>
      </table>
    </div>
 
    <template id="row">
      <li><a slot:href="play-url"><span><slot>name</slot></span></a></li>
    </template>
  </body>
</html>