mirror of
				https://github.com/TeamPiped/Piped.git
				synced 2025-11-04 06:31:55 +00:00 
			
		
		
		
	feat: PlaylistAddModal switches to created playlist
This commit is contained in:
		@@ -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");
 | 
			
		||||
                }
 | 
			
		||||
            });
 | 
			
		||||
 
 | 
			
		||||
@@ -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;
 | 
			
		||||
        },
 | 
			
		||||
    },
 | 
			
		||||
};
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user