mirror of
https://github.com/Sarsoo/Spotify.NET.git
synced 2024-12-26 16:06:27 +00:00
38 lines
916 B
C#
38 lines
916 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using MvvmCross.ViewModels;
|
|
using SpotifyAPI.Web;
|
|
|
|
namespace Example.UWP.ViewModels
|
|
{
|
|
/// <summary>
|
|
/// Spotify Token is the parameter
|
|
/// </summary>
|
|
public class PlaylistsListViewModel : MvxViewModel<string>
|
|
{
|
|
private SpotifyClient _spotify;
|
|
|
|
private IList<SimplePlaylist> _playlists;
|
|
public IList<SimplePlaylist> Playlists
|
|
{
|
|
get => _playlists ?? (_playlists = new List<SimplePlaylist>());
|
|
set => SetProperty(ref _playlists, value);
|
|
}
|
|
|
|
public override void Prepare(string token)
|
|
{
|
|
_spotify = new SpotifyClient(SpotifyClientConfig.CreateDefault(token));
|
|
}
|
|
|
|
public override async Task Initialize()
|
|
{
|
|
await base.Initialize();
|
|
|
|
Playlists = await _spotify.PaginateAll(await _spotify.Playlists.CurrentUsers());
|
|
}
|
|
}
|
|
}
|