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