-
Notifications
You must be signed in to change notification settings - Fork 0
/
charpente.qmd
1056 lines (976 loc) · 27.9 KB
/
charpente.qmd
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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
# charpente {#sec-charpente}
```{r}
#| eval: true
#| echo: false
#| include: true
source("_common.R")
```
```{r}
#| label: co_box_dev
#| echo: false
#| results: asis
#| eval: true
co_box(
color = "r",
header = "Warning",
contents = "The contents for section are under development. Thank you for your patience."
)
```
```{r}
#| label: co_box_tldr
#| echo: false
#| results: asis
#| eval: true
co_box(
color = "b",
look = "default", hsize = "1.10", size = "1.05",
header = "TLDR   ![](images/charpente.png){width='10%'}",
fold = TRUE,
contents = "
<br>
"
)
```
## cap (a `charpente` app-package)
This chapter walks through building a version of the `sap` with the [`charpente`](https://rinterface.github.io/charpente/) framework. The resulting app-package (`cap`) is in the [`20_charpente`](https://github.com/mjfrigaard/sap/tree/20_charpente) branch.
```{r}
#| eval: false
#| code-fold: false
pak::pak("RinteRface/charpente")
library(charpente)
```
The version/description of `charpente` used in this Shiny app-package is:
```{r}
#| echo: false
pkg_info('charpente', TRUE)
```
`charpente` is also covered in chapter 21 of the [Outstanding User Interfaces with Shiny](https://unleash-shiny.rinterface.com/) book.[^ouiws-charpente]
[^ouiws-charpente]: [Automate new template creation with {charpente}](https://unleash-shiny.rinterface.com/workflow-charpente).
## Set up
Use `create_charpente_package()` to create the necessary package structure for your Shiny app-package:
```{r}
#| eval: false
#| code-fold: false
charpente::create_charpente_package(path = "path/to/cap")
```
`charpente` packages include various files and directories that serve specific purposes, particularly for managing JavaScript dependencies, CSS styles, and other related assets:
```{bash}
#| eval: false
#| code-fold: false
├── CODE_OF_CONDUCT.md
├── DESCRIPTION
├── LICENSE
├── LICENSE.md
├── NAMESPACE
├── NEWS.md
├── R/
│ └── cap-utils.R
├── README.md
├── cap.Rproj
├── cran-comments.md
├── inst/
│ └── cap-0.0.0.9000
├── node_modules/
├── package-lock.json
├── package.json
├── srcjs/
│ ├── main.js
│ └── test
├── styles/
│ └── main.scss
└── tests/
├── testthat
└── testthat.R
112 directories, 15 files
```
The new package has some files and folders we're not used to seeing in R packages--namely `package-lock.json`, `package.json`, `node_modules/`, `srcjs/`, and `styles/`.
- **`package-lock.json`**: `package-lock.json` is automatically generated for any operations where npm modifies either the `node_modules` tree or `package.json`. It describes the exact tree that was generated, so it is helpful for the consistent installation of dependencies.
<details closed>
<summary>show/hide esbuild entry in package-lock.json</summary>
```json
"node_modules/@esbuild/aix-ppc64": {
"version": "0.19.12",
"resolved": "https://registry.npmjs.org/@esbuild/aix-ppc64/-/aix-ppc64-0.19.12.tgz",
"integrity": "sha512-bmoCYyWdEL3wDQIVbcyzRyeKLgk2WtWLTWz1ZIAZF/EGbNOwSA6ew3PftJ1PqMiOOGu0OyFMzG53L0zqIpPeNA==",
"cpu": [
"ppc64"
],
"dev": true,
"license": "MIT",
"optional": true,
"os": [
"aix"
],
"engines": {
"node": ">=12"
}
},
```
</details>
- **`package.json`**: `package.json` holds various metadata relevant to *this* project. This file is used to give information to npm that allows it to identify the project as well as handle the project’s dependencies. It can also contain other metadata such as a project `description`, `version`, `license`, and configuration data.
<details>
<summary>show/hide package.json</summary>
```json
{
"name": "cap",
"version": "0.0.0",
"description": "",
"private": true,
"main": "'main.js'",
"directories": {
"man": "man"
},
"type": "module",
"scripts": {
"test": "mocha srcjs/test",
"build-dev": "node esbuild.dev.js",
"build-prod": "node esbuild.prod.js"
},
"keywords": [],
"author": "",
"license": "MIT + file LICENSE",
"devDependencies": {
"autoprefixer": "^10.4.19",
"esbuild": "^0.19.12",
"esbuild-sass-plugin": "^2.16.1",
"mocha": "^8.4.0",
"postcss": "^8.4.39"
}
}
```
</details>
- **`node_modules/`**: The `node_modules/` directory is where npm installs the project's dependencies. Any packages installed locally will be stored here, allowing the project to access the required modules.
Below is an example `node_modules` folder in a new `charpente` package:
```{bash}
#| eval: false
#| code-fold: true
#| code-summary: 'show/hide node_modules'
node_modules
├── @esbuild
│ └── darwin-x64
├── @ungap
│ └── promise-all-settled
├── ansi-colors
│ ├── LICENSE
│ ├── README.md
│ ├── index.js
│ ├── package.json
│ ├── symbols.js
│ └── types
├── ansi-regex
│ ├── index.js
│ ├── license
│ ├── package.json
│ └── readme.md
├── ansi-styles
│ ├── index.d.ts
│ ├── index.js
│ ├── license
│ ├── package.json
│ └── readme.md
├── anymatch
│ ├── LICENSE
│ ├── README.md
│ ├── index.d.ts
│ ├── index.js
│ └── package.json
├── argparse
│ ├── CHANGELOG.md
│ ├── LICENSE
│ ├── README.md
│ ├── argparse.js
│ ├── lib
│ └── package.json
├── autoprefixer
│ ├── LICENSE
│ ├── README.md
│ ├── bin
│ ├── data
│ ├── lib
│ └── package.json
├── balanced-match
│ ├── LICENSE.md
│ ├── README.md
│ ├── index.js
│ └── package.json
├── binary-extensions
│ ├── binary-extensions.json
│ ├── binary-extensions.json.d.ts
│ ├── index.d.ts
│ ├── index.js
│ ├── license
│ ├── package.json
│ └── readme.md
├── brace-expansion
│ ├── LICENSE
│ ├── README.md
│ ├── index.js
│ └── package.json
├── braces
│ ├── LICENSE
│ ├── README.md
│ ├── index.js
│ ├── lib
│ └── package.json
├── browser-stdout
│ ├── LICENSE
│ ├── README.md
│ ├── index.js
│ └── package.json
├── browserslist
│ ├── LICENSE
│ ├── README.md
│ ├── browser.js
│ ├── cli.js
│ ├── error.d.ts
│ ├── error.js
│ ├── index.d.ts
│ ├── index.js
│ ├── node.js
│ ├── package.json
│ └── parse.js
├── camelcase
│ ├── index.d.ts
│ ├── index.js
│ ├── license
│ ├── package.json
│ └── readme.md
├── caniuse-lite
│ ├── LICENSE
│ ├── README.md
│ ├── data
│ ├── dist
│ └── package.json
├── chalk
│ ├── index.d.ts
│ ├── license
│ ├── node_modules
│ ├── package.json
│ ├── readme.md
│ └── source
├── chokidar
│ ├── LICENSE
│ ├── README.md
│ ├── index.js
│ ├── lib
│ ├── package.json
│ └── types
├── cliui
│ ├── CHANGELOG.md
│ ├── LICENSE.txt
│ ├── README.md
│ ├── build
│ ├── index.mjs
│ ├── node_modules
│ └── package.json
├── color-convert
│ ├── CHANGELOG.md
│ ├── LICENSE
│ ├── README.md
│ ├── conversions.js
│ ├── index.js
│ ├── package.json
│ └── route.js
├── color-name
│ ├── LICENSE
│ ├── README.md
│ ├── index.js
│ └── package.json
├── concat-map
│ ├── LICENSE
│ ├── README.markdown
│ ├── example
│ ├── index.js
│ ├── package.json
│ └── test
├── debug
│ ├── LICENSE
│ ├── README.md
│ ├── node_modules
│ ├── package.json
│ └── src
├── decamelize
│ ├── index.d.ts
│ ├── index.js
│ ├── license
│ ├── package.json
│ └── readme.md
├── diff
│ ├── CONTRIBUTING.md
│ ├── LICENSE
│ ├── README.md
│ ├── dist
│ ├── lib
│ ├── package.json
│ ├── release-notes.md
│ └── runtime.js
├── electron-to-chromium
│ ├── LICENSE
│ ├── README.md
│ ├── chromium-versions.js
│ ├── chromium-versions.json
│ ├── full-chromium-versions.js
│ ├── full-chromium-versions.json
│ ├── full-versions.js
│ ├── full-versions.json
│ ├── index.js
│ ├── package.json
│ ├── versions.js
│ └── versions.json
├── emoji-regex
│ ├── LICENSE-MIT.txt
│ ├── README.md
│ ├── es2015
│ ├── index.d.ts
│ ├── index.js
│ ├── package.json
│ └── text.js
├── esbuild
│ ├── LICENSE.md
│ ├── README.md
│ ├── bin
│ ├── install.js
│ ├── lib
│ └── package.json
├── esbuild-sass-plugin
│ ├── LICENSE
│ ├── README.md
│ ├── lib
│ ├── package.json
│ └── src
├── escalade
│ ├── dist
│ ├── index.d.ts
│ ├── license
│ ├── package.json
│ ├── readme.md
│ └── sync
├── escape-string-regexp
│ ├── index.d.ts
│ ├── index.js
│ ├── license
│ ├── package.json
│ └── readme.md
├── fill-range
│ ├── LICENSE
│ ├── README.md
│ ├── index.js
│ └── package.json
├── find-up
│ ├── index.d.ts
│ ├── index.js
│ ├── license
│ ├── package.json
│ └── readme.md
├── flat
│ ├── LICENSE
│ ├── README.md
│ ├── cli.js
│ ├── index.js
│ ├── package.json
│ └── test
├── fraction.js
│ ├── LICENSE
│ ├── README.md
│ ├── bigfraction.js
│ ├── fraction.cjs
│ ├── fraction.d.ts
│ ├── fraction.js
│ ├── fraction.min.js
│ └── package.json
├── fs.realpath
│ ├── LICENSE
│ ├── README.md
│ ├── index.js
│ ├── old.js
│ └── package.json
├── fsevents
│ ├── LICENSE
│ ├── README.md
│ ├── fsevents.d.ts
│ ├── fsevents.js
│ ├── fsevents.node
│ └── package.json
├── function-bind
│ ├── CHANGELOG.md
│ ├── LICENSE
│ ├── README.md
│ ├── implementation.js
│ ├── index.js
│ ├── package.json
│ └── test
├── get-caller-file
│ ├── LICENSE.md
│ ├── README.md
│ ├── index.d.ts
│ ├── index.js
│ ├── index.js.map
│ └── package.json
├── glob
│ ├── LICENSE
│ ├── README.md
│ ├── changelog.md
│ ├── common.js
│ ├── glob.js
│ ├── package.json
│ └── sync.js
├── glob-parent
│ ├── CHANGELOG.md
│ ├── LICENSE
│ ├── README.md
│ ├── index.js
│ └── package.json
├── growl
│ ├── History.md
│ ├── Readme.md
│ ├── lib
│ ├── package.json
│ └── test.js
├── has-flag
│ ├── index.d.ts
│ ├── index.js
│ ├── license
│ ├── package.json
│ └── readme.md
├── hasown
│ ├── CHANGELOG.md
│ ├── LICENSE
│ ├── README.md
│ ├── index.d.ts
│ ├── index.js
│ ├── package.json
│ └── tsconfig.json
├── he
│ ├── LICENSE-MIT.txt
│ ├── README.md
│ ├── bin
│ ├── he.js
│ ├── man
│ └── package.json
├── immutable
│ ├── LICENSE
│ ├── README.md
│ ├── dist
│ └── package.json
├── inflight
│ ├── LICENSE
│ ├── README.md
│ ├── inflight.js
│ └── package.json
├── inherits
│ ├── LICENSE
│ ├── README.md
│ ├── inherits.js
│ ├── inherits_browser.js
│ └── package.json
├── is-binary-path
│ ├── index.d.ts
│ ├── index.js
│ ├── license
│ ├── package.json
│ └── readme.md
├── is-core-module
│ ├── CHANGELOG.md
│ ├── LICENSE
│ ├── README.md
│ ├── core.json
│ ├── index.js
│ ├── package.json
│ └── test
├── is-extglob
│ ├── LICENSE
│ ├── README.md
│ ├── index.js
│ └── package.json
├── is-fullwidth-code-point
│ ├── index.js
│ ├── license
│ ├── package.json
│ └── readme.md
├── is-glob
│ ├── LICENSE
│ ├── README.md
│ ├── index.js
│ └── package.json
├── is-number
│ ├── LICENSE
│ ├── README.md
│ ├── index.js
│ └── package.json
├── is-plain-obj
│ ├── index.d.ts
│ ├── index.js
│ ├── license
│ ├── package.json
│ └── readme.md
├── isexe
│ ├── LICENSE
│ ├── README.md
│ ├── index.js
│ ├── mode.js
│ ├── package.json
│ ├── test
│ └── windows.js
├── js-yaml
│ ├── CHANGELOG.md
│ ├── LICENSE
│ ├── README.md
│ ├── bin
│ ├── dist
│ ├── index.js
│ ├── lib
│ └── package.json
├── locate-path
│ ├── index.d.ts
│ ├── index.js
│ ├── license
│ ├── package.json
│ └── readme.md
├── log-symbols
│ ├── browser.js
│ ├── index.d.ts
│ ├── index.js
│ ├── license
│ ├── package.json
│ └── readme.md
├── minimatch
│ ├── LICENSE
│ ├── README.md
│ ├── minimatch.js
│ └── package.json
├── mocha
│ ├── CHANGELOG.md
│ ├── LICENSE
│ ├── README.md
│ ├── assets
│ ├── bin
│ ├── browser-entry.js
│ ├── index.js
│ ├── lib
│ ├── mocha.css
│ ├── mocha.js
│ ├── mocha.js.map
│ └── package.json
├── ms
│ ├── index.js
│ ├── license.md
│ ├── package.json
│ └── readme.md
├── nanoid
│ ├── CHANGELOG.md
│ ├── LICENSE
│ ├── README.md
│ ├── async
│ ├── bin
│ ├── index.browser.js
│ ├── index.cjs
│ ├── index.d.ts
│ ├── index.dev.js
│ ├── index.js
│ ├── index.prod.js
│ ├── nanoid.js
│ ├── non-secure
│ ├── package.json
│ └── url-alphabet
├── node-releases
│ ├── LICENSE
│ ├── README.md
│ ├── data
│ └── package.json
├── normalize-path
│ ├── LICENSE
│ ├── README.md
│ ├── index.js
│ └── package.json
├── normalize-range
│ ├── index.js
│ ├── license
│ ├── package.json
│ └── readme.md
├── once
│ ├── LICENSE
│ ├── README.md
│ ├── once.js
│ └── package.json
├── p-limit
│ ├── index.d.ts
│ ├── index.js
│ ├── license
│ ├── package.json
│ └── readme.md
├── p-locate
│ ├── index.d.ts
│ ├── index.js
│ ├── license
│ ├── package.json
│ └── readme.md
├── path-exists
│ ├── index.d.ts
│ ├── index.js
│ ├── license
│ ├── package.json
│ └── readme.md
├── path-is-absolute
│ ├── index.js
│ ├── license
│ ├── package.json
│ └── readme.md
├── path-parse
│ ├── LICENSE
│ ├── README.md
│ ├── index.js
│ └── package.json
├── picocolors
│ ├── LICENSE
│ ├── README.md
│ ├── package.json
│ ├── picocolors.browser.js
│ ├── picocolors.d.ts
│ ├── picocolors.js
│ └── types.ts
├── picomatch
│ ├── CHANGELOG.md
│ ├── LICENSE
│ ├── README.md
│ ├── index.js
│ ├── lib
│ └── package.json
├── postcss
│ ├── LICENSE
│ ├── README.md
│ ├── lib
│ ├── node_modules
│ └── package.json
├── postcss-value-parser
│ ├── LICENSE
│ ├── README.md
│ ├── lib
│ └── package.json
├── randombytes
│ ├── LICENSE
│ ├── README.md
│ ├── browser.js
│ ├── index.js
│ ├── package.json
│ └── test.js
├── readdirp
│ ├── LICENSE
│ ├── README.md
│ ├── index.d.ts
│ ├── index.js
│ └── package.json
├── require-directory
│ ├── LICENSE
│ ├── README.markdown
│ ├── index.js
│ └── package.json
├── resolve
│ ├── LICENSE
│ ├── SECURITY.md
│ ├── async.js
│ ├── bin
│ ├── example
│ ├── index.js
│ ├── lib
│ ├── package.json
│ ├── readme.markdown
│ ├── sync.js
│ └── test
├── safe-buffer
│ ├── LICENSE
│ ├── README.md
│ ├── index.d.ts
│ ├── index.js
│ └── package.json
├── sass
│ ├── LICENSE
│ ├── README.md
│ ├── package.json
│ ├── sass.dart.js
│ ├── sass.default.cjs
│ ├── sass.default.js
│ ├── sass.js
│ ├── sass.node.js
│ ├── sass.node.mjs
│ └── types
├── serialize-javascript
│ ├── LICENSE
│ ├── README.md
│ ├── index.js
│ └── package.json
├── source-map-js
│ ├── LICENSE
│ ├── README.md
│ ├── lib
│ ├── package.json
│ ├── source-map.d.ts
│ └── source-map.js
├── string-width
│ ├── index.js
│ ├── license
│ ├── package.json
│ └── readme.md
├── strip-ansi
│ ├── index.js
│ ├── license
│ ├── package.json
│ └── readme.md
├── strip-json-comments
│ ├── index.d.ts
│ ├── index.js
│ ├── license
│ ├── package.json
│ └── readme.md
├── supports-color
│ ├── browser.js
│ ├── index.js
│ ├── license
│ ├── package.json
│ └── readme.md
├── supports-preserve-symlinks-flag
│ ├── CHANGELOG.md
│ ├── LICENSE
│ ├── README.md
│ ├── browser.js
│ ├── index.js
│ ├── package.json
│ └── test
├── to-regex-range
│ ├── LICENSE
│ ├── README.md
│ ├── index.js
│ └── package.json
├── update-browserslist-db
│ ├── LICENSE
│ ├── README.md
│ ├── check-npm-version.js
│ ├── cli.js
│ ├── index.d.ts
│ ├── index.js
│ ├── package.json
│ └── utils.js
├── which
│ ├── CHANGELOG.md
│ ├── LICENSE
│ ├── README.md
│ ├── bin
│ ├── package.json
│ └── which.js
├── wide-align
│ ├── LICENSE
│ ├── README.md
│ ├── align.js
│ └── package.json
├── workerpool
│ ├── HISTORY.md
│ ├── LICENSE
│ ├── README.md
│ ├── dist
│ ├── package.json
│ └── src
├── wrap-ansi
│ ├── index.js
│ ├── license
│ ├── node_modules
│ ├── package.json
│ └── readme.md
├── wrappy
│ ├── LICENSE
│ ├── README.md
│ ├── package.json
│ └── wrappy.js
├── y18n
│ ├── CHANGELOG.md
│ ├── LICENSE
│ ├── README.md
│ ├── build
│ ├── index.mjs
│ └── package.json
├── yargs
│ ├── CHANGELOG.md
│ ├── LICENSE
│ ├── README.md
│ ├── browser.mjs
│ ├── build
│ ├── helpers
│ ├── index.cjs
│ ├── index.mjs
│ ├── lib
│ ├── locales
│ ├── node_modules
│ ├── package.json
│ └── yargs
├── yargs-parser
│ ├── CHANGELOG.md
│ ├── LICENSE.txt
│ ├── README.md
│ ├── browser.js
│ ├── build
│ └── package.json
├── yargs-unparser
│ ├── CHANGELOG.md
│ ├── LICENSE
│ ├── README.md
│ ├── index.js
│ └── package.json
└── yocto-queue
├── index.d.ts
├── index.js
├── license
├── package.json
└── readme.md
172 directories, 502 files
```
- **`srcjs/`**: `srcjs/` is intended to store source JavaScript files that you might write and use in your R package. These JavaScript files can then be processed and bundled for inclusion in the R package, particularly if you are using a package like `charpente` to manage and build JavaScript assets for use in Shiny applications or other interactive features.
- **`srcjs/main.js`**: `srcjs/main.js` is the primary JavaScript file that may contain the main logic or functionality required by the package.
```js
import "../styles/main.scss";
```
- **`srcjs/test/test_basic.js`**
```js
describe('Basic test', () => {
it('should not fail', (done) => {
done();
});
});
```
- **`styles/`**: The `styles/` folder is used for storing CSS stylesheets. These stylesheets can define the visual appearance of your Shiny applications or any web components used within the R package. By organizing styles in this directory, you can manage and maintain the CSS separate from the R and JavaScript code.
- **`R/cap-utils.R`**: This file contains R functions and code that are part of the package. It is placed in the `R/` directory, which is the primary location for all R code within the package.
- **`cran-comments.md`**: `cran-comments.md` includes notes and comments for the CRAN maintainers when submitting the package to CRAN. It typically contains information about the submission, testing, and any issues addressed.
- **`inst/cap-0.0.0.9000`**: `inst/` can contain additional files that are to be installed with the package but are not part of the R code. These files might include documentation, data, or other resources.
These components are part of a modern approach to integrating JavaScript and CSS with R packages, especially for Shiny applications, ensuring that web dependencies are managed effectively and the package structure remains organized and maintainable.
## Development
### `create_custom_handler()`
The `create_custom_handler()` function is used to create a custom JavaScript handler. Here is an example of how to use it:
```r
# Load the charpente package
library(charpente)
# Create a custom JS handler
charpente::create_custom_handler(
path = "path/to/your/package",
name = "my_custom_handler"
)
# Example content for inst/app/www/my_custom_handler.js
# Add this JavaScript code to the created file
#' Custom handler for special button click
#'
#' @noRd
Shiny.addCustomMessageHandler('customMessage', function(message) {
alert('Received custom message: ' + message);
});
```
### `create_input_binding()`
The `create_input_binding()` function is used to create a custom Shiny input binding. Here is an example:
```r
# Load the charpente package
library(charpente)
# Create a custom input binding
charpente::create_input_binding(
path = "path/to/your/package",
name = "my_custom_input"
)
# Example content for inst/app/www/my_custom_input.js
# Add this JavaScript code to the created file
#' Custom input binding for my_special_input
#'
#' @noRd
var myCustomInputBinding = new Shiny.InputBinding();
$.extend(myCustomInputBinding, {
find: function(scope) {
return $(scope).find(".my-special-input");
},
getValue: function(el) {
return $(el).val();
},
setValue: function(el, value) {
$(el).val(value);
},
subscribe: function(el, callback) {
$(el).on("change.myCustomInputBinding", function(e) {
callback();
});
},
unsubscribe: function(el) {
$(el).off(".myCustomInputBinding");
}
});
Shiny.inputBindings.register(myCustomInputBinding);
```
### `create_output_binding()`
The `create_output_binding()` function is used to create a custom Shiny output binding. Here is an example:
```r
# Load the charpente package
library(charpente)
```
```r
# Create a custom output binding
charpente::create_output_binding(
path = "path/to/your/package",
name = "my_custom_output"
)
```
```r
# Example content for inst/app/www/my_custom_output.js
# Add this JavaScript code to the created file
#' Custom output binding for my_special_output
#'
#' @noRd
var myCustomOutputBinding = new Shiny.OutputBinding();
$.extend(myCustomOutputBinding, {
find: function(scope) {
return $(scope).find(".my-special-output");
},
renderValue: function(el, data) {
$(el).html(data);
}
});
Shiny.outputBindings.register(myCustomOutputBinding);
```
### Putting It All Together in a Shiny App
Here's how you can use these custom bindings in a Shiny app within your package:
1. **UI**
```r
library(shiny)
app_ui <- fluidPage(