all repos

onasty @ 7ff621dd2cbf09e69e4ec0edf8bf5e4a28b7d637

a one-time notes service

onasty/web/src/Pages/Profile.elm(view raw)

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
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
module Pages.Profile exposing (Model, Msg, ViewVariant, page)

import Api
import Api.Profile
import Auth
import Components.Box
import Components.Form
import Components.Utils
import Data.Me exposing (Me)
import Effect exposing (Effect)
import Html as H exposing (Html)
import Html.Attributes as A
import Html.Events
import Layouts
import Page exposing (Page)
import Route exposing (Route)
import Shared
import Time.Format
import Validators
import View exposing (View)


page : Auth.User -> Shared.Model -> Route () -> Page Model Msg
page _ shared _ =
    Page.new
        { init = init shared
        , update = update
        , subscriptions = subscriptions
        , view = view shared
        }
        |> Page.withLayout (\_ -> Layouts.Header {})



-- INIT


type alias Model =
    { view : ViewVariant
    , me : Api.Response Me
    , password : { current : String, new : String, confirm : String }
    , email : String
    , apiError : Maybe Api.Error
    , isFormSentSuccessfully : Bool
    }


init : Shared.Model -> () -> ( Model, Effect Msg )
init _ () =
    ( { view = Overview
      , me = Api.Loading
      , password = { current = "", new = "", confirm = "" }
      , email = ""
      , apiError = Nothing
      , isFormSentSuccessfully = False
      }
    , Api.Profile.me { onResponse = ApiMeResponded }
    )



-- UPDATE


type ViewVariant
    = Overview
    | Password
    | Email


type Field
    = PasswordCurrent
    | PasswordNew
    | PasswordConfirm
    | EmailNew


type Msg
    = UserChangedView ViewVariant
    | UserClickedSubmit
    | UserChangedField Field String
    | ApiMeResponded (Result Api.Error Me)
    | ApiChangePasswordResponsed (Result Api.Error ())
    | ApiRequestEmailChangeResponsed (Result Api.Error ())


update : Msg -> Model -> ( Model, Effect Msg )
update msg model =
    case msg of
        UserChangedView variant ->
            ( { model | view = variant, isFormSentSuccessfully = False, apiError = Nothing }, Effect.none )

        UserChangedField PasswordCurrent value ->
            ( { model | password = { current = value, new = model.password.new, confirm = model.password.confirm } }, Effect.none )

        UserChangedField PasswordNew value ->
            ( { model | password = { current = model.password.current, new = value, confirm = model.password.confirm } }, Effect.none )

        UserChangedField PasswordConfirm value ->
            ( { model | password = { current = model.password.current, new = model.password.new, confirm = value } }, Effect.none )

        UserChangedField EmailNew value ->
            ( { model | email = value }, Effect.none )

        UserClickedSubmit ->
            case model.view of
                Password ->
                    ( model
                    , Api.Profile.changePassword
                        { onResponse = ApiChangePasswordResponsed
                        , currentPassword = model.password.current
                        , newPassword = model.password.new
                        }
                    )

                Email ->
                    ( model
                    , Api.Profile.requestEmailChange
                        { onResponse = ApiRequestEmailChangeResponsed
                        , newEmail = model.email
                        }
                    )

                _ ->
                    ( model, Effect.none )

        ApiMeResponded (Ok userData) ->
            ( { model | me = Api.Success userData }, Effect.none )

        ApiMeResponded (Err error) ->
            ( { model | me = Api.Failure error }, Effect.none )

        ApiChangePasswordResponsed (Ok ()) ->
            ( { model | isFormSentSuccessfully = True }, Effect.none )

        ApiChangePasswordResponsed (Err err) ->
            ( { model | apiError = Just err }, Effect.none )

        ApiRequestEmailChangeResponsed (Ok ()) ->
            ( { model | isFormSentSuccessfully = True }, Effect.none )

        ApiRequestEmailChangeResponsed (Err err) ->
            ( { model | apiError = Just err }, Effect.none )


subscriptions : Model -> Sub Msg
subscriptions _ =
    Sub.none



-- VIEW


view : Shared.Model -> Model -> View Msg
view shared model =
    { title = "Profile"
    , body =
        [ H.div [ A.class "w-full p-6 max-w-4xl mx-auto" ]
            [ H.div [ A.class "rounded-lg border border-gray-200 shadow-sm" ]
                [ H.div [ A.class "p-6 border-b border-gray-200" ]
                    [ Components.Utils.viewMaybe model.apiError (\e -> Components.Box.error (Api.errorMessage e))
                    , H.h1 [ A.class "text-2xl font-bold text-gray-900" ] [ H.text "Account Settings" ]
                    , H.p [ A.class "text-gray-600" ] [ H.text "Manage your account preferences and security settings" ]
                    ]
                , H.div [ A.class "flex" ]
                    [ viewNavigationSidebar model
                    , H.div [ A.class "flex-1 p-6" ]
                        [ case model.me of
                            Api.Success me ->
                                case model.view of
                                    Overview ->
                                        viewOverview shared me

                                    Password ->
                                        viewPassword model.password (isFormDisabled model) model.isFormSentSuccessfully

                                    Email ->
                                        viewEmail me model.email (isFormDisabled model) model.isFormSentSuccessfully

                            Api.Loading ->
                                H.text "Loading..."

                            Api.Failure err ->
                                H.text ("ERROR: " ++ Api.errorMessage err)
                        ]
                    ]
                ]
            ]
        ]
    }


