-
Notifications
You must be signed in to change notification settings - Fork 7
/
Main.gren
95 lines (71 loc) · 1.82 KB
/
Main.gren
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
module Main exposing (main)
import Browser
import Html exposing (Html)
import Html.Attributes as Attribute
import Html.Events as Event
main =
Browser.sandbox
{ init = init
, update = update
, view = view
}
--- MODEL
type alias Model =
{ celsius : String
, fahrenheit : String
}
init : Model
init =
{ celsius = ""
, fahrenheit = ""
}
--- UPDATE
type Msg
= SetCelsius String
| SetFahrenheit String
update : Msg -> Model -> Model
update msg model =
when msg is
SetCelsius value ->
{ celsius = value
, fahrenheit =
value
|> String.toFloat
|> Maybe.map celsiusToFahrenheit
|> Maybe.map String.fromFloat
|> Maybe.withDefault model.fahrenheit
}
SetFahrenheit value ->
{ fahrenheit = value
, celsius =
value
|> String.toFloat
|> Maybe.map fahrenheitToCelsius
|> Maybe.map String.fromFloat
|> Maybe.withDefault model.celsius
}
celsiusToFahrenheit : Float -> Float
celsiusToFahrenheit c =
c * (9.0/5.0) + 32.0
fahrenheitToCelsius : Float -> Float
fahrenheitToCelsius f =
(f - 32) * (5.0/9.0)
--- VIEW
view : Model -> Html Msg
view model =
Html.div []
[ Html.input
[ Attribute.id "celsius"
, Event.onInput SetCelsius
, Attribute.value model.celsius
]
[]
, Html.text "Celsius"
, Html.input
[ Attribute.id "fahrenheit"
, Event.onInput SetFahrenheit
, Attribute.value model.fahrenheit
]
[]
, Html.text "Fahrenheit"
]