-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMain.elm
497 lines (418 loc) · 13.4 KB
/
Main.elm
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
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
import Html exposing (..)
import Html.Attributes exposing (..)
import Html.Events exposing (on, onClick, onDoubleClick, onFocus, onBlur, onWithOptions, targetValue)
import Signal exposing (Address)
import Char exposing (isDigit)
import String
import Json.Decode as JSON exposing ((:=))
import Http
import Task exposing (Task, andThen, onError)
type alias Model =
{ creditCard: CreditCard
}
type alias CreditCard =
{ number: String
, holder: String
, expiration: String
, ccv: String
}
initialModel : Model
initialModel =
{ creditCard = CreditCard "" "" "" ""
}
type alias ViewState =
{ activeView: ActiveView
, cardNumber0: String
, cardNumber1: String
, cardNumber2: String
, cardNumber3: String
, cardHolderName: String
, cardExpirationMonth: String
, cardExpirationYear: String
, cardCCV: String
, cardCCVfocused: Bool
, submitting: Bool
, debug: Bool
}
initialViewState : ViewState
initialViewState =
{ activeView = CreditCardForm
, cardNumber0 = ""
, cardNumber1 = ""
, cardNumber2 = ""
, cardNumber3 = ""
, cardHolderName = ""
, cardExpirationMonth = ""
, cardExpirationYear = ""
, cardCCV = ""
, cardCCVfocused = False
, submitting = False
, debug = False
}
type ActiveView = CreditCardForm | Success | Fail Http.Error
model : Signal Model
model =
Signal.foldp update initialModel inputs
viewState : Signal ViewState
viewState =
Signal.foldp render initialViewState events.signal
actions : Signal.Mailbox Action
actions =
Signal.mailbox NoOp
events : Signal.Mailbox Event
events =
Signal.mailbox Never
inputs : Signal Action
inputs =
actions.signal
main : Signal Html
main =
Signal.map2 view viewState model
-- VIEWS
view : ViewState -> Model -> Html
view state model =
div []
[ (activeView state.activeView) state model
, debugView state model
]
debugView : ViewState -> Model -> Html
debugView state model =
div [ class ("debug" ++ if state.debug then " active" else "")
, onDoubleClick events.address ToggleDebug
]
[ "state: " ++ (toString state) |> text
, br [] []
, "model: " ++ (toString model) |> text
]
activeView : ActiveView -> (ViewState -> Model -> Html)
activeView view =
case view of
CreditCardForm -> creditCardForm
Success -> successView
Fail error -> failView error
creditCardForm : ViewState -> Model -> Html
creditCardForm state model =
div [ class "checkout" ]
[ div [ class ("credit-card-box" ++ if state.cardCCVfocused then " hover" else "") ]
[ div [ class "flip" ]
[ div [ class "front" ]
[ div [ class "chip" ]
[]
, div [ class "logo" ]
[ img [ alt "", src "http://cdn.flaticon.com/svg/39/39134.svg" ]
[]
]
, div [ class "number" ]
[ text (cardNumber state) ]
, div [ class "card-holder" ]
[ label []
[ text "Card holder" ]
, div []
[ text state.cardHolderName ]
]
, div [ class "card-expiration-date" ]
[ label []
[ text "Expires" ]
, div []
[ text (cardExpirationDate state) ]
]
]
, div [ class "back" ]
[ div [ class "strip" ]
[]
, div [ class "logo" ]
[ img [ alt "", src "http://cdn.flaticon.com/svg/39/39134.svg" ]
[]
]
, div [ class "ccv" ]
[ label []
[ text "CCV" ]
, div []
[ text state.cardCCV ]
]
]
]
]
, Html.form [ class "form"
, onWithOptions
"submit"
{ preventDefault = True, stopPropagation = False }
(JSON.succeed Nothing)
(\_ -> Signal.message tasksMailbox.address (submit state))
]
[ fieldset [ class "card-number-inputs"
, disabled state.submitting
]
[ label [ for "card-number" ]
[ text "Card Number" ]
, input [ class "input-card-number"
, id "card-number0"
, required True
, pattern "\\d{4}"
, maxlength 4
, type' "text"
, on "input" targetValue (\digit -> Signal.message events.address (DigitEntry0 (String.filter isDigit digit)))
, value state.cardNumber0
]
[]
, input [ class "input-card-number"
, id "card-number1"
, required True
, pattern "\\d{4}"
, maxlength 4
, type' "text"
, on "input" targetValue (\digit -> Signal.message events.address (DigitEntry1 (String.filter isDigit digit)))
, attribute "data-autofocus" <| toString <| String.length state.cardNumber0 > 3
, value state.cardNumber1
]
[]
, input [ class "input-card-number"
, id "card-number2"
, required True
, pattern "\\d{4}"
, maxlength 4
, type' "text"
, on "input" targetValue (\digit -> Signal.message events.address (DigitEntry2 (String.filter isDigit digit)))
, attribute "data-autofocus" <| toString <| String.length state.cardNumber1 > 3
, value state.cardNumber2
]
[]
, input [ class "input-card-number"
, id "card-number3"
, required True
, pattern "\\d{4}"
, maxlength 4
, type' "text"
, on "input" targetValue (\digit -> Signal.message events.address (DigitEntry3 (String.filter isDigit digit)))
, attribute "data-autofocus" <| toString <| String.length state.cardNumber2 > 3
, value state.cardNumber3
]
[]
]
, fieldset [ disabled state.submitting ]
[ label [ for "card-holder" ]
[ text "Card holder" ]
, input [ id "card-holder"
, required True
, pattern "\\D+"
, maxlength 50
, type' "text"
, on "input" targetValue (\entry -> Signal.message events.address (HolderEntry entry))
, value state.cardHolderName
]
[]
]
, fieldset [ class "fieldset-expiration"
, disabled state.submitting
]
[ label [ for "card-expiration-month" ]
[ text "Expiration date" ]
, div [ class "select" ]
[ select [ id "card-expiration-month"
, required True
, on "input" targetValue (\month -> Signal.message events.address (ExpirationMonthChange month))
, value state.cardExpirationMonth
]
([ option [] [] ] ++ (opts ["Jan", "Feb", "Mar", "Apr", "May", "Jun", "Jul", "Aug", "Sep", "Oct", "Nov", "Dec"] state.cardExpirationMonth))
]
, div [ class "select" ]
[ select [ id "card-expiration-year"
, required True
, on "input" targetValue (\year -> Signal.message events.address (ExpirationYearChange year))
, value state.cardExpirationYear
]
([ option [] [] ] ++ (opts (List.map ((++) "20") ["16", "17", "18", "19", "20", "21", "22", "23", "24", "25"]) state.cardExpirationYear))
]
]
, fieldset [ class "fieldset-ccv"
, disabled state.submitting
]
[ label [ for "card-ccv" ]
[ text "CCV" ]
, input [ id "card-ccv"
, required True
, maxlength 3
, type' "text"
, on "input" targetValue (\entry -> Signal.message events.address (CCVEntry (String.filter isDigit entry)))
, onFocus events.address ToggleCCVFocus
, onBlur events.address ToggleCCVFocus
, value state.cardCCV
]
[]
]
, button [ class "btn"
, disabled state.submitting
]
[ if state.submitting then i [ class "fa fa-cog fa-spin" ] [] else text ""
, text "Submit"
]
]
]
opts : List String -> String -> List Html
opts values currentValue =
List.map (opt currentValue) values
opt : String -> String -> Html
opt currentValue expectedValue =
option [ selected (currentValue == expectedValue) ] [ text expectedValue ]
successView : ViewState -> Model -> Html
successView state model =
div [ class "checkout modalbox success center animate" ]
[ div [ class "icon" ]
[ i [ class "fa fa-check" ]
[]
]
, h1 []
[ text "Success!" ]
, p []
[ text "We've sent a confirmation to your e-mail." ]
, h2 []
[ text "Payment details" ]
, dl []
[ dt []
[ text "Card number" ]
, dd []
[ text model.creditCard.number ]
, dt []
[ text "Card holder" ]
, dd []
[ text model.creditCard.holder ]
]
]
failView : Http.Error -> ViewState -> Model -> Html
failView error state model =
div [ class "checkout modalbox error center animate" ]
[ div [ class "icon" ]
[ i [ class "fa fa-times" ]
[]
]
, h1 []
[ text "Oh no!" ]
, p []
[ text "Something went wrong, please try again." ]
, button [ class "redo btn"
, type' "button"
, onClick events.address (ChangeView CreditCardForm)
] [ text "Go back" ]
, span [ class "change" ]
[ text <| "Error type: " ++ (toString error) ]
]
cardNumber : ViewState -> String
cardNumber state =
state.cardNumber0 ++ " " ++
state.cardNumber1 ++ " " ++
state.cardNumber2 ++ " " ++
state.cardNumber3
cardExpirationMonth : ViewState -> String
cardExpirationMonth state =
case state.cardExpirationMonth of
"Jan" -> "01"
"Feb" -> "02"
"Mar" -> "03"
"Apr" -> "04"
"May" -> "05"
"Jun" -> "06"
"Jul" -> "07"
"Aug" -> "08"
"Sep" -> "09"
"Oct" -> "10"
"Nov" -> "11"
"Dec" -> "12"
_ -> ""
cardExpirationYear : ViewState -> String
cardExpirationYear state =
String.right 2 state.cardExpirationYear
cardExpirationDate : ViewState -> String
cardExpirationDate state =
(cardExpirationMonth state) ++ "/" ++ (cardExpirationYear state)
type Action
= NoOp
| CardSubmitted CreditCard
update : Action -> Model -> Model
update action model =
case action of
NoOp -> model
CardSubmitted newCard -> { model | creditCard = newCard }
type Event
= Never
| DigitEntry0 String
| DigitEntry1 String
| DigitEntry2 String
| DigitEntry3 String
| HolderEntry String
| ExpirationMonthChange String
| ExpirationYearChange String
| CCVEntry String
| ToggleCCVFocus
| ToggleSubmit
| ToggleDebug
| ChangeView ActiveView
render : Event -> ViewState -> ViewState
render event state =
case event of
Never -> state
DigitEntry0 newDigit -> { state | cardNumber0 = newDigit }
DigitEntry1 newDigit -> { state | cardNumber1 = newDigit }
DigitEntry2 newDigit -> { state | cardNumber2 = newDigit }
DigitEntry3 newDigit -> { state | cardNumber3 = newDigit }
HolderEntry newEntry -> { state | cardHolderName = newEntry }
ExpirationMonthChange newMonth -> { state | cardExpirationMonth = newMonth }
ExpirationYearChange newYear -> { state | cardExpirationYear = newYear }
CCVEntry newEntry -> { state | cardCCV = newEntry }
ToggleCCVFocus -> { state | cardCCVfocused = not state.cardCCVfocused }
ToggleSubmit -> { state | submitting = not state.submitting }
ToggleDebug -> { state | debug = not state.debug }
ChangeView newView -> { state | activeView = newView }
type alias Payload = { card: CreditCard }
postForm : ViewState -> Task Http.Error Payload
postForm state =
let
creditCard = CreditCard
(cardNumber state)
state.cardHolderName
(cardExpirationDate state)
state.cardCCV
url = "https://elm.herokuapp.com/api"
body =
Http.multipart
[ Http.stringData "card[number]" creditCard.number
, Http.stringData "card[holder]" creditCard.holder
, Http.stringData "card[expiration]" creditCard.expiration
, Http.stringData "card[ccv]" creditCard.ccv
]
in
Http.post responseDecoder url body
responseDecoder : JSON.Decoder Payload
responseDecoder =
JSON.object1 Payload
("card" := creditCardDecoder)
creditCardDecoder : JSON.Decoder CreditCard
creditCardDecoder =
JSON.object4 CreditCard
("number" := JSON.string)
("holder" := JSON.string)
("expiration" := JSON.string)
("ccv" := JSON.string)
submit : ViewState -> Task x ()
submit state =
toggleSubmit
`andThen` (\_ -> postForm state)
`andThen` (\{card} -> updateCardDetails card)
`andThen` (\_ -> changeViewTo Success)
`onError` (\err ->
changeViewTo (Fail err)
`andThen` (\_ -> toggleSubmit))
toggleSubmit : Task x ()
toggleSubmit =
Signal.send events.address ToggleSubmit
updateCardDetails : CreditCard -> Task x ()
updateCardDetails card =
Signal.send actions.address (CardSubmitted card)
changeViewTo : ActiveView -> Task x ()
changeViewTo newView =
Signal.send events.address (ChangeView newView)
tasksMailbox : Signal.Mailbox (Task x ())
tasksMailbox =
Signal.mailbox (Task.succeed ())
port tasks : Signal (Task x ())
port tasks =
tasksMailbox.signal