Created
April 9, 2018 15:29
-
-
Save panesofglass/0a037c30e7e128b463dbcbf7560a4710 to your computer and use it in GitHub Desktop.
FetchData component using Trail
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| namespace BlazorApp1.Pages | |
| open System | |
| open System.Collections.Generic | |
| open System.Linq | |
| open System.Threading.Tasks | |
| open System.Net.Http | |
| open Microsoft.AspNetCore.Blazor | |
| open Microsoft.AspNetCore.Blazor.Components | |
| open Microsoft.AspNetCore.Blazor.Layouts | |
| open Microsoft.AspNetCore.Blazor.Routing | |
| open BlazorApp1 | |
| open BlazorApp1.Shared | |
| open Trail | |
| [<LayoutAttribute(typeof<MainLayout>)>] | |
| [<Route("/fetchdata")>] | |
| type FetchData () = | |
| inherit Trail.Component() | |
| override this.Render() = | |
| Dom.Fragment [ | |
| yield Dom.h1 [] [Dom.text "Weather forecast"] | |
| yield Dom.p [] [Dom.text "This component domonstrates fetching data from the server."] | |
| if Array.isEmpty this.Forecasts then | |
| yield Dom.p [] [ | |
| Dom.em [] [Dom.text "Loading..."] | |
| ] | |
| else | |
| yield Dom.table [Dom.HtmlAttribute("class", "table")] [ | |
| Dom.thead [] [ | |
| Dom.tr [] [ | |
| Dom.th [] [Dom.text "Date"] | |
| Dom.th [] [Dom.text "Temp. (C)"] | |
| Dom.th [] [Dom.text "Temp. (F)"] | |
| Dom.th [] [Dom.text "Summary"] | |
| ] | |
| ] | |
| Dom.tbody [] [ | |
| for forecast in this.Forecasts -> | |
| Dom.tr [] [ | |
| Dom.td [] [Dom.text (forecast.Date.ToShortDateString())] | |
| Dom.td [] [Dom.textf "%i" forecast.TemperatureC] | |
| Dom.td [] [Dom.textf "%i" forecast.TemperatureF] | |
| Dom.td [] [Dom.text forecast.Summary] | |
| ] | |
| ] | |
| ] | |
| ] | |
| member val private Forecasts : Library1.FetchData.WeatherForecast[] = [||] with get, set | |
| override this.OnInitAsync() = | |
| async { | |
| let! result = Async.AwaitTask <| Library1.FetchData.fetchForecasts(this.Http) | |
| this.Forecasts <- result | |
| } | |
| |> Async.StartAsTask :> System.Threading.Tasks.Task | |
| [<Inject>] | |
| member val private Http : HttpClient = Unchecked.defaultof<HttpClient> with get, set |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment