summaryrefslogtreecommitdiff
path: root/elm3/User/Register.elm
blob: e214cef13ec0f2612bcc68fe6945504271b24c91 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
module User.Register exposing (main)

import Html exposing (..)
import Html.Attributes exposing (..)
import Html.Events exposing (..)
import Browser
import Json.Encode as JE
import Lib.Gen as Gen
import Lib.Api as Api
import Lib.Html exposing (..)


main : Program () Model Msg
main = Browser.element
  { init = always (Model "" "" 0 False Api.Normal, Cmd.none)
  , subscriptions = always Sub.none
  , view = view
  , update = update
  }


encodeForm : Model -> JE.Value
encodeForm o = JE.object
  [ ("username", JE.string o.username)
  , ("email",    JE.string o.email   )
  , ("vns",      JE.int    o.vns     )]


type alias Model =
  { username : String
  , email    : String
  , vns      : Int
  , success  : Bool
  , state    : Api.State
  }

type Msg
  = Username String
  | EMail String
  | VNs String
  | Submit
  | Submitted Api.Response


update : Msg -> Model -> (Model, Cmd Msg)
update msg model =
  case msg of
    Username n -> ({ model | username = n }, Cmd.none)
    EMail    n -> ({ model | email    = n }, Cmd.none)
    VNs      n -> ({ model | vns      = Maybe.withDefault 0 (String.toInt n) }, Cmd.none)

    Submit -> ( { model | state = Api.Loading }
              , Api.post "/u/register" (encodeForm model) Submitted)

    Submitted Gen.Success     -> ({ model | state = Api.Normal, success = True }, Cmd.none)
    Submitted e               -> ({ model | state = Api.Error e}, Cmd.none)


view : Model -> Html Msg
view model = form_ Submit (model.state == Api.Loading)
  [ div [ class "card card--white card--no-separators flex-expand small-card mb-5" ] <|
    [ div [ class "card__header" ] [ div [ class "card__title" ] [ text "Register" ]]
    , case model.state of
        Api.Error e ->
          div [ class "card__section card__section--error fs-medium" ]
            [ h5 [] [ text "Error" ]
            , text <| Api.showResponse e
            ]
        _ -> text ""
    ] ++ if model.success
    then
    [ div [ class "card__section fs-medium" ]
      [ text "Your account has been created! In a few minutes, you should receive an email with instructions to set a password and activate your account." ]
    ]
    else
    [
      div [ class "card__section fs-medium" ]
      [ div [ class "form-group" ]
        [ label [ for "username" ] [ text "Username" ]
        , inputText "username" model.username Username [required True, pattern "[a-z0-9-]{2,15}"]
        , div [ class "form-group__help" ] [ text "Preferred username. Must be lowercase and can only consist of alphanumeric characters." ]
        ]
      , div [ class "form-group" ]
        [ label [ for "email" ] [ text "Email" ]
        , inputText "email" model.email EMail [required True, type_ "email", pattern Gen.emailPattern]
        , div [ class "form-group__help" ]
          [ text "Your email address will only be used in case you lose your password. We will never send spam or newsletters unless you explicitly ask us for it or we get hacked." ]
        ]
      , div [ class "form-group" ]
        [ label [ for "vns" ] [ text "How many visual novels are there in the database?" ]
        , inputText "vns" (String.fromInt model.vns) VNs [required True, pattern "[0-9]+"]
        , div [ class "form-group__help" ]
          [ text "Anti-bot question, you can find the answer on the "
          , a [ href "/", target "_blank" ] [ text "main page" ]
          , text "."
          ]
        ]
      ]
    , div [ class "card__section" ]
      [ div [ class "d-flex jc-end" ]
        [ if model.state == Api.Loading
          then div [ class "spinner spinner--md pull-right" ] []
          else text ""
        , input [ type_ "submit", class "btn", tabindex 10, value "Submit" ] []
        ]
      ]
    ]
  ]