mirror of
https://github.com/VueTubeApp/VueTube
synced 2024-11-06 03:25:07 +00:00
120 lines
2.9 KiB
Vue
120 lines
2.9 KiB
Vue
<template>
|
|
<div>
|
|
<div class="d-flex justify-space-between mb-2 mx-7">
|
|
<h4
|
|
class="background--text w-50"
|
|
:class="$vuetify.theme.dark ? 'text--lighten-3' : 'text--darken-3'"
|
|
>
|
|
Local Playlists
|
|
</h4>
|
|
<v-btn text tile elevation="0" class="w-5-0" @click="dialog = true">
|
|
<v-icon>mdi-plus</v-icon>
|
|
</v-btn>
|
|
</div>
|
|
<div class="d-flex flex-column-reverse">
|
|
<playlist-card
|
|
v-for="(playlist, index) in playlists"
|
|
:key="index"
|
|
:playlist="playlist"
|
|
@click="changeToPlaylist(index)"
|
|
/>
|
|
</div>
|
|
|
|
<v-btn
|
|
text
|
|
class="entry text-left setting-btn no-spacing"
|
|
to="/history"
|
|
nuxt
|
|
:style="{
|
|
borderRadius: `${$store.state.tweaks.roundTweak / 2}rem`,
|
|
paddingLeft:
|
|
$store.state.tweaks.roundTweak > 0 ? '' : '1.5rem !important',
|
|
}"
|
|
>
|
|
<v-icon
|
|
:style="{
|
|
borderRadius: `${$store.state.tweaks.roundTweak / 2}rem`,
|
|
}"
|
|
class=".icon"
|
|
>mdi-history</v-icon
|
|
>
|
|
History
|
|
</v-btn>
|
|
<!-- Create Playlist Dialog -->
|
|
<v-dialog v-model="dialog" width="500">
|
|
<v-card
|
|
class="rounded-lg"
|
|
:class="
|
|
$vuetify.theme.dark ? 'background lighten-1' : 'background darken-1'
|
|
"
|
|
>
|
|
<v-card-title class="text-h5">Create Playlist</v-card-title>
|
|
<v-card-text>
|
|
<v-text-field v-model="playlistName" label="Playlist Name" solo />
|
|
</v-card-text>
|
|
<v-divider />
|
|
<v-card-actions>
|
|
<v-spacer></v-spacer>
|
|
<v-btn color="primary" text @click="dialog = false">
|
|
{{ lang.cancel }}
|
|
</v-btn>
|
|
<v-btn color="primary" text @click="createPlaylist()">
|
|
{{ lang.create }}
|
|
</v-btn>
|
|
</v-card-actions>
|
|
</v-card></v-dialog
|
|
>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
import playlistCard from "~/components/Playlist/playlistCard.vue";
|
|
export default {
|
|
components: { playlistCard },
|
|
data() {
|
|
return {
|
|
dialog: false,
|
|
lang: {},
|
|
playlistName: null,
|
|
};
|
|
},
|
|
computed: {
|
|
playlists() {
|
|
return this.$store.state.playlist.playlists;
|
|
},
|
|
},
|
|
mounted() {
|
|
const lang = this.$lang();
|
|
this.lang = lang.mods.developer;
|
|
},
|
|
methods: {
|
|
createPlaylist: function () {
|
|
this.$store.commit("playlist/createPlaylist", this.playlistName);
|
|
this.dialog = false;
|
|
},
|
|
changeToPlaylist: function (videoIndex) {
|
|
this.$store.commit("playlist/changeToPlaylist", videoIndex);
|
|
},
|
|
},
|
|
};
|
|
</script>
|
|
|
|
<style scoped>
|
|
.setting-btn {
|
|
/* overrides Vuetify defaults (all caps) */
|
|
text-transform: none !important;
|
|
}
|
|
.setting-btn:first-letter {
|
|
/* Capitalizes first-letter only */
|
|
text-transform: uppercase !important;
|
|
}
|
|
.entry {
|
|
width: 100%;
|
|
font-size: 1.2em;
|
|
justify-content: left !important;
|
|
padding: 1.5em 0.5em 1.5em 0.5em !important;
|
|
}
|
|
.icon {
|
|
margin-right: 0.5em;
|
|
}
|
|
</style>
|