Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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

Awesome Lists containing this project

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 = ""
)
```