-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathMain.gren
More file actions
80 lines (48 loc) · 1.06 KB
/
Main.gren
File metadata and controls
80 lines (48 loc) · 1.06 KB
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
module Main exposing (main)
import Browser
import File exposing (File)
import Html exposing (..)
import Html.Attributes exposing (..)
import Html.Events exposing (..)
import Json.Decode as D
-- MAIN
main =
Browser.element
{ init = init
, view = view
, update = update
, subscriptions = subscriptions
}
-- MODEL
type alias Model = Array File
init : {} -> { model : Model, command : Cmd Msg }
init _ =
{ model = [], command = Cmd.none }
-- UPDATE
type Msg
= GotFiles (Array File)
update msg model =
when msg is
GotFiles files ->
{ model = files, command = Cmd.none }
-- SUBSCRIPTIONS
subscriptions : Model -> Sub Msg
subscriptions model =
Sub.none
-- VIEW
view : Model -> Html Msg
view model =
div []
[ input
[ type_ "file"
, multiple True
, on "change" (D.map GotFiles filesDecoder)
]
[]
, div
[ id "file-view" ]
[ text (Debug.toString model) ]
]
filesDecoder : D.Decoder (Array File)
filesDecoder =
D.at ["target","files"] (D.array File.decoder)