Ejemplo n.º 1
0
 public void UpdateTopicWebView(Topic topic)
 {
     TopicReadyToBeDisplayed?.Invoke(topic);
     if (topic != null)
     {
         Task.Run(async() => await DrapFetcher.GetDraps(Loc.Settings.FollowedTopicType));
     }
 }
Ejemplo n.º 2
0
 public void UpdateThreadWebView(Thread thread)
 {
     ThreadReadyToBeDisplayed?.Invoke(thread);
     if (thread != null && thread is Topic)
     {
         Task.Run(async() => await DrapFetcher.GetDraps(Loc.Settings.FollowedTopicType));
     }
 }
Ejemplo n.º 3
0
 public void RefreshDraps()
 {
     if (!IsDrapeauxLoading)
     {
         IsDrapeauxLoading = true;
         IsDrapeauxLoaded  = false;
         DrapsGrouped      = null;
         Task.Run(async() => await DrapFetcher.GetDraps());
     }
 }
Ejemplo n.º 4
0
 public void RefreshDraps()
 {
     if (!IsDrapeauxLoading)
     {
         IsDrapeauxLoading = true;
         IsDrapeauxLoaded  = false;
         DrapsGrouped      = null;
         Task.Run(async() => await DrapFetcher.GetDraps(Loc.Settings.FollowedTopicType));
     }
 }
Ejemplo n.º 5
0
 public void UpdateTopicWebView(Topic topic)
 {
     TopicReadyToBeDisplayed?.Invoke(topic);
     Task.Run(async() => await DrapFetcher.GetDraps());
 }