isFormDisabled : Model -> Bool
isFormDisabled model =
    case model.view of
        Overview ->
            True

        Password ->
            (Validators.password model.password.new /= Nothing)
                || (Validators.passwords model.password.new model.password.confirm /= Nothing)

        Email ->
            Validators.email model.email /= Nothing


viewNavigationSidebar : Model -> Html Msg
viewNavigationSidebar model =
    let
        button variant text =
            Components.Form.button
                { text = text
                , onClick = UserChangedView variant
                , disabled = model.view == variant
                , style = Components.Form.PrimaryReverse (model.view == variant)
                }
    in
    H.div [ A.class "w-64 border-r border-gray-200 p-6" ]
        [ H.nav [ A.class "[&>*]:w-full space-y-2" ]
            [ button Overview "Overview"
            , button Password "Password"
            , button Email "Email"
            ]
        ]


viewOverview : Shared.Model -> Me -> Html Msg
viewOverview shared me =
    let
        infoBox title text =
            H.div [ A.class "bg-gray-50 rounded-lg p-4" ]
                [ H.div [ A.class "flex items-center gap-3 mb-2" ]
                    [ H.h3 [ A.class "font-medium text-gray-900" ] [ H.text title ] ]
                , H.p [ A.class "text-gray-700" ] [ H.text text ]
                ]
    in
    viewWrapper
        { title = "Account Overview"
        , body =
            H.div [ A.class "grid grid-cols-1 md:grid-cols-2 gap-6" ]
                [ infoBox "Email Address" me.email
                , infoBox "Member Since" (Time.Format.toString shared.timeZone me.createdAt)
                , infoBox "Last Login" (Time.Format.toString shared.timeZone me.lastLoginAt)
                , infoBox "Total Notes Created" (String.fromInt me.notesCreated)
                ]
        }


viewPassword : { current : String, new : String, confirm : String } -> Bool -> Bool -> Html Msg
viewPassword password isButtonDisabled isFormSentSuccessfully =
    let
        input : { label : String, field : Field, value : String, error : Maybe String } -> Html Msg
        input { label, field, value, error } =
            Components.Form.input
                { label = label
                , id = label
                , field = field
                , onInput = UserChangedField field
                , placeholder = ""
                , value = value
                , required = True
                , type_ = "password"
                , style = Components.Form.Simple
                , error = error
                }
    in
    viewWrapper
        { title = "Change Password"
        , body =
            H.form
                [ A.class "space-y-4 max-w-md"
                , Html.Events.onSubmit UserClickedSubmit
                ]
                [ Components.Utils.viewIf isFormSentSuccessfully (Components.Box.successText "Password updated successfully!")
                , input { label = "Current Password", field = PasswordCurrent, value = password.current, error = Nothing }
                , input { label = "New Password", field = PasswordNew, value = password.new, error = Validators.password password.new }
                , input { label = "Confirm New Password", field = PasswordConfirm, value = password.confirm, error = Validators.passwords password.new password.confirm }
                , Components.Form.submitButton
                    { disabled = isButtonDisabled
                    , text = "Change Password"
                    , style = Components.Form.Primary isButtonDisabled
                    , class = ""
                    }
                ]
        }


viewEmail : Me -> String -> Bool -> Bool -> Html Msg
viewEmail me email isButtonDisabled isFormSentSuccessfully =
    viewWrapper
        { title = "Change Email Address"
        , body =
            H.form
                [ A.class "space-y-4 max-w-md"
                , Html.Events.onSubmit UserClickedSubmit
                ]
                [ H.div [ A.class "mb-6 p-4 bg-blue-50 border border-blue-200 rounded-md" ]
                    [ H.h3 [ A.class "font-medium mb-1" ] [ H.text "Note:" ]
                    , H.p [] [ H.text "A confirmation email will be sent to your current email address. You must confirm the change by clicking the link in that email." ]
                    , H.p [ A.class "mt-2 text-blue-800 text-sm" ]
                        [ H.span [ A.class "font-medium" ] [ H.text ("Current email: " ++ me.email) ]
                        ]
                    ]
                , Components.Utils.viewIf isFormSentSuccessfully (Components.Box.successText "Email updated successfully! Please check your new email for verification.")
                , Components.Form.input
                    { style = Components.Form.Simple
                    , id = "new-email"
                    , type_ = "email"
                    , field = EmailNew
                    , label = "New Email Address"
                    , value = email
                    , placeholder = "Enter your new email address"
                    , onInput = UserChangedField EmailNew
                    , error = Validators.email email
                    , required = True
                    }
                , Components.Form.submitButton
                    { disabled = isButtonDisabled
                    , text = "Update Email"
                    , style = Components.Form.Primary isButtonDisabled
                    , class = ""
                    }
                ]
        }


viewWrapper : { title : String, body : Html Msg } -> Html Msg
viewWrapper { title, body } =
    H.div [ A.class "space-y-6" ]
        [ H.div []
            [ H.h2 [ A.class "text-lg font-semibold text-gray-900 mb-4" ] [ H.text title ]
            , body
            ]
        ]