blob: 68bca987153f6fddd5506e0f2a9e84e82d5c883e (
plain)
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
|
module Struct.Event exposing (Type(..), attempted)
-- Elm -------------------------------------------------------------------------
import Http
-- Main Menu -------------------------------------------------------------------
import Struct.Error
import Struct.ServerReply
--------------------------------------------------------------------------------
-- TYPES -----------------------------------------------------------------------
--------------------------------------------------------------------------------
type Type =
None
| Failed Struct.Error.Type
| SetUsername String
| SetID String
| SetURLPrefix String
| SetFrequency Int
| ServerReplied (Result Http.Error (List Struct.ServerReply.Type))
attempted : (Result.Result err val) -> Type
attempted act =
case act of
(Result.Ok _) -> None
(Result.Err msg) ->
(Failed (Struct.Error.new Struct.Error.Failure (toString msg)))
|