some bug fixes

- watch route params instead of route object in folderview
- move to script setup on album view
- use album as a reactive object instead of refs
- use axios instead of fetch to get album data
- improve clickable areas on songItem
- move album requests to POST
This commit is contained in:
geoffrey45
2022-03-01 19:46:37 +03:00
parent 8459310258
commit 6efbb47166
17 changed files with 229 additions and 183 deletions
+28 -17
View File
@@ -1,18 +1,22 @@
<template>
<div class="album-h">
<div class="a-header rounded">
<div
class="image art shadow-lg"
:style="{ backgroundImage: `url(&quot;${encodeURI(props.album_info.image)}&quot;)` }"
></div>
<div class="info">
<div class="top">
<div class="h">Album</div>
<div class="separator no-border"></div>
<div class="title">{{ album_info.name }}</div>
<div class="artist">{{ album_info.artist }}</div>
<div class="title">{{ props.album_info.name }}</div>
<div class="artist">{{ props.album_info.artist }}</div>
</div>
<div class="separator no-border"></div>
<div class="bottom">
<div class="stats shadow-sm">
{{ album_info.count }} Tracks {{ album_info.duration }}
{{ album_info.date }}
{{ props.album_info.count }} Tracks {{ props.album_info.duration }}
{{ props.album_info.date }}
</div>
<div class="play rounded" @click="playAlbum">
<div class="icon"></div>
@@ -24,22 +28,20 @@
</div>
</template>
<script>
<script setup>
import state from "@/composables/state.js";
import perks from "@/composables/perks.js";
export default {
props: ["album_info"],
setup() {
function playAlbum() {
perks.updateQueue(state.album_song_list.value[0], "album");
}
return {
playAlbum,
};
const props = defineProps({
album_info: {
type: Object,
default: () => ({}),
},
};
});
function playAlbum() {
perks.updateQueue(state.album.tracklist[0], "album");
}
</script>
<style lang="scss">
@@ -59,7 +61,7 @@ export default {
overflow: hidden;
display: flex;
align-items: center;
padding: $small;
padding: 1rem;
height: 100%;
background-image: linear-gradient(
56deg,
@@ -73,12 +75,20 @@ export default {
background-repeat: no-repeat;
background-size: cover;
.art {
position: absolute;
width: 12rem;
height: 12rem;
left: 1rem;
}
.info {
width: 100%;
height: calc(100%);
display: flex;
flex-direction: column;
justify-content: flex-end;
margin-left: 13rem;
.top {
.h {
@@ -88,6 +98,7 @@ export default {
font-size: 2rem;
font-weight: 1000;
color: white;
text-transform: capitalize;
}
.artist {