aux-search/src/Main.elm

427 lines
11 KiB
Elm
Raw Normal View History

module Main exposing (main)
2020-03-28 04:09:01 +00:00
import Browser
import Browser.Navigation
import Html
exposing
( Html
2020-04-10 08:13:50 +00:00
, a
, button
, div
2020-04-10 08:13:50 +00:00
, footer
, header
2020-04-10 08:13:50 +00:00
, img
, li
, span
, text
, ul
)
import Html.Attributes
exposing
( attribute
, class
, classList
2020-04-10 08:13:50 +00:00
, href
, id
2020-04-10 08:13:50 +00:00
, src
, type_
)
import Page.Home
import Page.Options
import Page.Packages
import Route
import Search
import Url
import Url.Builder
2020-03-28 04:09:01 +00:00
-- MODEL
type alias Flags =
{ elasticsearchMappingSchemaVersion : Int
, elasticsearchUrl : String
, elasticsearchUsername : String
, elasticsearchPassword : String
}
2020-03-28 04:09:01 +00:00
type alias Model =
{ navKey : Browser.Navigation.Key
, route : Route.Route
2020-06-03 19:02:12 +00:00
, elasticsearch : Search.Options
2020-03-28 04:09:01 +00:00
, page : Page
}
type Page
= NotFound
| Home Page.Home.Model
| Packages Page.Packages.Model
| Options Page.Options.Model
init :
Flags
-> Url.Url
-> Browser.Navigation.Key
-> ( Model, Cmd Msg )
init flags url navKey =
2020-04-10 08:13:50 +00:00
let
model =
{ navKey = navKey
, elasticsearch =
2020-06-03 19:02:12 +00:00
Search.Options
flags.elasticsearchMappingSchemaVersion
flags.elasticsearchUrl
flags.elasticsearchUsername
flags.elasticsearchPassword
, page = NotFound
, route = Route.Home
2020-04-10 08:13:50 +00:00
}
in
changeRouteTo model url
2020-04-10 08:13:50 +00:00
2020-03-28 04:09:01 +00:00
-- UPDATE
type Msg
= ChangedUrl Url.Url
| ClickedLink Browser.UrlRequest
| HomeMsg Page.Home.Msg
| PackagesMsg Page.Packages.Msg
| OptionsMsg Page.Options.Msg
updateWith :
(subModel -> Page)
-> (subMsg -> Msg)
-> Model
-> ( subModel, Cmd subMsg )
-> ( Model, Cmd Msg )
updateWith toPage toMsg model ( subModel, subCmd ) =
( { model | page = toPage subModel }
, Cmd.map toMsg subCmd
)
attemptQuery : ( Model, Cmd Msg ) -> ( Model, Cmd Msg )
attemptQuery (( model, _ ) as pair) =
let
-- We intentially throw away Cmd
-- because we don't want to perform any effects
-- in this cases where route itself doesn't change
noEffects =
Tuple.mapSecond (always Cmd.none)
submitQuery msg makeRequest searchModel =
Tuple.mapSecond
(\cmd ->
Cmd.batch
[ cmd
, Cmd.map msg <|
makeRequest
model.elasticsearch
searchModel.channel
(Maybe.withDefault "" searchModel.query)
searchModel.from
searchModel.size
searchModel.sort
]
)
pair
in
case model.page of
Packages searchModel ->
if Search.shouldLoad searchModel then
submitQuery PackagesMsg Page.Packages.makeRequest searchModel
else
noEffects pair
Options searchModel ->
if Search.shouldLoad searchModel then
submitQuery OptionsMsg Page.Options.makeRequest searchModel
else
noEffects pair
_ ->
pair
pageMatch : Page -> Page -> Bool
pageMatch m1 m2 =
case ( m1, m2 ) of
( NotFound, NotFound ) ->
True
( Home _, Home _ ) ->
True
( Packages _, Packages _ ) ->
True
( Options _, Options _ ) ->
True
_ ->
False
changeRouteTo :
Model
-> Url.Url
-> ( Model, Cmd Msg )
changeRouteTo currentModel url =
case Route.fromUrl url of
Nothing ->
( { currentModel | page = NotFound }
, Cmd.none
)
Just route ->
let
model =
{ currentModel | route = route }
avoidReinit ( newModel, cmd ) =
if pageMatch currentModel.page newModel.page then
( model, Cmd.none )
else
( newModel, cmd )
in
case route of
Route.NotFound ->
( { model | page = NotFound }, Cmd.none )
Route.Home ->
-- Always redirect to /packages until we have something to show
-- on the home page
( model, Browser.Navigation.pushUrl model.navKey "/packages" )
2020-10-30 18:13:55 +00:00
Route.Packages searchArgs ->
let
modelPage =
case model.page of
Packages x ->
Just x
_ ->
Nothing
in
2020-10-30 18:13:55 +00:00
Page.Packages.init searchArgs modelPage
|> updateWith Packages PackagesMsg model
|> avoidReinit
|> attemptQuery
2020-10-30 18:13:55 +00:00
Route.Options searchArgs ->
let
modelPage =
case model.page of
Options x ->
Just x
_ ->
Nothing
in
2020-10-30 18:13:55 +00:00
Page.Options.init searchArgs modelPage
|> updateWith Options OptionsMsg model
|> avoidReinit
|> attemptQuery
2020-03-28 04:09:01 +00:00
update : Msg -> Model -> ( Model, Cmd Msg )
update msg model =
case ( msg, model.page ) of
( ClickedLink urlRequest, _ ) ->
case urlRequest of
Browser.Internal url ->
2020-03-31 00:59:06 +00:00
( model
, Browser.Navigation.pushUrl model.navKey <| Url.toString url
2020-03-31 00:59:06 +00:00
)
2020-03-28 04:09:01 +00:00
Browser.External href ->
2020-04-10 08:13:50 +00:00
( model
, case href of
-- ignore links with no `href` attribute
"" ->
Cmd.none
_ ->
Browser.Navigation.load href
2020-04-10 08:13:50 +00:00
)
( ChangedUrl url, _ ) ->
changeRouteTo model url
2020-04-10 08:13:50 +00:00
( HomeMsg subMsg, Home subModel ) ->
Page.Home.update subMsg subModel
|> updateWith Home HomeMsg model
( PackagesMsg subMsg, Packages subModel ) ->
2020-07-24 21:01:16 +00:00
Page.Packages.update model.navKey subMsg subModel
|> updateWith Packages PackagesMsg model
( OptionsMsg subMsg, Options subModel ) ->
2020-07-24 21:01:16 +00:00
Page.Options.update model.navKey subMsg subModel
|> updateWith Options OptionsMsg model
( _, _ ) ->
-- Disregard messages that arrived for the wrong page.
( model, Cmd.none )
2020-04-10 08:13:50 +00:00
2020-03-28 04:09:01 +00:00
-- VIEW
view :
Model
->
{ title : String
, body : List (Html Msg)
}
2020-03-28 04:09:01 +00:00
view model =
let
title =
case model.page of
Packages _ ->
"NixOS Search - Packages"
Options _ ->
"NixOS Search - Options"
_ ->
"NixOS Search"
in
{ title = title
, body =
[ div []
[ header []
[ div [ class "navbar navbar-static-top" ]
[ div [ class "navbar-inner" ]
[ div [ class "container" ]
[ button
[ type_ "button"
, class "btn btn-navbar"
, attribute "data-toggle" "collapse"
, attribute "data-target" ".nav-collapse"
]
[ span [ class "icon-bar" ] []
, span [ class "icon-bar" ] []
, span [ class "icon-bar" ] []
]
, a [ class "brand", href "https://nixos.org" ]
[ img [ src "https://nixos.org/logo/nix-wiki.png", class "logo" ] []
]
, div [ class "nav-collapse collapse" ]
[ ul [ class "nav pull-left" ]
(viewNavigation model.route)
]
]
2020-04-10 08:13:50 +00:00
]
]
]
, div [ class "container main" ]
[ div [ id "content" ] [ viewPage model ]
, footer
[ class "container text-center" ]
[ div []
[ span [] [ text "Please help us improve the search by " ]
, a
[ href "https://github.com/NixOS/nixos-search/issues"
]
[ text "reporting issues" ]
, span [] [ text "." ]
]
, div []
[ span [] [ text " " ]
, span [] [ text "Elasticsearch instance graciously provided by " ]
, a [ href "https://bonsai.io" ] [ text "Bonsai" ]
, span [] [ text ". Thank you! " ]
]
]
]
2020-03-28 04:09:01 +00:00
]
]
}
2020-03-28 04:09:01 +00:00
viewNavigation : Route.Route -> List (Html Msg)
viewNavigation route =
let
toRoute f =
case route of
-- Preserve arguments
2020-10-30 18:13:55 +00:00
Route.Packages searchArgs ->
f searchArgs
2020-10-30 18:13:55 +00:00
Route.Options searchArgs ->
f searchArgs
_ ->
2020-10-30 18:13:55 +00:00
f <| Route.SearchArgs Nothing Nothing Nothing Nothing Nothing Nothing
in
li [] [ a [ href "https://nixos.org" ] [ text "Back to nixos.org" ] ]
:: List.map
(viewNavigationItem route)
[ ( toRoute Route.Packages, "Packages" )
, ( toRoute Route.Options, "Options" )
]
viewNavigationItem :
Route.Route
-> ( Route.Route, String )
-> Html Msg
viewNavigationItem currentRoute ( route, title ) =
li
[ classList [ ( "active", currentRoute == route ) ] ]
[ a [ Route.href route ] [ text title ] ]
2020-04-10 09:04:03 +00:00
viewPage : Model -> Html Msg
viewPage model =
case model.page of
NotFound ->
div [] [ text "Not Found" ]
2020-03-28 04:09:01 +00:00
Home _ ->
div [] [ text "Welcome" ]
2020-03-28 04:09:01 +00:00
Packages packagesModel ->
Html.map (\m -> PackagesMsg m) <| Page.Packages.view packagesModel
2020-04-10 08:13:50 +00:00
Options optionsModel ->
Html.map (\m -> OptionsMsg m) <| Page.Options.view optionsModel
-- SUBSCRIPTIONS
subscriptions : Model -> Sub Msg
subscriptions _ =
Sub.none
2020-03-28 04:09:01 +00:00
-- MAIN
main : Program Flags Model Msg
2020-03-28 04:09:01 +00:00
main =
Browser.application
{ init = init
, onUrlRequest = ClickedLink
, onUrlChange = ChangedUrl
, subscriptions = subscriptions
2020-03-28 04:09:01 +00:00
, update = update
, view = view
2020-03-28 04:09:01 +00:00
}