mirror of
https://github.com/TeamPiped/Piped.git
synced 2024-11-14 04:08:21 +00:00
feat: replace create playlist prompt with custom modal
This commit is contained in:
parent
8bb98c1c46
commit
c112a4b4cd
41
src/components/CreatePlaylistModal.vue
Normal file
41
src/components/CreatePlaylistModal.vue
Normal file
@ -0,0 +1,41 @@
|
|||||||
|
<template>
|
||||||
|
<ModalComponent @close="$emit('close')">
|
||||||
|
<div class="flex flex-col">
|
||||||
|
<h2 v-t="'actions.create_playlist'" />
|
||||||
|
<input type="text" class="input mt-2" v-model="playlistName" />
|
||||||
|
<div class="flex mt-3 ml-auto w-min">
|
||||||
|
<button class="btn" v-t="'actions.cancel'" @click="$emit('close')" />
|
||||||
|
<button class="btn ml-2" v-t="'actions.okay'" @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>
|
@ -5,7 +5,12 @@
|
|||||||
<option v-for="playlist in playlists" :key="playlist.id" :value="playlist.id" v-text="playlist.name" />
|
<option v-for="playlist in playlists" :key="playlist.id" :value="playlist.id" v-text="playlist.name" />
|
||||||
</select>
|
</select>
|
||||||
<div class="mt-3 w-full flex justify-between">
|
<div class="mt-3 w-full flex justify-between">
|
||||||
<button ref="addButton" v-t="'actions.create_playlist'" class="btn" @click="onCreatePlaylist" />
|
<button
|
||||||
|
ref="addButton"
|
||||||
|
v-t="'actions.create_playlist'"
|
||||||
|
class="btn"
|
||||||
|
@click="showCreatePlaylistModal = true"
|
||||||
|
/>
|
||||||
<button
|
<button
|
||||||
ref="addButton"
|
ref="addButton"
|
||||||
v-t="'actions.add_to_playlist'"
|
v-t="'actions.add_to_playlist'"
|
||||||
@ -14,14 +19,21 @@
|
|||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
</ModalComponent>
|
</ModalComponent>
|
||||||
|
<CreatePlaylistModal
|
||||||
|
v-if="showCreatePlaylistModal"
|
||||||
|
@close="showCreatePlaylistModal = false"
|
||||||
|
@created="fetchPlaylists"
|
||||||
|
/>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
import ModalComponent from "./ModalComponent.vue";
|
import ModalComponent from "./ModalComponent.vue";
|
||||||
|
import CreatePlaylistModal from "./CreatePlaylistModal.vue";
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
components: {
|
components: {
|
||||||
ModalComponent,
|
ModalComponent,
|
||||||
|
CreatePlaylistModal,
|
||||||
},
|
},
|
||||||
props: {
|
props: {
|
||||||
videoInfo: {
|
videoInfo: {
|
||||||
@ -39,6 +51,7 @@ export default {
|
|||||||
playlists: [],
|
playlists: [],
|
||||||
selectedPlaylist: null,
|
selectedPlaylist: null,
|
||||||
processing: false,
|
processing: false,
|
||||||
|
showCreatePlaylistModal: false,
|
||||||
};
|
};
|
||||||
},
|
},
|
||||||
mounted() {
|
mounted() {
|
||||||
@ -79,14 +92,6 @@ export default {
|
|||||||
this.playlists = json;
|
this.playlists = json;
|
||||||
});
|
});
|
||||||
},
|
},
|
||||||
onCreatePlaylist() {
|
|
||||||
const name = prompt(this.$t("actions.create_playlist"));
|
|
||||||
if (!name) return;
|
|
||||||
this.createPlaylist(name).then(json => {
|
|
||||||
if (json.error) alert(json.error);
|
|
||||||
else this.fetchPlaylists();
|
|
||||||
});
|
|
||||||
},
|
|
||||||
},
|
},
|
||||||
};
|
};
|
||||||
</script>
|
</script>
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
<h2 v-t="'titles.playlists'" class="my-4 font-bold" />
|
<h2 v-t="'titles.playlists'" class="my-4 font-bold" />
|
||||||
|
|
||||||
<div class="mb-3 flex justify-between">
|
<div class="mb-3 flex justify-between">
|
||||||
<button v-t="'actions.create_playlist'" class="btn" @click="onCreatePlaylist" />
|
<button v-t="'actions.create_playlist'" class="btn" @click="showCreatePlaylistModal = true" />
|
||||||
<div class="flex">
|
<div class="flex">
|
||||||
<button v-if="playlists.length > 0" v-t="'actions.export_to_json'" class="btn" @click="exportPlaylists" />
|
<button v-if="playlists.length > 0" v-t="'actions.export_to_json'" class="btn" @click="exportPlaylists" />
|
||||||
<input
|
<input
|
||||||
@ -92,14 +92,20 @@
|
|||||||
</router-link>
|
</router-link>
|
||||||
</div>
|
</div>
|
||||||
<br />
|
<br />
|
||||||
|
<CreatePlaylistModal
|
||||||
|
v-if="showCreatePlaylistModal"
|
||||||
|
@close="showCreatePlaylistModal = false"
|
||||||
|
@created="fetchPlaylists"
|
||||||
|
/>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
import ConfirmModal from "./ConfirmModal.vue";
|
import ConfirmModal from "./ConfirmModal.vue";
|
||||||
import ModalComponent from "./ModalComponent.vue";
|
import ModalComponent from "./ModalComponent.vue";
|
||||||
|
import CreatePlaylistModal from "./CreatePlaylistModal.vue";
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
components: { ConfirmModal, ModalComponent },
|
components: { ConfirmModal, ModalComponent, CreatePlaylistModal },
|
||||||
data() {
|
data() {
|
||||||
return {
|
return {
|
||||||
playlists: [],
|
playlists: [],
|
||||||
@ -108,6 +114,7 @@ export default {
|
|||||||
playlistToEdit: null,
|
playlistToEdit: null,
|
||||||
newPlaylistName: "",
|
newPlaylistName: "",
|
||||||
newPlaylistDescription: "",
|
newPlaylistDescription: "",
|
||||||
|
showCreatePlaylistModal: false,
|
||||||
};
|
};
|
||||||
},
|
},
|
||||||
mounted() {
|
mounted() {
|
||||||
@ -153,14 +160,6 @@ export default {
|
|||||||
});
|
});
|
||||||
this.playlistToDelete = null;
|
this.playlistToDelete = null;
|
||||||
},
|
},
|
||||||
onCreatePlaylist() {
|
|
||||||
const name = prompt(this.$t("actions.create_playlist"));
|
|
||||||
if (!name) return;
|
|
||||||
this.createPlaylist(name).then(json => {
|
|
||||||
if (json.error) alert(json.error);
|
|
||||||
else this.fetchPlaylists();
|
|
||||||
});
|
|
||||||
},
|
|
||||||
async exportPlaylists() {
|
async exportPlaylists() {
|
||||||
if (!this.playlists) return;
|
if (!this.playlists) return;
|
||||||
let json = {
|
let json = {
|
||||||
|
Loading…
Reference in New Issue
Block a user