Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/globalwebindex/cmd-extra
Extra functions for working with Cmds
https://github.com/globalwebindex/cmd-extra
elm elm-architecture
Last synced: 30 days ago
JSON representation
Extra functions for working with Cmds
- Host: GitHub
- URL: https://github.com/globalwebindex/cmd-extra
- Owner: GlobalWebIndex
- License: bsd-3-clause
- Created: 2017-04-10T16:59:13.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2023-07-12T02:40:16.000Z (over 1 year ago)
- Last Synced: 2024-04-14T11:54:15.004Z (8 months ago)
- Topics: elm, elm-architecture
- Language: Elm
- Homepage: https://package.elm-lang.org/packages/GlobalWebIndex/cmd-extra/latest/
- Size: 120 KB
- Stars: 6
- Watchers: 35
- Forks: 2
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
- Codeowners: CODEOWNERS
Awesome Lists containing this project
README
# Cmd.Extra
Experimental package with helpful functions for working with Cmd.
This package can help you with construction of `Cmd msg` and composition of pair `(model, Cmd msg)` that can be used to streamline your flow of actions in `update`.
```elm
type Msg
= NoOp
| Disarm
| Fire
| FireRocketsupdate : Msg -> Model -> ( Model, Cmd Msg )
update msg model =
case msg of
DoNothing ->
Cmd.Extra.pure model
-- equivalent of (model, Cmd.none)Disarm ->
Cmd.Extra.withTrigger NoOp model
-- equivalent of (model, Cmd.Extra.perform NoOp)Fire ->
( model, Cmd.Extra.perform FireRockets )FireRockets ->
Rockets.Nukes.fire```
Feedback and contributions are very welcome.
## License
BSD 3-Clause License