-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathREADME.Rmd
72 lines (51 loc) · 1.86 KB
/
README.Rmd
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
---
output: github_document
---
<!-- README.md is generated from README.Rmd. Please edit that file -->
```{r, include = FALSE}
knitr::opts_chunk$set(
collapse = TRUE,
comment = "#>",
fig.path = "man/figures/README-",
out.width = "100%"
)
```
# blockr.ui
<!-- badges: start -->
[](https://lifecycle.r-lib.org/articles/stages.html#experimental)
[](https://github.com/cynkra/blockr.ui/actions/workflows/ci.yml)
[](https://CRAN.R-project.org/package=blockr.ui)
[](https://app.codecov.io/gh/cynkra/blockr.ui)
<!-- badges: end -->
The goal of blockr.ui is to provide an alternative user interface for `{blockr.core}`.
## Installation
You can install the development version of blockr.ui from [GitHub](https://github.com/) with:
``` r
# install.packages("devtools")
devtools::install_github("cynkra/blockr.ui")
```
## Example
To run the demo app:
```{r, eval=FALSE, echo = TRUE}
library(blockr.ui)
library(blockr.dplyr)
library(blockr.sdtm)
library(blockr.io)
run_demo_app()
```
### Create a new block

### Block properties

### Append block and invalid state

### Join independant data

### Rearrange output on a grid

## Development
JS code is managed by `esbuild` [`{charpente}`](https://github.com/RinteRface/charpente?tab=readme-ov-file#using-esbuild-and-mocha). To create a new JS file do and compile the entire project:
```r
charpente::create_js("file-name")
charpente::build_js()
```