-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathTest.elm
235 lines (156 loc) · 3.89 KB
/
Test.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
module Main exposing (..)
import Html exposing (..)
import Html.Attributes exposing (..)
import Html exposing (..)
import Keyboard
import String
import List
import Char
-- This file is built on top of https://github.com/chrisbuttery/elm-calculator
-- Events
-- Helpers
classNames : List String -> Attribute Msg
classNames strings =
classList (List.map (\str -> ( str, True )) strings)
parseFloat : String -> Float
parseFloat string =
case String.toFloat string of
Ok value ->
value
Err error ->
0
-- Model
type InputModes
= White
| Orange
| Blue
type alias Model =
{ inputMode : InputModes
, keyCode : Keyboard.KeyCode
}
initialModel : Model
initialModel =
{ inputMode = White
, keyCode = 0
}
-- Operations
sum : Float -> Float -> Float
sum x y =
x + y
multiply : Float -> Float -> Float
multiply x y =
x * y
division : Float -> Float -> Float
division x y =
x / y
subtraction : Float -> Float -> Float
subtraction x y =
x - y
-- Action
type
Msg
-- Cal_C_Keys Blue Orange
-------------------------------- First Row of Keys
= N_Key
| Times_12_Key
| AMORT_Key
| I_Key
| DIVIDE_BY_12_Key
| INT_Key
| KeyMsg Keyboard.KeyCode
-- for any key not on the calc
-- Update
update : Msg -> Model -> ( Model, Cmd Msg )
update msg model =
case msg of
KeyMsg code ->
( { model | keyCode = code }, Cmd.none )
-------------------------------- First Row of Keys
N_Key ->
( model, Cmd.none )
Times_12_Key ->
( model, Cmd.none )
AMORT_Key ->
( model, Cmd.none )
I_Key ->
( model, Cmd.none )
DIVIDE_BY_12_Key ->
( model, Cmd.none )
INT_Key ->
( model, Cmd.none )
_ ->
( model, Cmd.none )
-- SUBSCRIPTIONS
keyCodeToMsg : InputModes -> Keyboard.KeyCode -> Msg
keyCodeToMsg inputMode code =
case code of
-------------------------------- First Row of Keys
78 ->
case inputMode of
White ->
N_Key
-- "N"
Blue ->
Times_12_Key
Orange ->
AMORT_Key
110 ->
case inputMode of
White ->
N_Key
-- "N"
Blue ->
Times_12_Key
Orange ->
AMORT_Key
73 ->
case inputMode of
White ->
I_Key
-- "I"
Blue ->
DIVIDE_BY_12_Key
Orange ->
INT_Key
105 ->
case inputMode of
White ->
I_Key
-- "i"
Blue ->
DIVIDE_BY_12_Key
Orange ->
INT_Key
------------------------------
_ ->
KeyMsg code
-- for any key not on the calc
subscriptions : Model -> Sub Msg
subscriptions model =
Keyboard.presses (\code -> (keyCodeToMsg model.inputMode code))
-- View
view : Model -> Html Msg
view model =
div
[ classNames [ "calculator" ]
]
[ div [ classNames [ "model" ] ] [ text (toString model) ]
, div
[]
[ text (String.fromChar (Char.fromCode model.keyCode))
]
]
-- Main
init : Maybe Model -> ( Model, Cmd Msg )
init savedModel =
( Maybe.withDefault initialModel savedModel, Cmd.none )
main : Program (Maybe Model) Model Msg
main =
Html.programWithFlags
{ init = init
, view = view
, update = update
, subscriptions =
subscriptions
-- \_ -> Sub.none
}