-
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add artist popularity display and add filter list drag hint
- Loading branch information
Showing
3 changed files
with
138 additions
and
132 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,115 +1,81 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="UTF-8" /> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0" /> | ||
<title>SAMBL</title> | ||
<link rel="stylesheet" href="../css/main.css" /> | ||
<link rel="stylesheet" href="../css/artist.css" /> | ||
<link rel="icon" type="image/svg+xml" href="../assets/images/favicon.svg" /> | ||
<link rel="icon" type="image/png" href="../assets/images/favicon.png" /> | ||
</head> | ||
<body id="body"> | ||
<div id="main"> | ||
<embed type="text/html" src="../header.html" /> | ||
<div id="err"></div> | ||
<div id="artistContainer"> | ||
<div id="artistImageContainer"></div> | ||
<div id="artistTextContainer"> | ||
<div class="nameContainer"> | ||
<h1 id="artistName"></h1> | ||
<div class="spURLContainer"> | ||
<a id="spURL" target="_blank" | ||
><img | ||
alt="Spotify Icon" | ||
class="spIcon" | ||
src="../assets/images/Spotify_icon.svg" | ||
/></a> | ||
</div> | ||
<div class="mbURLContainer"> | ||
<a id="mbURL" target="_blank" | ||
><img | ||
alt="MusicBrainz Icon" | ||
class="mbIcon" | ||
src="../assets/images/MusicBrainz_Logo.svg" | ||
/></a> | ||
</div> | ||
</div> | ||
<div id="artistFollowerCount"></div> | ||
<div id="artistGenres"></div> | ||
</div> | ||
</div> | ||
<div id="contentContainer"> | ||
<div id="loadingContainer"></div> | ||
<div id="loadingText"></div> | ||
<div id="albumContainer"> | ||
<div id="searchContainer"> | ||
<input | ||
id="listSearch" | ||
onkeyup="searchList()" | ||
onkeydown="searchList()" | ||
placeholder="Search..." | ||
/><button onclick="filter()" id="filterSearch"> | ||
<div id="fbText">Filter</div> | ||
</button> | ||
</div> | ||
<div id="albumList"></div> | ||
<div id="statusText"></div> | ||
<div id="filterList"> | ||
<h3 id="filterListHeader">Filter List</h3> | ||
<form id="filterBoxes"> | ||
<div class="checkbox-wrapper"> | ||
<input | ||
type="checkbox" | ||
id="showGreen" | ||
name="showGreen" | ||
class="substituted" | ||
/> | ||
<label for="showGreen" id="greenLabel"> Show Green</label><br /> | ||
</div> | ||
<div class="checkbox-wrapper"> | ||
<input | ||
type="checkbox" | ||
id="showOrange" | ||
name="showOrange" | ||
class="substituted" | ||
/> | ||
<label for="showOrange" id="orangeLabel"> Show Orange</label><br /> | ||
</div> | ||
<div class="checkbox-wrapper"> | ||
<input | ||
type="checkbox" | ||
id="showRed" | ||
name="showRed" | ||
class="substituted" | ||
/> | ||
<label for="showRed" id="redLabel"> Show Red</label><br /><br /> | ||
</div> | ||
<div class="checkbox-wrapper"> | ||
<input | ||
type="checkbox" | ||
id="hideVarious" | ||
name="hideVarious" | ||
class="substituted" | ||
/> | ||
<label for="hideVarious" id="variousLabel"> Ignore Various Artists</label><br /> | ||
</div> | ||
<div class="checkbox-wrapper"> | ||
<input | ||
type="checkbox" | ||
id="missingUPC" | ||
name="missingUPC" | ||
class="substituted" | ||
/> | ||
<label for="missingUPC" id="missingLabel"> Only Missing UPCs</label><br /><br /> | ||
</div> | ||
<button id="applyfilter" type="button" onclick="applyFilter()">Apply</button> | ||
</form> | ||
</div> | ||
</div> | ||
</div> | ||
</div> | ||
<footer><embed type="text/html" src="../footer.html" /></footer> | ||
<script src="../scripts/artist.js"></script> | ||
</body> | ||
<head> | ||
<meta charset="UTF-8" /> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0" /> | ||
<title>SAMBL</title> | ||
<link rel="stylesheet" href="../css/main.css" /> | ||
<link rel="stylesheet" href="../css/artist.css" /> | ||
<link rel="icon" type="image/svg+xml" href="../assets/images/favicon.svg" /> | ||
<link rel="icon" type="image/png" href="../assets/images/favicon.png" /> | ||
</head> | ||
<body id="body"> | ||
<div id="main"> | ||
<embed type="text/html" src="../header.html" /> | ||
<div id="err"></div> | ||
<div id="artistContainer"> | ||
<div id="artistImageContainer"></div> | ||
<div id="artistTextContainer"> | ||
<div class="nameContainer"> | ||
<h1 id="artistName"></h1> | ||
<div class="spURLContainer"> | ||
<a id="spURL" target="_blank"><img alt="Spotify Icon" class="spIcon" src="../assets/images/Spotify_icon.svg" /></a> | ||
</div> | ||
<div class="mbURLContainer"> | ||
<a id="mbURL" target="_blank"><img alt="MusicBrainz Icon" class="mbIcon" src="../assets/images/MusicBrainz_Logo.svg" /></a> | ||
</div> | ||
</div> | ||
<div id="artistFollowerCount"></div> | ||
<div id="artistGenres"></div> | ||
<div id="artistPopularityContainer"> | ||
<label for="artistPopularity" id="artistPopularity">Popularity:</label> | ||
<div id="artistPopularityBar"> | ||
<div id="artistPopularityFill"></div> | ||
</div> | ||
</div> | ||
</div> | ||
</div> | ||
<div id="contentContainer"> | ||
<div id="loadingContainer"></div> | ||
<div id="loadingText"></div> | ||
<div id="albumContainer"> | ||
<div id="searchContainer"> | ||
<input id="listSearch" onkeyup="searchList()" onkeydown="searchList()" placeholder="Search..." /><button onclick="filter()" id="filterSearch"> | ||
<div id="fbText">Filter</div> | ||
</button> | ||
</div> | ||
<div id="albumList"></div> | ||
<div id="statusText"></div> | ||
<div id="filterList"> | ||
<h3 id="filterListHeader">Filter List <i class="fa-solid fa-up-down-left-right moveIcon"></i></h3> | ||
<form id="filterBoxes"> | ||
<div class="checkbox-wrapper"> | ||
<input type="checkbox" id="showGreen" name="showGreen" class="substituted" /> | ||
<label for="showGreen" id="greenLabel"> Show Green</label><br /> | ||
</div> | ||
<div class="checkbox-wrapper"> | ||
<input type="checkbox" id="showOrange" name="showOrange" class="substituted" /> | ||
<label for="showOrange" id="orangeLabel"> Show Orange</label><br /> | ||
</div> | ||
<div class="checkbox-wrapper"> | ||
<input type="checkbox" id="showRed" name="showRed" class="substituted" /> | ||
<label for="showRed" id="redLabel"> Show Red</label><br /><br /> | ||
</div> | ||
<div class="checkbox-wrapper"> | ||
<input type="checkbox" id="hideVarious" name="hideVarious" class="substituted" /> | ||
<label for="hideVarious" id="variousLabel"> Ignore Various Artists</label><br /> | ||
</div> | ||
<div class="checkbox-wrapper"> | ||
<input type="checkbox" id="missingUPC" name="missingUPC" class="substituted" /> | ||
<label for="missingUPC" id="missingLabel"> Only Missing UPCs</label><br /><br /> | ||
</div> | ||
<button id="applyfilter" type="button" onclick="applyFilter()">Apply</button> | ||
</form> | ||
</div> | ||
</div> | ||
</div> | ||
</div> | ||
<footer><embed type="text/html" src="../footer.html" /></footer> | ||
<script src="../scripts/artist.js"></script> | ||
</body> | ||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters