feat: PlaylistAddModal switches to created playlist

This commit is contained in:
Andy Russo 2024-03-16 21:00:50 +05:00 committed by Bnyro
parent 34f52c953e
commit 6311eb73de
2 changed files with 8 additions and 7 deletions

View file

@ -43,7 +43,7 @@ export default {
this.createPlaylist(this.playlistName).then(response => {
if (response.error) alert(response.error);
else {
this.$emit("created");
this.$emit("created", response.playlistId, this.playlistName);
this.$emit("close");
}
});

View file

@ -22,7 +22,7 @@
<CreatePlaylistModal
v-if="showCreatePlaylistModal"
@close="showCreatePlaylistModal = false"
@created="fetchPlaylists"
@created="addCreatedPlaylist"
/>
</template>
@ -55,7 +55,9 @@ export default {
};
},
mounted() {
this.fetchPlaylists();
this.getPlaylists().then(json => {
this.playlists = json;
});
this.selectedPlaylist = this.getPreferenceString("selectedPlaylist" + this.hashCode(this.authApiUrl()));
window.addEventListener("keydown", this.handleKeyDown);
window.blur();
@ -87,10 +89,9 @@ export default {
if (json.error) alert(json.error);
});
},
async fetchPlaylists() {
this.getPlaylists().then(json => {
this.playlists = json;
});
addCreatedPlaylist(playlistId, playlistName) {
this.playlists.push({ id: playlistId, name: playlistName });
this.selectedPlaylist = playlistId;
},
},
};