diff options
author | Vincent Ambo <tazjin@gmail.com> | 2017-12-20T19·03+0100 |
---|---|---|
committer | Vincent Ambo <tazjin@gmail.com> | 2017-12-20T19·15+0100 |
commit | 304f3ae3f15f3c72b01d1069b4c665ae690e3ce5 (patch) | |
tree | a889983875f20dea6afa1ded0b717e635759f32a /frontend/Main.elm | |
parent | 6cd75ac184ecdcdaba09f684534ce722002e8819 (diff) |
feat(elm): Implement task completion handling
Adds a clickable area to the cards that will inform the backend of a task being completed. This of course still looks completely terrible because I don't really know how frontend works.
Diffstat (limited to 'frontend/Main.elm')
-rw-r--r-- | frontend/Main.elm | 50 |
1 files changed, 39 insertions, 11 deletions
diff --git a/frontend/Main.elm b/frontend/Main.elm index 3527540d9e9f..905dc2256320 100644 --- a/frontend/Main.elm +++ b/frontend/Main.elm @@ -14,6 +14,7 @@ import Material.Color as Color import Material.Grid exposing (grid, cell, size, Device(..)) import Material.Layout as Layout import Material.Scheme as Scheme +import Material.Options as Options -- API interface to Gemma @@ -55,6 +56,20 @@ loadTasks = Http.send NewTasks request +completeTask : Task -> Cmd Msg +completeTask task = + let + request = + Http.getString + (String.concat + [ "http://localhost:4242/complete?task=" + , task.name + ] + ) + in + Http.send (\_ -> LoadTasks) request + + -- Elm architecture implementation @@ -64,6 +79,7 @@ type Msg | LoadTasks | NewTasks (Result Http.Error (List Task)) | Mdl (Material.Msg Msg) + | Complete Task type alias Model = @@ -79,6 +95,9 @@ update msg model = LoadTasks -> ( model, loadTasks ) + Complete task -> + ( model, completeTask task ) + NewTasks (Ok tasks) -> ( { model | tasks = tasks, error = Nothing }, Cmd.none ) @@ -107,15 +126,30 @@ taskColor task = Color.Yellow +within task = + String.concat + [ "This task should be completed within " + , toString task.remaining + , " days." + ] + + renderTask : Task -> Html Msg renderTask task = Card.view [ Color.background (Color.color (taskColor task) Color.S800) ] - [ Card.title [] [ Card.head [ white ] [ text task.name ] ] ] - - - --- div [] [ span [] [ ] ] + [ Card.title [] [ Card.head [ white ] [ text task.name ] ] + , Card.text [ white ] + [ text (Maybe.withDefault "" task.description) + , text (within task) + ] + , Card.actions + [ Card.border + , white + , Options.onClick (Complete task) + ] + [ text "Done!" ] + ] gemmaView : Model -> Html Msg @@ -131,12 +165,6 @@ view model = gemmaView model |> Scheme.top - --- div [ style [ ( "padding", "2rem" ) ] ] --- --- |> Scheme.top - - main : Program Never Model Msg main = let |