2020-04-09 10:34:16 -04:00
|
|
|
/*
|
2021-06-13 19:07:40 -04:00
|
|
|
* Copyright (C) 2020 Luciano Iam <oss@lucianoiam.com>
|
2020-04-09 10:34:16 -04:00
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*/
|
|
|
|
|
2020-06-14 06:10:30 -04:00
|
|
|
import ArdourClient from '/shared/ardour.js';
|
2020-04-09 10:34:16 -04:00
|
|
|
|
2021-06-14 04:27:26 -04:00
|
|
|
{
|
2020-04-09 10:34:16 -04:00
|
|
|
|
2020-04-11 11:31:34 -04:00
|
|
|
async function main () {
|
|
|
|
try {
|
2020-04-14 03:53:25 -04:00
|
|
|
const surfaces = await new ArdourClient().getAvailableSurfaces();
|
2020-04-12 04:44:14 -04:00
|
|
|
printSurfaces(surfaces);
|
2020-04-11 11:31:34 -04:00
|
|
|
} catch (err) {
|
2020-04-12 04:44:14 -04:00
|
|
|
printError(`Error loading surfaces list: ${err.message}`);
|
2020-04-09 10:34:16 -04:00
|
|
|
}
|
|
|
|
|
2020-04-11 11:31:34 -04:00
|
|
|
document.getElementById('loading').style.display = 'none';
|
2020-04-09 10:34:16 -04:00
|
|
|
}
|
|
|
|
|
2020-04-12 04:44:14 -04:00
|
|
|
function printSurfaces (surfaces) {
|
|
|
|
for (const group of surfaces) {
|
2020-04-12 04:29:20 -04:00
|
|
|
const ul = document.querySelector(`#${group.path} > ul`);
|
|
|
|
|
|
|
|
const li = document.createElement('li');
|
|
|
|
li.innerHTML = `<li>
|
2020-04-24 06:39:01 -04:00
|
|
|
<span>Filesystem location:</span>
|
|
|
|
 
|
|
|
|
<span class="filesystem-path">${group.filesystemPath}</span>
|
|
|
|
</li>`;
|
2020-04-12 04:29:20 -04:00
|
|
|
ul.appendChild(li);
|
2020-04-11 04:08:54 -04:00
|
|
|
|
2020-04-12 03:51:09 -04:00
|
|
|
if (group.surfaces.length > 0) {
|
|
|
|
group.surfaces.sort((a, b) => a.name.localeCompare(b.name));
|
2020-04-12 04:29:20 -04:00
|
|
|
|
2020-04-12 03:51:09 -04:00
|
|
|
for (const surface of group.surfaces) {
|
2020-04-24 06:39:01 -04:00
|
|
|
let path = group.path + '/' + surface.path + '/';
|
|
|
|
|
|
|
|
// see https://github.com/Ardour/ardour/pull/491
|
|
|
|
if (navigator.userAgent.indexOf('Windows') != -1) {
|
|
|
|
path += 'index.html';
|
|
|
|
}
|
|
|
|
|
2020-04-11 11:31:34 -04:00
|
|
|
const li = document.createElement('li');
|
|
|
|
li.innerHTML = `<li>
|
2020-04-24 06:39:01 -04:00
|
|
|
<a href="${path}">${surface.name}</a>
|
|
|
|
 
|
|
|
|
<span class="surface-version">(${surface.version})</span>
|
|
|
|
<p>${surface.description}</p>
|
|
|
|
</li>`;
|
2020-04-11 11:31:34 -04:00
|
|
|
ul.appendChild(li);
|
2020-04-09 10:34:16 -04:00
|
|
|
}
|
|
|
|
} else {
|
2020-04-12 04:29:20 -04:00
|
|
|
const li = document.createElement('li');
|
|
|
|
li.innerHTML = 'No surfaces found';
|
|
|
|
ul.appendChild(li);
|
2020-04-09 10:34:16 -04:00
|
|
|
}
|
2020-04-11 04:08:54 -04:00
|
|
|
}
|
2020-04-10 02:35:00 -04:00
|
|
|
|
|
|
|
document.getElementById('index').style.display = 'inline';
|
|
|
|
}
|
|
|
|
|
|
|
|
function printError (message) {
|
|
|
|
const error = document.getElementById('error');
|
|
|
|
error.innerHTML = message;
|
|
|
|
error.style.display = 'inline';
|
2020-04-09 10:34:16 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
main();
|
|
|
|
|
2021-06-14 04:27:26 -04:00
|
|
|
}
|