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
|
module View.PlayerInput exposing (get_html)
-- Elm -------------------------------------------------------------------------
import List
import Html
import Html.Attributes
import Html.Events
-- Local Module ----------------------------------------------------------------
import Struct.Event
import Struct.Model
import Struct.UI
--------------------------------------------------------------------------------
-- TYPES -----------------------------------------------------------------------
--------------------------------------------------------------------------------
--------------------------------------------------------------------------------
-- LOCAL -----------------------------------------------------------------------
--------------------------------------------------------------------------------
get_choice_html : (
(Int, (Html.Html Struct.Event.Type)) ->
(Html.Html Struct.Event.Type)
)
get_choice_html data =
let (ix, html) = data in
(Html.div
[
(Html.Attributes.class "tonkadur-choice"),
(Html.Events.onClick (Struct.Event.ChoiceSelected ix))
]
[html]
)
--------------------------------------------------------------------------------
-- EXPORTED --------------------------------------------------------------------
--------------------------------------------------------------------------------
get_html : Struct.Model.Type -> (Html.Html Struct.Event.Type)
get_html model =
if (List.isEmpty model.ui.displayed_choices)
then
case model.ui.input of
Struct.UI.NoInput -> (Html.div [] [])
Struct.UI.FloatInput ->
(Html.div
[
(Html.Attributes.class "tonkadur-input")
]
[
(Html.div
[
(Html.Attributes.class "tonkadur-input-instruction")
]
[
(Html.text
(
"A number between "
++ (String.fromFloat model.ui.min_float)
++ " and "
++ (String.fromFloat model.ui.max_float)
++ " is expected:"
)
)
]
),
(Html.input
[
(Html.Attributes.class "tonkadur-input-field"),
(Html.Attributes.min
(String.fromFloat model.ui.min_float)
),
(Html.Attributes.max
(String.fromFloat model.ui.max_float)
)
]
[
]
)
]
)
Struct.UI.IntegerInput ->
(Html.div
[
(Html.Attributes.class "tonkadur-input")
]
[
(Html.div
[
(Html.Attributes.class "tonkadur-input-instruction")
]
[
(Html.text
(
"A number between "
++ (String.fromInt model.ui.min)
++ " and "
++ (String.fromInt model.ui.max)
++ " is expected:"
)
)
]
),
(Html.input
[
(Html.Attributes.class "tonkadur-input-field"),
(Html.Attributes.min (String.fromInt model.ui.min)),
(Html.Attributes.max (String.fromInt model.ui.max))
]
[
]
)
]
)
Struct.UI.StringInput ->
(Html.div
[
(Html.Attributes.class "tonkadur-input")
]
[
(Html.div
[
(Html.Attributes.class "tonkadur-input-instruction")
]
[
(Html.text
(
"A string of size between "
++ (String.fromInt model.ui.min)
++ " and "
++ (String.fromInt model.ui.max)
++ " characters is expected:"
)
)
]
),
(Html.input
[
(Html.Attributes.class "tonkadur-input-field"),
(Html.Attributes.minlength model.ui.min),
(Html.Attributes.maxlength model.ui.max)
]
[
]
)
]
)
Struct.UI.CommandInput ->
(Html.div
[
(Html.Attributes.class "tonkadur-input")
]
[
(Html.div
[
(Html.Attributes.class "tonkadur-input-instruction")
]
[
(Html.text
(
"A space-separated list of strings (total size "
++ " between "
++ (String.fromInt model.ui.min)
++ " and "
++ (String.fromInt model.ui.max)
++ " characters) is expected:"
)
)
]
),
(Html.input
[
(Html.Attributes.class "tonkadur-input-field"),
(Html.Attributes.minlength model.ui.min),
(Html.Attributes.maxlength model.ui.max)
]
[
]
)
]
)
else
(Html.div
[
(Html.Attributes.class "tonkadur-choice-list")
]
(List.map (get_choice_html) model.ui.displayed_choices)
)
|