Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/nteetor/eventure
Describe and handle events
https://github.com/nteetor/eventure
Last synced: about 1 month ago
JSON representation
Describe and handle events
- Host: GitHub
- URL: https://github.com/nteetor/eventure
- Owner: nteetor
- License: gpl-3.0
- Created: 2020-01-13T04:45:50.000Z (almost 5 years ago)
- Default Branch: main
- Last Pushed: 2024-10-27T07:00:11.000Z (about 2 months ago)
- Last Synced: 2024-10-27T08:16:11.468Z (about 2 months ago)
- Language: R
- Size: 24.4 KB
- Stars: 3
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
- jimsghstars - nteetor/eventure - Describe and handle events (R)
README
# eventure
A dsl for describing and handling events.
## Desired usage
```R
buttonInput(
id = "open",
label = "Open",
on(click) %>%
target(
open = "pane_1"
) %>%
dispatch(
pane_1 = show()
)
)
``````R
input_button(
id = "open_pane",
label = "Open",
.event %>%
target(
open_pane = pane_1
) %>%
dispatch(
pane_1 = show()
),
.click %>%
target(
open_pane = pane_1
)
)
``````R
input_button_group(
id = ""
)
```