elm-pages-v3-beta/examples/pokedex/src/Page/Index.elm

96 lines
2.1 KiB
Elm
Raw Normal View History

module Page.Index exposing (Data, Model, Msg, page)
import DataSource exposing (DataSource)
import DataSource.Http
import Head
import Head.Seo as Seo
import Html exposing (..)
import Json.Decode as Decode
import Page exposing (Page, PageWithState, StaticPayload)
import Pages.PageUrl exposing (PageUrl)
import Pages.Url
2021-06-01 20:57:08 +03:00
import Route
import Secrets
import Shared
import View exposing (View)
type alias Model =
2021-12-15 20:26:23 +03:00
{}
type alias Msg =
()
type alias RouteParams =
{}
page : Page RouteParams Data
page =
2021-06-24 20:05:16 +03:00
Page.single
{ head = head
, data = data
}
|> Page.buildNoState { view = view }
data : DataSource Data
data =
DataSource.Http.get (Secrets.succeed "https://pokeapi.co/api/v2/pokemon/?limit=100&offset=0")
(Decode.field "results"
(Decode.list (Decode.field "name" Decode.string))
)
head :
StaticPayload Data RouteParams
-> List Head.Tag
head static =
Seo.summary
{ canonicalUrlOverride = Nothing
, siteName = "elm-pages Pokedex"
, image =
{ url = Pages.Url.external ""
, alt = "elm-pages logo"
, dimensions = Nothing
, mimeType = Nothing
}
, description = "This is a simple app to showcase server-rendering with elm-pages."
, locale = Nothing
, title = "Elm Pages Pokedex Example"
}
|> Seo.website
type alias Data =
List String
view :
Maybe PageUrl
-> Shared.Model
-> StaticPayload Data RouteParams
-> View Msg
view maybeUrl sharedModel static =
{ title = "Pokedex"
, body =
[ ul []
(List.indexedMap
(\index name ->
let
pokedexNumber =
index + 1
in
li []
[ Route.link (Route.PokedexNumber_ { pokedexNumber = String.fromInt pokedexNumber })
[]
[ text name ]
]
)
static.data
)
]
}