mirror of
https://github.com/dillonkearns/elm-pages-v3-beta.git
synced 2024-12-26 05:13:24 +03:00
Clear todo input field after entering item.
This commit is contained in:
parent
1e5c4666ee
commit
bf21755847
@ -44,6 +44,7 @@ type alias Model =
|
|||||||
|
|
||||||
type Msg
|
type Msg
|
||||||
= NoOp
|
= NoOp
|
||||||
|
| NewItemCreated
|
||||||
|
|
||||||
|
|
||||||
type alias RouteParams =
|
type alias RouteParams =
|
||||||
@ -63,6 +64,15 @@ route =
|
|||||||
, subscriptions = subscriptions
|
, subscriptions = subscriptions
|
||||||
, init = init
|
, init = init
|
||||||
}
|
}
|
||||||
|
|> RouteBuilder.withOnAction
|
||||||
|
(\a ->
|
||||||
|
case a of
|
||||||
|
Deleted ->
|
||||||
|
NoOp
|
||||||
|
|
||||||
|
Created ->
|
||||||
|
NewItemCreated
|
||||||
|
)
|
||||||
|
|
||||||
|
|
||||||
init :
|
init :
|
||||||
@ -86,6 +96,12 @@ update pageUrl sharedModel static msg model =
|
|||||||
NoOp ->
|
NoOp ->
|
||||||
( model, Effect.none )
|
( model, Effect.none )
|
||||||
|
|
||||||
|
NewItemCreated ->
|
||||||
|
( model
|
||||||
|
, Effect.SetField
|
||||||
|
{ formId = "test2", name = "description", value = "" }
|
||||||
|
)
|
||||||
|
|
||||||
|
|
||||||
subscriptions : Maybe PageUrl -> RouteParams -> Path -> Shared.Model -> Model -> Sub Msg
|
subscriptions : Maybe PageUrl -> RouteParams -> Path -> Shared.Model -> Model -> Sub Msg
|
||||||
subscriptions maybePageUrl routeParams path sharedModel model =
|
subscriptions maybePageUrl routeParams path sharedModel model =
|
||||||
@ -97,8 +113,9 @@ type alias Data =
|
|||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
type alias ActionData =
|
type ActionData
|
||||||
{}
|
= Deleted
|
||||||
|
| Created
|
||||||
|
|
||||||
|
|
||||||
type alias Todo =
|
type alias Todo =
|
||||||
@ -167,18 +184,15 @@ action _ =
|
|||||||
Ok (Delete { id }) ->
|
Ok (Delete { id }) ->
|
||||||
Request.Fauna.mutationDataSource "" (deleteTodo id)
|
Request.Fauna.mutationDataSource "" (deleteTodo id)
|
||||||
|> DataSource.map
|
|> DataSource.map
|
||||||
(\_ -> Route.redirectTo Route.Todos)
|
(\_ -> Response.render Deleted)
|
||||||
|
|
||||||
Ok (Create { description }) ->
|
Ok (Create { description }) ->
|
||||||
Request.Fauna.mutationDataSource "" (createTodo description)
|
Request.Fauna.mutationDataSource "" (createTodo description)
|
||||||
|> DataSource.map
|
|> DataSource.map
|
||||||
(\_ ->
|
(\_ -> Response.render Created)
|
||||||
--Route.redirectTo Route.Todos
|
|
||||||
Response.render {}
|
|
||||||
)
|
|
||||||
|
|
||||||
Err error ->
|
Err error ->
|
||||||
{} |> Response.render |> DataSource.succeed
|
Deleted |> Response.render |> DataSource.succeed
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
||||||
@ -225,7 +239,7 @@ createForm =
|
|||||||
]
|
]
|
||||||
}
|
}
|
||||||
)
|
)
|
||||||
|> Form.field "q" (Field.text |> Field.required "Required")
|
|> Form.field "description" (Field.text |> Field.required "Required")
|
||||||
|
|
||||||
|
|
||||||
descriptionFieldView :
|
descriptionFieldView :
|
||||||
|
Loading…
Reference in New Issue
Block a user