mirror of
https://codeberg.org/Hyperpipe/Hyperpipe
synced 2025-06-28 05:08:00 +02:00
Changes:
- Closes #14 - Removed margin for player (#9) - Bug Fixes - Blur theme
This commit is contained in:
parent
6b349380af
commit
8548a3646e
11 changed files with 85 additions and 99 deletions
14
src/App.vue
14
src/App.vue
|
@ -173,6 +173,7 @@ async function getAlbum(e) {
|
|||
});
|
||||
|
||||
useRoute(e);
|
||||
nav.state.page = 'home';
|
||||
|
||||
artist.reset();
|
||||
}
|
||||
|
@ -200,6 +201,7 @@ async function getArtist(e) {
|
|||
artist.set(json);
|
||||
|
||||
useRoute('/channel/' + e);
|
||||
nav.state.page = 'home';
|
||||
}
|
||||
|
||||
async function getNext(hash) {
|
||||
|
@ -385,11 +387,17 @@ onMounted(() => {
|
|||
<Prefs v-if="nav.state.page == 'prefs'" />
|
||||
</main>
|
||||
|
||||
<Playlists v-if="player.state.playlist" @playthis="playThis" />
|
||||
<Transition name="fade">
|
||||
<Playlists v-if="player.state.playlist" @playthis="playThis" />
|
||||
</Transition>
|
||||
|
||||
<Lyrics v-if="player.state.lyrics" />
|
||||
<Transition name="fade">
|
||||
<Lyrics v-if="player.state.lyrics" />
|
||||
</Transition>
|
||||
|
||||
<Info v-if="player.state.info" :text="data.state.description" />
|
||||
<Transition name="fade">
|
||||
<Info v-if="player.state.info" :text="data.state.description" />
|
||||
</Transition>
|
||||
|
||||
<StatusBar @save="SaveTrack" />
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue