private async void RemoveWatchlistEpisode_Click(object sender, RoutedEventArgs e) { this.indicator = App.ShowLoading(this); lastModel = (ListItemViewModel)((MenuItem)sender).DataContext; if (await episodeController.removeEpisodeFromWatchlist(lastModel.Tvdb, lastModel.Imdb, lastModel.Name, lastModel.Year, lastModel.Season, lastModel.Episode)) { lastModel.InWatchList = false; ToastNotification.ShowToast("Show", "Episode removed from watchlist."); } else { ErrorManager.ShowConnectionErrorPopup(); } lastModel = null; this.indicator.IsVisible = false; }
private async void RemoveWatchlistEpisode_Click(object sender, RoutedEventArgs e) { App.TrackEvent("ViewShow", "Unwatchlist context"); this.progressBarLoading.Visibility = System.Windows.Visibility.Visible; lastModel = (ListItemViewModel)((MenuItem)sender).DataContext; if (await episodeController.removeEpisodeFromWatchlist(lastModel.Tvdb, App.ShowViewModel.Imdb, App.ShowViewModel.Name, Int16.Parse(App.ShowViewModel.Year), lastModel.Season, lastModel.Episode)) { lastModel.InWatchList = false; ToastNotification.ShowToast("Show", "Episode removed from watchlist."); } else { ErrorManager.ShowConnectionErrorPopup(); } lastModel = null; this.progressBarLoading.Visibility = System.Windows.Visibility.Collapsed; }
private async void removeFromWatchlist_Click(object sender, EventArgs e) { progressBarLoading.Visibility = System.Windows.Visibility.Visible; App.TrackEvent("ViewEpisode", "Unwatchlist"); if (await episodeController.removeEpisodeFromWatchlist(this.show.tvdb_id, this.show.imdb_id, this.show.Title, this.show.year, this.episode.Season, this.episode.Number)) { ToastNotification.ShowToast("Episode", "Episode removed from watchlist."); App.EpisodeViewModel.InWatchlist = false; await updateOtherViews(); InitAppBar(); } else { ErrorManager.ShowConnectionErrorPopup(); } progressBarLoading.Visibility = System.Windows.Visibility.Collapsed; }