-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Avoid name clashes when Main module is used as a test dependency. (#17)
- Loading branch information
Showing
7 changed files
with
139 additions
and
15 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,86 @@ | ||
module Main exposing (main, init, someFunctionAlwaysReturning5) | ||
|
||
import Browser | ||
import Html exposing (Html, text, pre) | ||
import Http | ||
|
||
-- MAIN | ||
|
||
|
||
main = | ||
Browser.element | ||
{ init = init | ||
, update = update | ||
, subscriptions = subscriptions | ||
, view = view | ||
} | ||
|
||
|
||
|
||
-- MODEL | ||
|
||
|
||
type Model | ||
= Failure | ||
| Loading | ||
| Success String | ||
|
||
|
||
init : () -> (Model, Cmd Msg) | ||
init _ = | ||
( Loading | ||
, Http.get | ||
{ url = "https://elm-lang.org/assets/public-opinion.txt" | ||
, expect = Http.expectString GotText | ||
} | ||
) | ||
|
||
|
||
|
||
-- UPDATE | ||
|
||
|
||
type Msg | ||
= GotText (Result Http.Error String) | ||
|
||
|
||
update : Msg -> Model -> (Model, Cmd Msg) | ||
update msg model = | ||
case msg of | ||
GotText result -> | ||
case result of | ||
Ok fullText -> | ||
(Success fullText, Cmd.none) | ||
|
||
Err _ -> | ||
(Failure, Cmd.none) | ||
|
||
|
||
|
||
-- SUBSCRIPTIONS | ||
|
||
|
||
subscriptions : Model -> Sub Msg | ||
subscriptions model = | ||
Sub.none | ||
|
||
|
||
|
||
-- VIEW | ||
|
||
|
||
view : Model -> Html Msg | ||
view model = | ||
case model of | ||
Failure -> | ||
text "I was unable to load your book." | ||
|
||
Loading -> | ||
text "Loading..." | ||
|
||
Success fullText -> | ||
pre [] [ text fullText ] | ||
|
||
|
||
|
||
someFunctionAlwaysReturning5 = 5 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters