mirror of
https://github.com/TeamPiped/Piped.git
synced 2025-01-08 13:56:59 +00:00
42 lines
1.1 KiB
Vue
42 lines
1.1 KiB
Vue
<template>
|
|
<ModalComponent @close="$emit('close')">
|
|
<div class="flex flex-col">
|
|
<h2 v-t="'actions.create_playlist'" />
|
|
<input v-model="playlistName" type="text" class="input mt-2" />
|
|
<div class="ml-auto mt-3 w-min flex">
|
|
<button v-t="'actions.cancel'" class="btn" @click="$emit('close')" />
|
|
<button v-t="'actions.okay'" class="btn ml-2" @click="onCreatePlaylist" />
|
|
</div>
|
|
</div>
|
|
</ModalComponent>
|
|
</template>
|
|
|
|
<script>
|
|
import ModalComponent from "./ModalComponent.vue";
|
|
|
|
export default {
|
|
components: {
|
|
ModalComponent,
|
|
},
|
|
emits: ["created", "close"],
|
|
data() {
|
|
return {
|
|
playlistName: "",
|
|
};
|
|
},
|
|
methods: {
|
|
onCreatePlaylist() {
|
|
if (!this.playlistName) return;
|
|
|
|
this.createPlaylist(this.playlistName).then(response => {
|
|
if (response.error) alert(response.error);
|
|
else {
|
|
this.$emit("created");
|
|
this.$emit("close");
|
|
}
|
|
});
|
|
},
|
|
},
|
|
};
|
|
</script>
|