Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Custom chartifact audio player #159

Draft
wants to merge 4 commits into
base: main
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 6 additions & 1 deletion src/build_logic/webpack.common.js
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,12 @@ const common = {
{
from: path.resolve(__dirname, '../../_prebuild_output/assets'),
to: path.resolve(__dirname, '../../dist/assets')
}
},

{
from: path.resolve(__dirname, '../../src/audio'),
to: path.resolve(__dirname, '../../dist/audio')
},
]
}),
new MiniCssExtractPlugin({
Expand Down
150 changes: 150 additions & 0 deletions src/templates/pages/cryptograss.hbs
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,32 @@
<p class="h5 text-light pixel-font text-center">Decentralized apps written by bluegrassers</p>
<p class="h3 text-light curly text-center">Bluegrass written by cryptographers</p>

<div class="player">
<audio id="audio-player">
<source type="audio/mpeg">
Your browser does not support the audio element.
</audio>


<div class="album-art">
<img alt="Album Art" id="player-album-cover">
</div>
<div class="info">
<div id="player-title" class="player-title"></div>
<div id="player-artist" class="player-artist"></div>
</div>
<div class="controls">
<button id="player-previous" onclick="previousSong()">&#x23EE</button> <!-- previous -->
<button id="player-play-pause" onclick="playPause()">&#9654;</button> <!-- play/pause -->
<button id="player-next" onclick="nextSong()">&#x23ED</button> <!-- next -->
</div>
<div class="progress-bar">
<progress value="0" max="100"></progress>
<span class="time" id="current-time">00:00</span>
<span class="time" id="current-time">00:00</span>
</div>
</div>

<div class="row"> {{!-- cryptograss nav --}}
<div class="col-12">
<ul class="nav subnav nav-tabs pixel-font">
Expand All @@ -24,6 +50,9 @@
</div>
</div>

<br>
<br>

<div id="bazaar" class="cryptograss-nav">

<h3 class="text-white">
Expand Down Expand Up @@ -51,3 +80,124 @@
<div class="col-2"></div>
</div>
</div>

<style>
.player {
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
width: 250px;
background: #fff;
box-shadow: 0 4px 8px rgba(0,0,0,0.2);
border-radius: 10px;
overflow: hidden;
display: flex;
flex-direction: column;
align-items: center;
padding: 10px;
}

.album-art {
width: 100%;
border-radius: 10px;
overflow: hidden;
}
.album-art img {
width: 100%;
}
.info {
text-align: center;
margin-top: 10px;
}

.player-title {
font-size: 1.2em;
color: #27292b;
font-weight: bold;
}
.player-artist {
color: #666;
font-size: 0.9em;
}
.controls {
margin-top: 10px;
width: 100%;
display: flex;
justify-content: space-around;
align-items: center;
}
.controls button {
background: none;
border: none;
color: #666;
font-size: 1.5em;
cursor: pointer;
}

.controls button:hover {
color: #000;
}
.progress-bar {
width: 100%;
margin: 10px 0;
}
.progress-bar progress {
width: 100%;
}
</style>

<script>
const audioPlayer = document.getElementById('audio-player');
const playlist = [
{'file':'audio/silver44.wav', "length": 342, "name": "Silver .44", "artist": "Justin Holmes", "album_cover": "{{resolveImage 'albums/vowel-sounds-cover-art-400.png' }}"},
{'file':'audio/august.wav', "length": 179, "name": "August", "artist": "Justin Holmes", "album_cover": "{{resolveImage 'albums/vowel-sounds-cover-art-400.png' }}"}
];
let currentSongIndex = 0;

function loadSong(index) {
audioPlayer.src = playlist[index]['file'];
audioPlayer.load();

document.getElementById('player-title').innerText = playlist[index]['name'];
document.getElementById('player-artist').innerText = playlist[index]['artist'];
document.getElementById('player-album-cover').src = playlist[index]['album_cover'];
}

loadSong(currentSongIndex);

function nextSong() {
currentSongIndex = (currentSongIndex + 1) % playlist.length;
var is_playing = !audioPlayer.paused;

loadSong(currentSongIndex);

if(is_playing) {
audioPlayer.play();
}
}

function previousSong() {
currentSongIndex = (currentSongIndex - 1 + playlist.length) % playlist.length;
var is_playing = !audioPlayer.paused;
loadSong(currentSongIndex);

if(is_playing) {
audioPlayer.play();
}
}

function playPause() {
if (audioPlayer.paused) {
audioPlayer.play();
document.getElementById("player-play-pause").innerHTML = "&#x23F8";
} else {
audioPlayer.pause();
document.getElementById("player-play-pause").innerHTML = "&#9654;";
}
}

// On load, load the first song
document.addEventListener('DOMContentLoaded', function() {
audioPlayer.src = playlist[currentSongIndex]['file'];
audioPlayer.load();
});

</script>