Merge branch 'main' of github.com:cccb/sanic
This commit is contained in:
commit
fb5bfbc100
13 changed files with 161 additions and 323 deletions
158
static/index.html
Normal file
158
static/index.html
Normal file
|
@ -0,0 +1,158 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8" />
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
||||
<title>sanic :: paused</title>
|
||||
<style>
|
||||
/* generic styles */
|
||||
* {
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
header, footer, main, section {
|
||||
border: 1px solid red;
|
||||
margin: 1px;
|
||||
padding 1px;
|
||||
}
|
||||
|
||||
/* tab controls */
|
||||
.tabs {
|
||||
overflow: hidden; /* what does this do? */
|
||||
}
|
||||
.tabs button {
|
||||
float: left;
|
||||
}
|
||||
.tabs button:hover {
|
||||
background-color: #ddd;
|
||||
}
|
||||
.tabs button.active {
|
||||
background-color: #ccc;
|
||||
}
|
||||
.tab {
|
||||
display: none;
|
||||
}
|
||||
|
||||
/* table */
|
||||
thead {
|
||||
background-color: #ccc;
|
||||
}
|
||||
|
||||
/* player controls */
|
||||
#player-controls {
|
||||
border: 1px solid blue;
|
||||
}
|
||||
</style>
|
||||
<script>
|
||||
function switchTab(event, tabname) {
|
||||
document.getElementsByClassName("tab").forEach((tab) => tab.style.display = "none");
|
||||
document.getElementsByClassName("tablink").forEach((but) => but.className = but.className.replace(" active", ""));
|
||||
document.getElementById(tabname).style.display = "block";
|
||||
event.currentTarget.className += " active";
|
||||
}
|
||||
</script>
|
||||
</head>
|
||||
<body>
|
||||
<!-- top navigation and playback control -->
|
||||
<header id="top-nav">
|
||||
<div id="player-controls">
|
||||
<div>
|
||||
<input type="text" value="artist - track" />
|
||||
</div>
|
||||
<div>
|
||||
<button>⏮️</button>
|
||||
<button>⏯️</button>
|
||||
<button>⏹️</button>
|
||||
<button>⏭️</button>
|
||||
</div>
|
||||
<div>
|
||||
<input type="range" id="track-progress" name="track-progress" min="0" max="100" />
|
||||
</div>
|
||||
</div>
|
||||
</header>
|
||||
|
||||
<main>
|
||||
<section id="playlist">
|
||||
<table>
|
||||
<thead>
|
||||
<tr>
|
||||
<th>Position</th>
|
||||
<th>Artist</th>
|
||||
<th>Title</th>
|
||||
<th>Album</th>
|
||||
<th>Length</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
<tr>
|
||||
<td>autoincremented number</td>
|
||||
<td>some artist</td>
|
||||
<td>some song</td>
|
||||
<td>some album</td>
|
||||
<td>some time</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
</section>
|
||||
<section id="db">
|
||||
<!-- tabs -->
|
||||
<div id="tabs">
|
||||
<button class="tablink active" onclick="switchTab(event, 'folders')">Folders</button>
|
||||
<button class="tablink" onclick="switchTab(event, 'search')">Search</button>
|
||||
<button class="tablink" onclick="switchTab(event, 'playlists')">Playlists</button>
|
||||
</div>
|
||||
<!-- Folders tab -->
|
||||
<div id="tab-folders" class="tab active">
|
||||
<nav>
|
||||
|
||||
</nav>
|
||||
</div>
|
||||
<!-- Search tab -->
|
||||
<div id="tab-search" class="tab">
|
||||
<form>
|
||||
<input type="text" />
|
||||
<button>Search</button>
|
||||
</form>
|
||||
</div>
|
||||
<!-- Playlists tab -->
|
||||
<div id="tab-playlists" class="tab">
|
||||
<ul>
|
||||
<li>Playlist 1</li>
|
||||
<li>Playlist 2</li>
|
||||
<li>Playlist 3</li>
|
||||
</ul>
|
||||
</div>
|
||||
<!-- Tab results -->
|
||||
<div>
|
||||
<table>
|
||||
<thead>
|
||||
<tr>
|
||||
<th>Artist</th>
|
||||
<th>Title</th>
|
||||
<th>Album</th>
|
||||
<th>Length</th>
|
||||
<th>Filename</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
<tr>
|
||||
<td>some artist</td>
|
||||
<td>some song</td>
|
||||
<td>some album</td>
|
||||
<td>some time</td>
|
||||
<td>some filename</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
</div>
|
||||
</section>
|
||||
</main>
|
||||
|
||||
<!-- informational footer -->
|
||||
<footer id="bottom">
|
||||
<p>sanic mpd web ui - by XenGi and coon © 2023</p>
|
||||
</footer>
|
||||
<script src="index.js"></script>
|
||||
</body>
|
||||
</html>
|
||||
|
0
static/index.js
Normal file
0
static/index.js
Normal file
0
static/style.css
Normal file
0
static/style.css
Normal file
Loading…
Add table
Add a link
Reference in a new issue