feat(front): split playbutton on albumbase
This commit is contained in:
parent
e726c8cb77
commit
2c8dd38a09
|
@ -19,7 +19,6 @@ import AlbumDropdown from './AlbumDropdown.vue'
|
||||||
import Layout from '~/components/ui/Layout.vue'
|
import Layout from '~/components/ui/Layout.vue'
|
||||||
import Spacer from '~/components/ui/Spacer.vue'
|
import Spacer from '~/components/ui/Spacer.vue'
|
||||||
import Loader from '~/components/ui/Loader.vue'
|
import Loader from '~/components/ui/Loader.vue'
|
||||||
import Section from '~/components/ui/Section.vue'
|
|
||||||
import Button from '~/components/ui/Button.vue'
|
import Button from '~/components/ui/Button.vue'
|
||||||
|
|
||||||
import useErrorHandler from '~/composables/useErrorHandler'
|
import useErrorHandler from '~/composables/useErrorHandler'
|
||||||
|
@ -219,6 +218,7 @@ const remove = async () => {
|
||||||
<Layout flex>
|
<Layout flex>
|
||||||
<PlayButton
|
<PlayButton
|
||||||
class="vibrant"
|
class="vibrant"
|
||||||
|
split
|
||||||
:tracks="object.tracks"
|
:tracks="object.tracks"
|
||||||
:is-playable="object.is_playable"
|
:is-playable="object.is_playable"
|
||||||
/>
|
/>
|
||||||
|
@ -233,7 +233,8 @@ const remove = async () => {
|
||||||
</Button>
|
</Button>
|
||||||
<Spacer h grow />
|
<Spacer h grow />
|
||||||
<TrackFavoriteIcon v-if="store.state.auth.authenticated" :album="object" />
|
<TrackFavoriteIcon v-if="store.state.auth.authenticated" :album="object" />
|
||||||
<!-- Button mit Pfeilchen -->
|
<TrackPlaylistIcon v-if="store.state.auth.authenticated" :album="object" />
|
||||||
|
<!-- TODO: Share Button -->
|
||||||
<album-dropdown
|
<album-dropdown
|
||||||
:object="object"
|
:object="object"
|
||||||
:public-libraries="publicLibraries"
|
:public-libraries="publicLibraries"
|
||||||
|
|
Loading…
Reference in New Issue