/// <summary> /// Kicks off a update for users posts /// </summary> private void GetUserPosts() { if (_mUser == null) { return; } EnsurePostCollector(); // Update the collector _mPostCollector.Update(); }
public void OnNavigatingTo() { m_isVisible = true; if (m_collector != null) { // Make sure we are up to date m_collector.Update(); } // Set the task bar color m_host.SetStatusBar(Color.FromArgb(255, 10, 10, 10)); }
/// <summary> /// Called when we should get the trending subs /// </summary> /// <param name="count"></param> public void GetTrendingSubreddits() { // Check to see if we should update. DateTime now = DateTime.Now; if (LastTrendingSubs.Count == 0 || now.Day != LastUpdate.Day || now.Month != LastUpdate.Month) { // Make the subreddit Subreddit trendingSub = new Subreddit() { DisplayName = "trendingsubreddits", Id = "311a2", Title = "Trending Subreddits", PublicDescription = "Trending Subreddits", }; // Get the collector m_collector = PostCollector.GetCollector(trendingSub, m_baconMan, SortTypes.New); m_collector.OnCollectionUpdated += Collector_OnCollectionUpdated; m_collector.OnCollectorStateChange += Collector_OnCollectorStateChange; // Force an update, get only one story. m_collector.Update(true, 1); } else { // If not just fire the event now with the cached subs FireReadyEvent(LastTrendingSubs); } }
public void SetupPage(Subreddit subreddit, SortTypes sortType, SortTimeTypes sortTimeType) { // Capture the subreddit m_subreddit = subreddit; // Get the sort type SetCurrentSort(sortType); // Set the time sort SetCurrentTimeSort(sortTimeType); // Get the collector and register for updates. m_collector = PostCollector.GetCollector(m_subreddit, App.BaconMan, m_currentSortType, m_currentSortTimeType); m_collector.OnCollectorStateChange += Collector_OnCollectorStateChange; m_collector.OnCollectionUpdated += Collector_OnCollectionUpdated; // Kick off an update of the subreddits if needed. m_collector.Update(false, 30); // Set any posts that exist right now SetPosts(0, m_collector.GetCurrentPosts(), true); // Setup the UI with the name. ui_subredditName.Text = $"/r/{m_subreddit.DisplayName}"; }
public void OnNavigatingTo() { m_isVisible = true; if (m_collector != null) { // Make sure we are up to date m_collector.Update(); } // Resume the snow if it was going ui_letItSnow.OkNowIWantMoreSnowIfItHasBeenStarted(); // Set the task bar color m_host.SetStatusBar(Color.FromArgb(255, 10, 10, 10)); }
/// <summary> /// This will kick off the process of getting the stories for a subreddit. /// </summary> /// <param name="name"></param> /// <returns></returns> private void GetSubredditStories(string name, UpdateTypes type) { // Create a fake subreddit, the ID needs to be unique Subreddit subreddit = new Subreddit() { Id = DateTime.Now.Ticks.ToString(), DisplayName = name }; // Get the collector for the subreddit PostCollector collector = PostCollector.GetCollector(subreddit, m_baconMan); // Sub to the collector callback if (type == UpdateTypes.LockScreen) { collector.OnCollectionUpdated += Collector_OnCollectionUpdatedLockScreen; collector.OnCollectorStateChange += Collector_OnCollectorStateChangeLockScreen; } else if (type == UpdateTypes.Band) { collector.OnCollectionUpdated += Collector_OnCollectionUpdatedBand; collector.OnCollectorStateChange += Collector_OnCollectorStateChangeBand; } else { collector.OnCollectionUpdated += Collector_OnCollectionUpdatedDesktop; collector.OnCollectorStateChange += Collector_OnCollectorStateChangeDesktop; } // Kick off the update collector.Update(true); }
/// <summary> /// Called when we should get the trending subs /// </summary> public void GetTrendingSubreddits() { // Check to see if we should update. DateTime now = DateTime.Now; if(LastTrendingSubs.Count == 0 || now.Day != LastUpdate.Day || now.Month != LastUpdate.Month) { // Make the subreddit Subreddit trendingSub = new Subreddit() { DisplayName = "trendingsubreddits", Id = "311a2", Title = "Trending Subreddits", PublicDescription = "Trending Subreddits", }; // Get the collector m_collector = PostCollector.GetCollector(trendingSub, m_baconMan, SortTypes.New); m_collector.OnCollectionUpdated += Collector_OnCollectionUpdated; m_collector.OnCollectorStateChange += Collector_OnCollectorStateChange; // Force an update, get only one story. m_collector.Update(true, 1); } else { // If not just fire the event now with the cached subs FireReadyEvent(LastTrendingSubs); } }
public void OnNavigatingTo() { _isVisible = true; // Make sure we are up to date _collector?.Update(); // Set the task bar color _host.SetStatusBar(Color.FromArgb(255, 10, 10, 10)); }
/// <summary> /// Fired when the panel is being created. /// </summary> /// <param name="host">A reference to the host.</param> /// <param name="arguments">Arguments for the panel</param> public void PanelSetup(IPanelHost host, Dictionary<string, object> arguments) { // Capture the host m_host = host; // Check for the subreddit arg if (!arguments.ContainsKey(PanelManager.NAV_ARGS_SUBREDDIT_NAME)) { throw new Exception("No subreddit was given!"); } string subredditName = (string)arguments[PanelManager.NAV_ARGS_SUBREDDIT_NAME]; // Kick off a background task to do the work Task.Run(async () => { // Try to get the subreddit from the local cache. Subreddit subreddit = App.BaconMan.SubredditMan.GetSubredditByDisplayName(subredditName); // It is very rare that we can't get it from the cache because something // else usually request it from the web and then it will be cached. if (subreddit == null) { // Since this can take some time, show the loading overlay ShowFullScreenLoading(); // Try to get the subreddit from the web subreddit = await App.BaconMan.SubredditMan.GetSubredditFromWebByDisplayName((string)arguments[PanelManager.NAV_ARGS_SUBREDDIT_NAME]); } // Check again. if (subreddit == null) { // Hmmmm. We can't load the subreddit. Show a message and go back App.BaconMan.MessageMan.ShowMessageSimple("Hmmm, That's Not Right", "We can't load this subreddit right now, check your Internet connection."); // We need to wait some time until the transition animation is done or we can't go back. // If we call GoBack while we are still navigating it will be ignored. await Task.Delay(1000); // Now try to go back. await Windows.ApplicationModel.Core.CoreApplication.MainView.CoreWindow.Dispatcher.RunAsync(CoreDispatcherPriority.Low, () => { m_host.GoBack(); }); // Get out of here. return; } // Capture the subreddit m_subreddit = subreddit; // Get the current sort m_currentSort = arguments.ContainsKey(PanelManager.NAV_ARGS_SUBREDDIT_SORT) ? (SortTypes)arguments[PanelManager.NAV_ARGS_SUBREDDIT_SORT] : SortTypes.Hot; // Get the current sort time m_currentSortTime = arguments.ContainsKey(PanelManager.NAV_ARGS_SUBREDDIT_SORT_TIME) ? (SortTimeTypes)arguments[PanelManager.NAV_ARGS_SUBREDDIT_SORT_TIME] : SortTimeTypes.Week; // Try to get the target post id if (arguments.ContainsKey(PanelManager.NAV_ARGS_POST_ID)) { m_targetPost = (string)arguments[PanelManager.NAV_ARGS_POST_ID]; } // Try to get the force post, this will make us show only one post for the subreddit, // which is the post given. string forcePostId = null; if (arguments.ContainsKey(PanelManager.NAV_ARGS_FORCE_POST_ID)) { forcePostId = (string)arguments[PanelManager.NAV_ARGS_FORCE_POST_ID]; // If the UI isn't already shown show the loading UI. Most of the time this post wont' be cached // so it can take some time to load. ShowFullScreenLoading(); } // See if we are targeting a comment if (arguments.ContainsKey(PanelManager.NAV_ARGS_FORCE_COMMENT_ID)) { m_targetComment = (string)arguments[PanelManager.NAV_ARGS_FORCE_COMMENT_ID]; } // Get the collector and register for updates. m_collector = PostCollector.GetCollector(m_subreddit, App.BaconMan, m_currentSort, m_currentSortTime, forcePostId); m_collector.OnCollectionUpdated += Collector_OnCollectionUpdated; // Kick off an update of the subreddits if needed. m_collector.Update(); // Set any posts that exist right now UpdatePosts(0, m_collector.GetCurrentPosts()); }); }
/// <summary> /// Fired when the panel is being created. /// </summary> /// <param name="host">A reference to the host.</param> /// <param name="arguments">Arguments for the panel</param> public void PanelSetup(IPanelHost host, Dictionary <string, object> arguments) { // Capture the host _host = host; // Check for the subreddit arg if (!arguments.ContainsKey(PanelManager.NavArgsSubredditName)) { throw new Exception("No subreddit was given!"); } var subredditName = (string)arguments[PanelManager.NavArgsSubredditName]; // Kick off a background task to do the work Task.Run(async() => { // Try to get the subreddit from the local cache. var subreddit = App.BaconMan.SubredditMan.GetSubredditByDisplayName(subredditName); // It is very rare that we can't get it from the cache because something // else usually request it from the web and then it will be cached. if (subreddit == null) { // Since this can take some time, show the loading overlay ShowFullScreenLoading(); // Try to get the subreddit from the web subreddit = await App.BaconMan.SubredditMan.GetSubredditFromWebByDisplayName((string)arguments[PanelManager.NavArgsSubredditName]); } // Check again. if (subreddit == null) { // Hmmmm. We can't load the subreddit. Show a message and go back App.BaconMan.MessageMan.ShowMessageSimple("Hmmm, That's Not Right", "We can't load this subreddit right now, check your Internet connection."); // We need to wait some time until the transition animation is done or we can't go back. // If we call GoBack while we are still navigating it will be ignored. await Task.Delay(1000); // Now try to go back. await Windows.ApplicationModel.Core.CoreApplication.MainView.CoreWindow.Dispatcher.RunAsync(CoreDispatcherPriority.Low, () => { _host.GoBack(); }); // Get out of here. return; } // Capture the subreddit _subreddit = subreddit; // Get the current sort _currentSort = arguments.ContainsKey(PanelManager.NavArgsSubredditSort) ? (SortTypes)arguments[PanelManager.NavArgsSubredditSort] : SortTypes.Hot; // Get the current sort time _currentSortTime = arguments.ContainsKey(PanelManager.NavArgsSubredditSortTime) ? (SortTimeTypes)arguments[PanelManager.NavArgsSubredditSortTime] : SortTimeTypes.Week; // Try to get the target post id if (arguments.ContainsKey(PanelManager.NavArgsPostId)) { _targetPost = (string)arguments[PanelManager.NavArgsPostId]; } // Try to get the force post, this will make us show only one post for the subreddit, // which is the post given. string forcePostId = null; if (arguments.ContainsKey(PanelManager.NavArgsForcePostId)) { forcePostId = (string)arguments[PanelManager.NavArgsForcePostId]; // If the UI isn't already shown show the loading UI. Most of the time this post wont' be cached // so it can take some time to load. ShowFullScreenLoading(); } // See if we are targeting a comment if (arguments.ContainsKey(PanelManager.NavArgsForceCommentId)) { _targetComment = (string)arguments[PanelManager.NavArgsForceCommentId]; } // Get the collector and register for updates. _collector = PostCollector.GetCollector(_subreddit, App.BaconMan, _currentSort, _currentSortTime, forcePostId); _collector.OnCollectionUpdated += Collector_OnCollectionUpdated; // Kick off an update of the subreddits if needed. _collector.Update(); // Set any posts that exist right now UpdatePosts(0, _collector.GetCurrentPosts()); }); }
private void Refresh_Click(object sender, TappedRoutedEventArgs tappedRoutedEventArgs) { // Kick off an update. _collector.Update(true); }