private void ExtractNewsData(DefaultUserResponse response)
        {
            var news =
                response.News.Select(a => a.Articles.Select(b => new Tuple <Article, string>(b, a.Source)))
                .SelectMany(a => a)
                .Select(a => new NewsDwarfModel(a.Item1.Title, a.Item1.Description, a.Item1.URLToImage, a.Item2))
                .Where(a => a.Headline != null && a.ImageUrl != null && a.ShortLine != null && a.Source != null)
                .Where(a => a.ShortLine.Length > 155)
                .Select(a => new NewsDwarfModel(a.Headline.Trim(), a.ShortLine.Trim(), a.ImageUrl, a.Source))
                .ToList()
                .Shuffle();

            Window.Current.Dispatcher?.RunAsync(CoreDispatcherPriority.Normal, () => { NewsDwarf = news.ToList(); });
        }
        private void ExtractWeatherData(DefaultUserResponse response)
        {
            var weather = response.Weather;

            if (weather == null)
            {
                return;
            }
            var forcast = weather.Forecast
                          .Select(w => new ForecastModel(w.CurrentDate, w.CurrentTempeture, w.CurrentState, WeatherUnit.Celsius))
                          .ToList();
            var model = new WeatherDwarfModel(weather.CurrentTempeture, weather.CurrentState, weather.CurrentDate, forcast,
                                              weather.LocationName, WeatherUnit.Celsius);

            Window.Current.Dispatcher?.RunAsync(CoreDispatcherPriority.Normal, () => { WeatherDwarfModel = model; });
        }
 private void ExtractMirrorName(DefaultUserResponse response)
 {
     MirrorName = response.Name;
 }
 public void OnPresent(DefaultUserResponse response)
 {
     ExtractMirrorName(response);
     ExtractNewsData(response);
     ExtractWeatherData(response);
 }
Ejemplo n.º 5
0
 public void OnPresent(DefaultUserResponse response)
 {
     Response = response;
 }