2019-05-20 00:21:54 +00:00
|
|
|
|
using System.Collections.ObjectModel;
|
2019-07-05 18:17:09 +00:00
|
|
|
|
using Aurora.Models.Media;
|
|
|
|
|
using Aurora.Services;
|
|
|
|
|
using Aurora.Services.PlayerService;
|
2019-05-22 14:30:41 +00:00
|
|
|
|
using Xamarin.Forms;
|
2019-05-19 21:25:42 +00:00
|
|
|
|
|
2019-07-05 18:17:09 +00:00
|
|
|
|
namespace Aurora.Design.Views.Songs
|
2019-05-18 21:25:36 +00:00
|
|
|
|
{
|
2019-05-19 21:25:42 +00:00
|
|
|
|
public class SongsViewModel : BaseViewModel
|
2019-05-18 21:25:36 +00:00
|
|
|
|
{
|
2019-05-19 21:25:42 +00:00
|
|
|
|
#region Fields
|
2019-05-24 14:27:19 +00:00
|
|
|
|
private ObservableCollection<BaseMedia> _songsList;
|
|
|
|
|
private BaseMedia _selectedSong;
|
2019-11-07 03:32:43 +00:00
|
|
|
|
private PlayerService _player;
|
2019-05-19 21:25:42 +00:00
|
|
|
|
|
|
|
|
|
#endregion Fields
|
|
|
|
|
|
|
|
|
|
#region Constructor
|
2019-05-18 21:25:36 +00:00
|
|
|
|
public SongsViewModel()
|
|
|
|
|
{
|
2019-11-07 03:32:43 +00:00
|
|
|
|
_player = PlayerService.Instance;
|
2019-05-24 14:27:19 +00:00
|
|
|
|
_songsList = new ObservableCollection<BaseMedia>();
|
2019-11-09 19:55:09 +00:00
|
|
|
|
PlayCommand = new Command(OnPlayButtonExecute, CanPlayButtonExecute);
|
2019-11-07 03:32:43 +00:00
|
|
|
|
|
2019-05-19 21:25:42 +00:00
|
|
|
|
Initialize();
|
2019-05-18 21:25:36 +00:00
|
|
|
|
}
|
2019-05-19 21:25:42 +00:00
|
|
|
|
|
|
|
|
|
#endregion Constructor
|
|
|
|
|
|
|
|
|
|
#region Properties
|
2019-05-24 14:27:19 +00:00
|
|
|
|
public ObservableCollection<BaseMedia> SongsList
|
2019-05-19 21:25:42 +00:00
|
|
|
|
{
|
|
|
|
|
get { return _songsList; }
|
2019-05-22 14:30:41 +00:00
|
|
|
|
set { SetProperty(ref _songsList, value); }
|
2019-05-19 21:25:42 +00:00
|
|
|
|
}
|
|
|
|
|
|
2019-05-24 14:27:19 +00:00
|
|
|
|
public BaseMedia SelectedSong
|
2019-05-19 21:25:42 +00:00
|
|
|
|
{
|
|
|
|
|
get { return _selectedSong; }
|
2019-05-22 14:30:41 +00:00
|
|
|
|
set { SetProperty(ref _selectedSong, value); }
|
2019-05-19 21:25:42 +00:00
|
|
|
|
}
|
|
|
|
|
|
2019-05-22 14:30:41 +00:00
|
|
|
|
public Command PlayCommand { get; private set; }
|
|
|
|
|
|
2019-05-19 21:25:42 +00:00
|
|
|
|
#endregion Properties
|
|
|
|
|
|
|
|
|
|
#region Methods
|
|
|
|
|
public void Initialize()
|
|
|
|
|
{
|
|
|
|
|
|
2019-05-20 00:21:54 +00:00
|
|
|
|
SongsList = LibraryService.Instance.GetLibrary();
|
2019-05-19 21:25:42 +00:00
|
|
|
|
}
|
|
|
|
|
|
2019-11-07 03:32:43 +00:00
|
|
|
|
#endregion Methods
|
|
|
|
|
|
|
|
|
|
#region Commmands
|
2019-11-09 19:55:09 +00:00
|
|
|
|
public override bool CanPreviousButtonExecute()
|
2019-11-07 03:32:43 +00:00
|
|
|
|
{
|
|
|
|
|
return true;
|
|
|
|
|
}
|
2019-11-09 19:55:09 +00:00
|
|
|
|
public override void OnPreviousButtonExecute()
|
2019-11-07 03:32:43 +00:00
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
2019-11-09 19:55:09 +00:00
|
|
|
|
public override bool CanPlayButtonExecute()
|
2019-05-22 22:59:15 +00:00
|
|
|
|
{
|
2019-11-07 03:32:43 +00:00
|
|
|
|
switch (_player.PlaybackState)
|
|
|
|
|
{
|
|
|
|
|
case PlaybackState.Buffering:
|
|
|
|
|
{
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
case PlaybackState.Playing:
|
|
|
|
|
{
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
case PlaybackState.Stopped:
|
|
|
|
|
{
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
return false;
|
2019-05-22 22:59:15 +00:00
|
|
|
|
}
|
|
|
|
|
|
2019-11-09 19:55:09 +00:00
|
|
|
|
public async override void OnPlayButtonExecute()
|
2019-11-07 03:32:43 +00:00
|
|
|
|
{
|
2019-12-04 22:53:49 +00:00
|
|
|
|
if (_selectedSong == null)
|
|
|
|
|
{
|
|
|
|
|
return;
|
|
|
|
|
}
|
2019-11-09 00:54:51 +00:00
|
|
|
|
base.Media = _selectedSong;
|
|
|
|
|
if (!_player.IsMediaLoaded(base.Media))
|
2019-11-07 03:32:43 +00:00
|
|
|
|
{
|
2019-11-09 00:54:51 +00:00
|
|
|
|
await _player.LoadMedia(base.Media).ConfigureAwait(true);
|
2019-11-07 03:32:43 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
switch (_player.PlaybackState)
|
|
|
|
|
{
|
|
|
|
|
case PlaybackState.Buffering:
|
|
|
|
|
{
|
|
|
|
|
_player.Play();
|
2019-12-04 22:53:49 +00:00
|
|
|
|
SetIsPlaying(true);
|
2019-11-07 03:32:43 +00:00
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
case PlaybackState.Playing:
|
|
|
|
|
{
|
|
|
|
|
_player.Pause();
|
2019-12-04 22:53:49 +00:00
|
|
|
|
SetIsPlaying(false);
|
2019-11-07 03:32:43 +00:00
|
|
|
|
break;
|
|
|
|
|
}
|
2019-11-29 17:37:57 +00:00
|
|
|
|
case PlaybackState.Stopped:
|
|
|
|
|
{
|
|
|
|
|
_player.Play();
|
2019-12-04 22:53:49 +00:00
|
|
|
|
SetIsPlaying(true);
|
2019-11-29 17:37:57 +00:00
|
|
|
|
break;
|
|
|
|
|
}
|
2019-11-07 03:32:43 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2019-11-09 19:55:09 +00:00
|
|
|
|
public override bool CanNextButtonExecute()
|
2019-11-07 03:32:43 +00:00
|
|
|
|
{
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
|
2019-11-09 19:55:09 +00:00
|
|
|
|
public override void OnNextButtonExecute()
|
2019-11-07 03:32:43 +00:00
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#endregion Commands
|
2019-05-18 21:25:36 +00:00
|
|
|
|
}
|
|
|
|
|
}
|