├── .Rbuildignore ├── .future ├── .gitignore ├── DESCRIPTION ├── LICENSE ├── NAMESPACE ├── NEWS.md ├── R ├── clearStore.R ├── includes.R ├── locationParms.R ├── persistentObserveEvent.R ├── seeex.R ├── setup.R ├── setup_rpkg.R ├── shinyStorePlus-package.R └── zzz.R ├── README.md ├── _pkgdown.yml ├── _rpkgraw.js ├── inst ├── example │ ├── browserLinkToInput │ │ ├── server.R │ │ └── ui.R │ ├── dynamicInput │ │ ├── app1.R │ │ └── app2.R │ ├── shinyObserveOnce │ │ └── app.R │ ├── shinyWidgetsExamples │ │ └── app.R │ ├── storeInputs │ │ ├── server.R │ │ └── ui.R │ └── visitViewsLikesFollowers │ │ └── app.R └── scripts │ ├── dexie.js │ ├── misc.js │ ├── rpkg.js │ └── shinystoreplus.js ├── man ├── clearStore.Rd ├── initStore.Rd ├── link2input.Rd ├── observeonce.Rd ├── rpkgapi.Rd ├── seeexample.Rd ├── setupStorage.Rd └── shinyStorePlus-package.Rd ├── shinyStorePlus.Rproj └── vignettes ├── introduction_to_shinystoreplus.Rmd ├── shinystoreplus_v08.Rmd ├── shinystoreplus_v12.Rmd ├── store_shiny_visitor_views_likes_followers.Rmd └── using_shinystoreplus.Rmd /.Rbuildignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oobianom/shinyStorePlus/HEAD/.Rbuildignore -------------------------------------------------------------------------------- /.future: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oobianom/shinyStorePlus/HEAD/.future -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oobianom/shinyStorePlus/HEAD/.gitignore -------------------------------------------------------------------------------- /DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oobianom/shinyStorePlus/HEAD/DESCRIPTION -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oobianom/shinyStorePlus/HEAD/LICENSE -------------------------------------------------------------------------------- /NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oobianom/shinyStorePlus/HEAD/NAMESPACE -------------------------------------------------------------------------------- /NEWS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oobianom/shinyStorePlus/HEAD/NEWS.md -------------------------------------------------------------------------------- /R/clearStore.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oobianom/shinyStorePlus/HEAD/R/clearStore.R -------------------------------------------------------------------------------- /R/includes.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oobianom/shinyStorePlus/HEAD/R/includes.R -------------------------------------------------------------------------------- /R/locationParms.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oobianom/shinyStorePlus/HEAD/R/locationParms.R -------------------------------------------------------------------------------- /R/persistentObserveEvent.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oobianom/shinyStorePlus/HEAD/R/persistentObserveEvent.R -------------------------------------------------------------------------------- /R/seeex.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oobianom/shinyStorePlus/HEAD/R/seeex.R -------------------------------------------------------------------------------- /R/setup.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oobianom/shinyStorePlus/HEAD/R/setup.R -------------------------------------------------------------------------------- /R/setup_rpkg.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oobianom/shinyStorePlus/HEAD/R/setup_rpkg.R -------------------------------------------------------------------------------- /R/shinyStorePlus-package.R: -------------------------------------------------------------------------------- 1 | #' @keywords internal 2 | "_PACKAGE" 3 | -------------------------------------------------------------------------------- /R/zzz.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oobianom/shinyStorePlus/HEAD/R/zzz.R -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oobianom/shinyStorePlus/HEAD/README.md -------------------------------------------------------------------------------- /_pkgdown.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oobianom/shinyStorePlus/HEAD/_pkgdown.yml -------------------------------------------------------------------------------- /_rpkgraw.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oobianom/shinyStorePlus/HEAD/_rpkgraw.js -------------------------------------------------------------------------------- /inst/example/browserLinkToInput/server.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oobianom/shinyStorePlus/HEAD/inst/example/browserLinkToInput/server.R -------------------------------------------------------------------------------- /inst/example/browserLinkToInput/ui.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oobianom/shinyStorePlus/HEAD/inst/example/browserLinkToInput/ui.R -------------------------------------------------------------------------------- /inst/example/dynamicInput/app1.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oobianom/shinyStorePlus/HEAD/inst/example/dynamicInput/app1.R -------------------------------------------------------------------------------- /inst/example/dynamicInput/app2.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oobianom/shinyStorePlus/HEAD/inst/example/dynamicInput/app2.R -------------------------------------------------------------------------------- /inst/example/shinyObserveOnce/app.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oobianom/shinyStorePlus/HEAD/inst/example/shinyObserveOnce/app.R -------------------------------------------------------------------------------- /inst/example/shinyWidgetsExamples/app.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oobianom/shinyStorePlus/HEAD/inst/example/shinyWidgetsExamples/app.R -------------------------------------------------------------------------------- /inst/example/storeInputs/server.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oobianom/shinyStorePlus/HEAD/inst/example/storeInputs/server.R -------------------------------------------------------------------------------- /inst/example/storeInputs/ui.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oobianom/shinyStorePlus/HEAD/inst/example/storeInputs/ui.R -------------------------------------------------------------------------------- /inst/example/visitViewsLikesFollowers/app.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oobianom/shinyStorePlus/HEAD/inst/example/visitViewsLikesFollowers/app.R -------------------------------------------------------------------------------- /inst/scripts/dexie.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oobianom/shinyStorePlus/HEAD/inst/scripts/dexie.js -------------------------------------------------------------------------------- /inst/scripts/misc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oobianom/shinyStorePlus/HEAD/inst/scripts/misc.js -------------------------------------------------------------------------------- /inst/scripts/rpkg.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oobianom/shinyStorePlus/HEAD/inst/scripts/rpkg.js -------------------------------------------------------------------------------- /inst/scripts/shinystoreplus.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oobianom/shinyStorePlus/HEAD/inst/scripts/shinystoreplus.js -------------------------------------------------------------------------------- /man/clearStore.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oobianom/shinyStorePlus/HEAD/man/clearStore.Rd -------------------------------------------------------------------------------- /man/initStore.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oobianom/shinyStorePlus/HEAD/man/initStore.Rd -------------------------------------------------------------------------------- /man/link2input.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oobianom/shinyStorePlus/HEAD/man/link2input.Rd -------------------------------------------------------------------------------- /man/observeonce.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oobianom/shinyStorePlus/HEAD/man/observeonce.Rd -------------------------------------------------------------------------------- /man/rpkgapi.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oobianom/shinyStorePlus/HEAD/man/rpkgapi.Rd -------------------------------------------------------------------------------- /man/seeexample.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oobianom/shinyStorePlus/HEAD/man/seeexample.Rd -------------------------------------------------------------------------------- /man/setupStorage.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oobianom/shinyStorePlus/HEAD/man/setupStorage.Rd -------------------------------------------------------------------------------- /man/shinyStorePlus-package.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oobianom/shinyStorePlus/HEAD/man/shinyStorePlus-package.Rd -------------------------------------------------------------------------------- /shinyStorePlus.Rproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oobianom/shinyStorePlus/HEAD/shinyStorePlus.Rproj -------------------------------------------------------------------------------- /vignettes/introduction_to_shinystoreplus.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oobianom/shinyStorePlus/HEAD/vignettes/introduction_to_shinystoreplus.Rmd -------------------------------------------------------------------------------- /vignettes/shinystoreplus_v08.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oobianom/shinyStorePlus/HEAD/vignettes/shinystoreplus_v08.Rmd -------------------------------------------------------------------------------- /vignettes/shinystoreplus_v12.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oobianom/shinyStorePlus/HEAD/vignettes/shinystoreplus_v12.Rmd -------------------------------------------------------------------------------- /vignettes/store_shiny_visitor_views_likes_followers.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oobianom/shinyStorePlus/HEAD/vignettes/store_shiny_visitor_views_likes_followers.Rmd -------------------------------------------------------------------------------- /vignettes/using_shinystoreplus.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oobianom/shinyStorePlus/HEAD/vignettes/using_shinystoreplus.Rmd --------------------------------------------------------------------------------