123 | )
124 | }
125 | ```
126 |
127 | Below is the code a of local sub-component, being invoked in the main
128 | App template:
129 |
130 | ``` jsx
131 | const ListItem = (props) => {
132 | return () =>
{props.title}
;
133 | }
134 |
135 | export default ListItem
136 | ```
137 |
138 | ### Router
139 |
140 | This app requires a router to navigate between pages. This is done with
141 | the Framework7 builtin feature. You may pass entire app components to
142 | the router, as shown below.
143 |
144 | ``` js
145 | import Extra from '../components/extra.f7.jsx';
146 |
147 | export default [
148 | //{
149 | // path: '/'
150 | //},
151 | {
152 | path: '/extra/',
153 | asyncComponent: () => Extra
154 | }
155 | ]
156 | ```
157 |
158 | ### App init
159 |
160 | Importantly, we only import Framework7 modules we need, to lighten the
161 | final bundle:
162 |
163 | ``` js
164 | import Dialog from 'framework7/esm/components/dialog/dialog.js';
165 | import Gauge from 'framework7/esm/components/gauge/gauge.js';
166 | import Panel from 'framework7/esm/components/panel/panel.js';
167 | import View from 'framework7/esm/components/view/view.js';
168 | Framework7.use([Dialog, Gauge, Panel, View]);
169 | ```
170 |
171 | App UI is initialized passing the main app component, the routes and
172 | targeting the `#app` element, located within the `app_ui()` function:
173 |
174 | ``` r
175 | app_ui <- function(request) {
176 | tagList(
177 | # Leave this function for adding external resources
178 | golem_add_external_resources(),
179 | # Your application UI logic
180 | tags$body(
181 | div(id = "app"),
182 | tags$script(src = "www/index.js")
183 | )
184 | )
185 | }
186 | ```
187 |
188 | Since the JS assets have to go after the `#app` element in the `body`
189 | tag, we had to comment out the `{golem}` predefined script:
190 |
191 | ``` r
192 | tags$head(
193 | favicon(),
194 | #bundle_resources(
195 | # path = app_sys('app/www'),
196 | # app_title = 'shinyFramework7'
197 | #)
198 | # Add here other external resources
199 | # for example, you can add shinyalert::useShinyalert()
200 | )
201 | ```
202 |
203 | Whole `index.js` code:
204 |
205 | ``` js
206 | import 'shiny';
207 | // Import Framework7
208 | import Framework7 from 'framework7';
209 | // Import Framework7 Styles
210 | import 'framework7/framework7-bundle.min.css';
211 |
212 | // Install F7 Components using .use() method on class:
213 | import Dialog from 'framework7/esm/components/dialog/dialog.js';
214 | import Gauge from 'framework7/esm/components/gauge/gauge.js';
215 | import Panel from 'framework7/esm/components/panel/panel.js';
216 | import View from 'framework7/esm/components/view/view.js';
217 | Framework7.use([Dialog, Gauge, Panel, View]);
218 |
219 | // Import App component
220 | import App from './components/app.f7.jsx';
221 |
222 | // Import other routes
223 | import routes from './modules/routes.js';
224 |
225 | // Initialize app
226 | var app = new Framework7({
227 | el: '#app',
228 | theme: 'ios',
229 | // specify main app component
230 | routes: routes,
231 | component: App
232 | });
233 | ```
234 |
235 | ### Server
236 |
237 | On the server side (R):
238 |
239 | ``` r
240 | observeEvent(TRUE, {
241 | session$sendCustomMessage("init", colnames(mtcars))
242 | })
243 |
244 | observeEvent(input$alert, {
245 | message(sprintf("Received from JS: %s", input$alert$message))
246 | message(sprintf("App title is %s", input$alert$title))
247 | })
248 |
249 | observe({print(input$alert_opened)})
250 | ```
251 |
252 | ## Example
253 |
254 | This is a basic example which shows you how to solve a common problem:
255 |
256 | ### Run app
257 |
258 | ``` r
259 | library(shinyComponent)
260 | ## basic example code
261 | run_app()
262 | ```
263 |
264 | ### Dev mode
265 |
266 | ``` r
267 | library(shinyComponent)
268 | ## basic example code
269 | packer::bundle_dev()
270 | devtools::load_all()
271 | run_app()
272 | ```
273 |
--------------------------------------------------------------------------------
/app.R:
--------------------------------------------------------------------------------
1 | # Launch the ShinyApp (Do not remove this comment)
2 | # To deploy, run: rsconnect::deployApp()
3 | # Or use the blue button on top of this file
4 |
5 | #pkgload::load_all()
6 | options( "golem.app.prod" = TRUE)
7 |
8 | # Obviously, the chat feature is disabled in local mode.
9 | shinyComponent::run_app()
10 |
--------------------------------------------------------------------------------
/dev/01_start.R:
--------------------------------------------------------------------------------
1 | # Building a Prod-Ready, Robust Shiny Application.
2 | #
3 | # README: each step of the dev files is optional, and you don't have to
4 | # fill every dev scripts before getting started.
5 | # 01_start.R should be filled at start.
6 | # 02_dev.R should be used to keep track of your development during the project.
7 | # 03_deploy.R should be used once you need to deploy your app.
8 | #
9 | #
10 | ########################################
11 | #### CURRENT FILE: ON START SCRIPT #####
12 | ########################################
13 |
14 | ## Fill the DESCRIPTION ----
15 | ## Add meta data about your application
16 | ##
17 | ## /!\ Note: if you want to change the name of your app during development,
18 | ## either re-run this function, call golem::set_golem_name(), or don't forget
19 | ## to change the name in the app_sys() function in app_config.R /!\
20 | ##
21 | golem::fill_desc(
22 | pkg_name = "shinyComponent", # The Name of the package containing the App
23 | pkg_title = "Component powered app", # The Title of the package containing the App
24 | pkg_description = "App powered by {golem}, webpack, Framework7 components (esm). WIP", # The Description of the package containing the App
25 | author_first_name = "David", # Your First Name
26 | author_last_name = "Granjon", # Your Last Name
27 | author_email = "dgranjon@ymail.com", # Your Email
28 | repo_url = NULL # The URL of the GitHub Repo (optional)
29 | )
30 |
31 | ## Set {golem} options ----
32 | golem::set_golem_options()
33 |
34 | ## Create Common Files ----
35 | ## See ?usethis for more information
36 | usethis::use_mit_license( "Golem User" ) # You can set another license here
37 | usethis::use_readme_rmd( open = FALSE )
38 | usethis::use_code_of_conduct()
39 | usethis::use_lifecycle_badge( "Experimental" )
40 | usethis::use_news_md( open = FALSE )
41 |
42 | ## Use git ----
43 | usethis::use_git()
44 |
45 | ## Init Testing Infrastructure ----
46 | ## Create a template for tests
47 | golem::use_recommended_tests()
48 |
49 | ## Use Recommended Packages ----
50 | golem::use_recommended_deps()
51 |
52 | ## Favicon ----
53 | # If you want to change the favicon (default is golem's one)
54 | golem::use_favicon() # path = "path/to/ico". Can be an online file.
55 | golem::remove_favicon()
56 |
57 | ## Add helper functions ----
58 | golem::use_utils_ui()
59 | golem::use_utils_server()
60 |
61 | # You're now set! ----
62 |
63 | # go to dev/02_dev.R
64 | rstudioapi::navigateToFile( "dev/02_dev.R" )
65 |
66 |
--------------------------------------------------------------------------------
/dev/02_dev.R:
--------------------------------------------------------------------------------
1 | # Building a Prod-Ready, Robust Shiny Application.
2 | #
3 | # README: each step of the dev files is optional, and you don't have to
4 | # fill every dev scripts before getting started.
5 | # 01_start.R should be filled at start.
6 | # 02_dev.R should be used to keep track of your development during the project.
7 | # 03_deploy.R should be used once you need to deploy your app.
8 | #
9 | #
10 | ###################################
11 | #### CURRENT FILE: DEV SCRIPT #####
12 | ###################################
13 |
14 | # Engineering
15 |
16 | ## Dependencies ----
17 | ## Add one line by package you want to add as dependency
18 | usethis::use_package( "thinkr" )
19 |
20 | ## Add modules ----
21 | ## Create a module infrastructure in R/
22 | golem::add_module( name = "name_of_module1" ) # Name of the module
23 | golem::add_module( name = "name_of_module2" ) # Name of the module
24 |
25 | ## Add helper functions ----
26 | ## Creates fct_* and utils_*
27 | golem::add_fct( "helpers" )
28 | golem::add_utils( "helpers" )
29 |
30 | ## External resources
31 | ## Creates .js and .css files at inst/app/www
32 | golem::add_js_file( "script" )
33 | golem::add_js_handler( "handlers" )
34 | golem::add_css_file( "custom" )
35 |
36 | ## Add internal datasets ----
37 | ## If you have data in your package
38 | usethis::use_data_raw( name = "my_dataset", open = FALSE )
39 |
40 | ## Tests ----
41 | ## Add one line by test you want to create
42 | usethis::use_test( "app" )
43 |
44 | # Documentation
45 |
46 | ## Vignette ----
47 | usethis::use_vignette("shinyFramework7")
48 | devtools::build_vignettes()
49 |
50 | ## Code Coverage----
51 | ## Set the code coverage service ("codecov" or "coveralls")
52 | usethis::use_coverage()
53 |
54 | # Create a summary readme for the testthat subdirectory
55 | covrpage::covrpage()
56 |
57 | ## CI ----
58 | ## Use this part of the script if you need to set up a CI
59 | ## service for your application
60 | ##
61 | ## (You'll need GitHub there)
62 | usethis::use_github()
63 |
64 | # GitHub Actions
65 | usethis::use_github_action()
66 | # Chose one of the three
67 | # See https://usethis.r-lib.org/reference/use_github_action.html
68 | usethis::use_github_action_check_release()
69 | usethis::use_github_action_check_standard()
70 | usethis::use_github_action_check_full()
71 | # Add action for PR
72 | usethis::use_github_action_pr_commands()
73 |
74 | # Travis CI
75 | usethis::use_travis()
76 | usethis::use_travis_badge()
77 |
78 | # AppVeyor
79 | usethis::use_appveyor()
80 | usethis::use_appveyor_badge()
81 |
82 | # Circle CI
83 | usethis::use_circleci()
84 | usethis::use_circleci_badge()
85 |
86 | # Jenkins
87 | usethis::use_jenkins()
88 |
89 | # GitLab CI
90 | usethis::use_gitlab_ci()
91 |
92 | # You're now set! ----
93 | # go to dev/03_deploy.R
94 | rstudioapi::navigateToFile("dev/03_deploy.R")
95 |
96 |
--------------------------------------------------------------------------------
/dev/03_deploy.R:
--------------------------------------------------------------------------------
1 | # Building a Prod-Ready, Robust Shiny Application.
2 | #
3 | # README: each step of the dev files is optional, and you don't have to
4 | # fill every dev scripts before getting started.
5 | # 01_start.R should be filled at start.
6 | # 02_dev.R should be used to keep track of your development during the project.
7 | # 03_deploy.R should be used once you need to deploy your app.
8 | #
9 | #
10 | ######################################
11 | #### CURRENT FILE: DEPLOY SCRIPT #####
12 | ######################################
13 |
14 | # Test your app
15 |
16 | ## Run checks ----
17 | ## Check the package before sending to prod
18 | devtools::check()
19 | rhub::check_for_cran()
20 |
21 | # Deploy
22 |
23 | ## Local, CRAN or Package Manager ----
24 | ## This will build a tar.gz that can be installed locally,
25 | ## sent to CRAN, or to a package manager
26 | devtools::build()
27 |
28 | ## RStudio ----
29 | ## If you want to deploy on RStudio related platforms
30 | golem::add_rstudioconnect_file()
31 | golem::add_shinyappsio_file()
32 | golem::add_shinyserver_file()
33 |
34 | ## Docker ----
35 | ## If you want to deploy via a generic Dockerfile
36 | golem::add_dockerfile()
37 |
38 | ## If you want to deploy to ShinyProxy
39 | golem::add_dockerfile_shinyproxy()
40 |
41 | ## If you want to deploy to Heroku
42 | golem::add_dockerfile_heroku()
43 |
--------------------------------------------------------------------------------
/dev/run_dev.R:
--------------------------------------------------------------------------------
1 | # Set options here
2 | options(golem.app.prod = FALSE) # TRUE = production mode, FALSE = development mode
3 |
4 | # Detach all loaded packages and clean your environment
5 | golem::detach_all_attached()
6 | # rm(list=ls(all.names = TRUE))
7 |
8 | # Document and reload your package
9 | golem::document_and_reload()
10 |
11 | # Run the application
12 | run_app()
13 |
--------------------------------------------------------------------------------
/inst/WORDLIST:
--------------------------------------------------------------------------------
1 | Lifecycle
2 | WIP
3 | esm
4 | github
5 | golem
6 | https
7 | webpack
8 |
--------------------------------------------------------------------------------
/inst/app/www/favicon.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/RinteRface/shinyComponent/f55db32f3e97119ab68ed94f5b161232e1837170/inst/app/www/favicon.ico
--------------------------------------------------------------------------------
/inst/app/www/index.js.LICENSE.txt:
--------------------------------------------------------------------------------
1 | /*!
2 | * ZRender, a high performance 2d drawing library.
3 | *
4 | * Copyright (c) 2013, Baidu Inc.
5 | * All rights reserved.
6 | *
7 | * LICENSE
8 | * https://github.com/ecomfe/zrender/blob/master/LICENSE.txt
9 | */
10 |
11 | /*! *****************************************************************************
12 | Copyright (c) Microsoft Corporation.
13 |
14 | Permission to use, copy, modify, and/or distribute this software for any
15 | purpose with or without fee is hereby granted.
16 |
17 | THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH
18 | REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
19 | AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,
20 | INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM
21 | LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR
22 | OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
23 | PERFORMANCE OF THIS SOFTWARE.
24 | ***************************************************************************** */
25 |
--------------------------------------------------------------------------------
/inst/app/www/srcjs_components_extra_f7_html.js:
--------------------------------------------------------------------------------
1 | "use strict";
2 | (self["webpackChunkshinyFramework7"] = self["webpackChunkshinyFramework7"] || []).push([["srcjs_components_extra_f7_html"],{
3 |
4 | /***/ "./srcjs/components/extra.f7.html":
5 | /*!****************************************!*\
6 | !*** ./srcjs/components/extra.f7.html ***!
7 | \****************************************/
8 | /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
9 |
10 | __webpack_require__.r(__webpack_exports__);
11 | /* harmony export */ __webpack_require__.d(__webpack_exports__, {
12 | /* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__)
13 | /* harmony export */ });
14 | /* harmony import */ var _babel_runtime_helpers_taggedTemplateLiteral__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @babel/runtime/helpers/taggedTemplateLiteral */ "./node_modules/@babel/runtime/helpers/esm/taggedTemplateLiteral.js");
15 |
16 |
17 | var _templateObject;
18 |
19 | /** @jsx $jsx */
20 |
21 |
22 | function framework7Component(props, _ref) {
23 | var $f7router = _ref.$f7router;
24 |
25 | var back = function back() {
26 | $f7router.back();
27 | };
28 |
29 | return function ($ctx) {
30 | var $ = $ctx.$;
31 | var $h = $ctx.$h;
32 | var $root = $ctx.$root;
33 | var $f7 = $ctx.$f7;
34 | var $f7route = $ctx.$f7route;
35 | var $f7router = $ctx.$f7router;
36 | var $theme = $ctx.$theme;
37 | var $update = $ctx.$update;
38 | var $store = $ctx.$store;
39 | return $h(_templateObject || (_templateObject = (0,_babel_runtime_helpers_taggedTemplateLiteral__WEBPACK_IMPORTED_MODULE_0__.default)(["\n
import 'shiny';
30 | // Import Framework7
31 | import Framework7 from 'framework7';
32 | // Import Framework7 Styles
33 | import 'framework7/framework7-bundle.min.css';
34 |
35 | // Install F7 Components using .use() method on class:
36 | import Dialog from 'framework7/esm/components/dialog/dialog.js';
37 | import Range from 'framework7/esm/components/range/range.js';
38 | import Gauge from 'framework7/esm/components/gauge/gauge.js';
39 | import Panel from 'framework7/esm/components/panel/panel.js';
40 | import Toast from 'framework7/esm/components/toast/toast.js';
41 | Framework7.use([Dialog, Range, Panel, Gauge, Toast]);
42 |
43 | // Import App component
44 | import App from './components/app.f7.jsx';
45 |
46 | // Import other routes
47 | import routes from './modules/routes.js';
48 |
49 | // Initialize app
50 | var app = new Framework7({
51 | el: '#app',
52 | theme: 'ios',
53 | // specify main app component
54 | routes: routes,
55 | component: App
56 | });
57 |
58 |
59 | // REMOVE THIS
60 |
61 | /**
62 | * Adds 1 to a number.
63 | *
64 | * @param {Number} x Number to add one to
65 | */
66 | export const fn = (x) => {
67 | return x + 1;
68 | }
69 |
70 |
71 |
72 |
73 |
74 |
75 |
76 |
77 |
78 |
81 |
82 |
83 |
84 |
87 |
88 |
89 |
90 |
91 |
92 |
--------------------------------------------------------------------------------
/jsdoc/scripts/linenumber.js:
--------------------------------------------------------------------------------
1 | /*global document */
2 | (() => {
3 | const source = document.getElementsByClassName('prettyprint source linenums');
4 | let i = 0;
5 | let lineNumber = 0;
6 | let lineId;
7 | let lines;
8 | let totalLines;
9 | let anchorHash;
10 |
11 | if (source && source[0]) {
12 | anchorHash = document.location.hash.substring(1);
13 | lines = source[0].getElementsByTagName('li');
14 | totalLines = lines.length;
15 |
16 | for (; i < totalLines; i++) {
17 | lineNumber++;
18 | lineId = `line${lineNumber}`;
19 | lines[i].id = lineId;
20 | if (lineId === anchorHash) {
21 | lines[i].className += ' selected';
22 | }
23 | }
24 | }
25 | })();
26 |
--------------------------------------------------------------------------------
/jsdoc/scripts/prettify/Apache-License-2.0.txt:
--------------------------------------------------------------------------------
1 |
2 | Apache License
3 | Version 2.0, January 2004
4 | http://www.apache.org/licenses/
5 |
6 | TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
7 |
8 | 1. Definitions.
9 |
10 | "License" shall mean the terms and conditions for use, reproduction,
11 | and distribution as defined by Sections 1 through 9 of this document.
12 |
13 | "Licensor" shall mean the copyright owner or entity authorized by
14 | the copyright owner that is granting the License.
15 |
16 | "Legal Entity" shall mean the union of the acting entity and all
17 | other entities that control, are controlled by, or are under common
18 | control with that entity. For the purposes of this definition,
19 | "control" means (i) the power, direct or indirect, to cause the
20 | direction or management of such entity, whether by contract or
21 | otherwise, or (ii) ownership of fifty percent (50%) or more of the
22 | outstanding shares, or (iii) beneficial ownership of such entity.
23 |
24 | "You" (or "Your") shall mean an individual or Legal Entity
25 | exercising permissions granted by this License.
26 |
27 | "Source" form shall mean the preferred form for making modifications,
28 | including but not limited to software source code, documentation
29 | source, and configuration files.
30 |
31 | "Object" form shall mean any form resulting from mechanical
32 | transformation or translation of a Source form, including but
33 | not limited to compiled object code, generated documentation,
34 | and conversions to other media types.
35 |
36 | "Work" shall mean the work of authorship, whether in Source or
37 | Object form, made available under the License, as indicated by a
38 | copyright notice that is included in or attached to the work
39 | (an example is provided in the Appendix below).
40 |
41 | "Derivative Works" shall mean any work, whether in Source or Object
42 | form, that is based on (or derived from) the Work and for which the
43 | editorial revisions, annotations, elaborations, or other modifications
44 | represent, as a whole, an original work of authorship. For the purposes
45 | of this License, Derivative Works shall not include works that remain
46 | separable from, or merely link (or bind by name) to the interfaces of,
47 | the Work and Derivative Works thereof.
48 |
49 | "Contribution" shall mean any work of authorship, including
50 | the original version of the Work and any modifications or additions
51 | to that Work or Derivative Works thereof, that is intentionally
52 | submitted to Licensor for inclusion in the Work by the copyright owner
53 | or by an individual or Legal Entity authorized to submit on behalf of
54 | the copyright owner. For the purposes of this definition, "submitted"
55 | means any form of electronic, verbal, or written communication sent
56 | to the Licensor or its representatives, including but not limited to
57 | communication on electronic mailing lists, source code control systems,
58 | and issue tracking systems that are managed by, or on behalf of, the
59 | Licensor for the purpose of discussing and improving the Work, but
60 | excluding communication that is conspicuously marked or otherwise
61 | designated in writing by the copyright owner as "Not a Contribution."
62 |
63 | "Contributor" shall mean Licensor and any individual or Legal Entity
64 | on behalf of whom a Contribution has been received by Licensor and
65 | subsequently incorporated within the Work.
66 |
67 | 2. Grant of Copyright License. Subject to the terms and conditions of
68 | this License, each Contributor hereby grants to You a perpetual,
69 | worldwide, non-exclusive, no-charge, royalty-free, irrevocable
70 | copyright license to reproduce, prepare Derivative Works of,
71 | publicly display, publicly perform, sublicense, and distribute the
72 | Work and such Derivative Works in Source or Object form.
73 |
74 | 3. Grant of Patent License. Subject to the terms and conditions of
75 | this License, each Contributor hereby grants to You a perpetual,
76 | worldwide, non-exclusive, no-charge, royalty-free, irrevocable
77 | (except as stated in this section) patent license to make, have made,
78 | use, offer to sell, sell, import, and otherwise transfer the Work,
79 | where such license applies only to those patent claims licensable
80 | by such Contributor that are necessarily infringed by their
81 | Contribution(s) alone or by combination of their Contribution(s)
82 | with the Work to which such Contribution(s) was submitted. If You
83 | institute patent litigation against any entity (including a
84 | cross-claim or counterclaim in a lawsuit) alleging that the Work
85 | or a Contribution incorporated within the Work constitutes direct
86 | or contributory patent infringement, then any patent licenses
87 | granted to You under this License for that Work shall terminate
88 | as of the date such litigation is filed.
89 |
90 | 4. Redistribution. You may reproduce and distribute copies of the
91 | Work or Derivative Works thereof in any medium, with or without
92 | modifications, and in Source or Object form, provided that You
93 | meet the following conditions:
94 |
95 | (a) You must give any other recipients of the Work or
96 | Derivative Works a copy of this License; and
97 |
98 | (b) You must cause any modified files to carry prominent notices
99 | stating that You changed the files; and
100 |
101 | (c) You must retain, in the Source form of any Derivative Works
102 | that You distribute, all copyright, patent, trademark, and
103 | attribution notices from the Source form of the Work,
104 | excluding those notices that do not pertain to any part of
105 | the Derivative Works; and
106 |
107 | (d) If the Work includes a "NOTICE" text file as part of its
108 | distribution, then any Derivative Works that You distribute must
109 | include a readable copy of the attribution notices contained
110 | within such NOTICE file, excluding those notices that do not
111 | pertain to any part of the Derivative Works, in at least one
112 | of the following places: within a NOTICE text file distributed
113 | as part of the Derivative Works; within the Source form or
114 | documentation, if provided along with the Derivative Works; or,
115 | within a display generated by the Derivative Works, if and
116 | wherever such third-party notices normally appear. The contents
117 | of the NOTICE file are for informational purposes only and
118 | do not modify the License. You may add Your own attribution
119 | notices within Derivative Works that You distribute, alongside
120 | or as an addendum to the NOTICE text from the Work, provided
121 | that such additional attribution notices cannot be construed
122 | as modifying the License.
123 |
124 | You may add Your own copyright statement to Your modifications and
125 | may provide additional or different license terms and conditions
126 | for use, reproduction, or distribution of Your modifications, or
127 | for any such Derivative Works as a whole, provided Your use,
128 | reproduction, and distribution of the Work otherwise complies with
129 | the conditions stated in this License.
130 |
131 | 5. Submission of Contributions. Unless You explicitly state otherwise,
132 | any Contribution intentionally submitted for inclusion in the Work
133 | by You to the Licensor shall be under the terms and conditions of
134 | this License, without any additional terms or conditions.
135 | Notwithstanding the above, nothing herein shall supersede or modify
136 | the terms of any separate license agreement you may have executed
137 | with Licensor regarding such Contributions.
138 |
139 | 6. Trademarks. This License does not grant permission to use the trade
140 | names, trademarks, service marks, or product names of the Licensor,
141 | except as required for reasonable and customary use in describing the
142 | origin of the Work and reproducing the content of the NOTICE file.
143 |
144 | 7. Disclaimer of Warranty. Unless required by applicable law or
145 | agreed to in writing, Licensor provides the Work (and each
146 | Contributor provides its Contributions) on an "AS IS" BASIS,
147 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
148 | implied, including, without limitation, any warranties or conditions
149 | of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
150 | PARTICULAR PURPOSE. You are solely responsible for determining the
151 | appropriateness of using or redistributing the Work and assume any
152 | risks associated with Your exercise of permissions under this License.
153 |
154 | 8. Limitation of Liability. In no event and under no legal theory,
155 | whether in tort (including negligence), contract, or otherwise,
156 | unless required by applicable law (such as deliberate and grossly
157 | negligent acts) or agreed to in writing, shall any Contributor be
158 | liable to You for damages, including any direct, indirect, special,
159 | incidental, or consequential damages of any character arising as a
160 | result of this License or out of the use or inability to use the
161 | Work (including but not limited to damages for loss of goodwill,
162 | work stoppage, computer failure or malfunction, or any and all
163 | other commercial damages or losses), even if such Contributor
164 | has been advised of the possibility of such damages.
165 |
166 | 9. Accepting Warranty or Additional Liability. While redistributing
167 | the Work or Derivative Works thereof, You may choose to offer,
168 | and charge a fee for, acceptance of support, warranty, indemnity,
169 | or other liability obligations and/or rights consistent with this
170 | License. However, in accepting such obligations, You may act only
171 | on Your own behalf and on Your sole responsibility, not on behalf
172 | of any other Contributor, and only if You agree to indemnify,
173 | defend, and hold each Contributor harmless for any liability
174 | incurred by, or claims asserted against, such Contributor by reason
175 | of your accepting any such warranty or additional liability.
176 |
177 | END OF TERMS AND CONDITIONS
178 |
179 | APPENDIX: How to apply the Apache License to your work.
180 |
181 | To apply the Apache License to your work, attach the following
182 | boilerplate notice, with the fields enclosed by brackets "[]"
183 | replaced with your own identifying information. (Don't include
184 | the brackets!) The text should be enclosed in the appropriate
185 | comment syntax for the file format. We also recommend that a
186 | file or class name and description of purpose be included on the
187 | same "printed page" as the copyright notice for easier
188 | identification within third-party archives.
189 |
190 | Copyright [yyyy] [name of copyright owner]
191 |
192 | Licensed under the Apache License, Version 2.0 (the "License");
193 | you may not use this file except in compliance with the License.
194 | You may obtain a copy of the License at
195 |
196 | http://www.apache.org/licenses/LICENSE-2.0
197 |
198 | Unless required by applicable law or agreed to in writing, software
199 | distributed under the License is distributed on an "AS IS" BASIS,
200 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
201 | See the License for the specific language governing permissions and
202 | limitations under the License.
203 |
--------------------------------------------------------------------------------
/jsdoc/scripts/prettify/lang-css.js:
--------------------------------------------------------------------------------
1 | PR.registerLangHandler(PR.createSimpleLexer([["pln",/^[\t\n\f\r ]+/,null," \t\r\n"]],[["str",/^"(?:[^\n\f\r"\\]|\\(?:\r\n?|\n|\f)|\\[\S\s])*"/,null],["str",/^'(?:[^\n\f\r'\\]|\\(?:\r\n?|\n|\f)|\\[\S\s])*'/,null],["lang-css-str",/^url\(([^"')]*)\)/i],["kwd",/^(?:url|rgb|!important|@import|@page|@media|@charset|inherit)(?=[^\w-]|$)/i,null],["lang-css-kw",/^(-?(?:[_a-z]|\\[\da-f]+ ?)(?:[\w-]|\\\\[\da-f]+ ?)*)\s*:/i],["com",/^\/\*[^*]*\*+(?:[^*/][^*]*\*+)*\//],["com",
2 | /^(?:<\!--|--\>)/],["lit",/^(?:\d+|\d*\.\d+)(?:%|[a-z]+)?/i],["lit",/^#[\da-f]{3,6}/i],["pln",/^-?(?:[_a-z]|\\[\da-f]+ ?)(?:[\w-]|\\\\[\da-f]+ ?)*/i],["pun",/^[^\s\w"']+/]]),["css"]);PR.registerLangHandler(PR.createSimpleLexer([],[["kwd",/^-?(?:[_a-z]|\\[\da-f]+ ?)(?:[\w-]|\\\\[\da-f]+ ?)*/i]]),["css-kw"]);PR.registerLangHandler(PR.createSimpleLexer([],[["str",/^[^"')]+/]]),["css-str"]);
3 |
--------------------------------------------------------------------------------
/jsdoc/scripts/prettify/prettify.js:
--------------------------------------------------------------------------------
1 | var q=null;window.PR_SHOULD_USE_CONTINUATION=!0;
2 | (function(){function L(a){function m(a){var f=a.charCodeAt(0);if(f!==92)return f;var b=a.charAt(1);return(f=r[b])?f:"0"<=b&&b<="7"?parseInt(a.substring(1),8):b==="u"||b==="x"?parseInt(a.substring(2),16):a.charCodeAt(1)}function e(a){if(a<32)return(a<16?"\\x0":"\\x")+a.toString(16);a=String.fromCharCode(a);if(a==="\\"||a==="-"||a==="["||a==="]")a="\\"+a;return a}function h(a){for(var f=a.substring(1,a.length-1).match(/\\u[\dA-Fa-f]{4}|\\x[\dA-Fa-f]{2}|\\[0-3][0-7]{0,2}|\\[0-7]{1,2}|\\[\S\s]|[^\\]/g),a=
3 | [],b=[],o=f[0]==="^",c=o?1:0,i=f.length;c122||(d<65||j>90||b.push([Math.max(65,j)|32,Math.min(d,90)|32]),d<97||j>122||b.push([Math.max(97,j)&-33,Math.min(d,122)&-33]))}}b.sort(function(a,f){return a[0]-f[0]||f[1]-a[1]});f=[];j=[NaN,NaN];for(c=0;ci[0]&&(i[1]+1>i[0]&&b.push("-"),b.push(e(i[1])));b.push("]");return b.join("")}function y(a){for(var f=a.source.match(/\[(?:[^\\\]]|\\[\S\s])*]|\\u[\dA-Fa-f]{4}|\\x[\dA-Fa-f]{2}|\\\d+|\\[^\dux]|\(\?[!:=]|[()^]|[^()[\\^]+/g),b=f.length,d=[],c=0,i=0;c=2&&a==="["?f[c]=h(j):a!=="\\"&&(f[c]=j.replace(/[A-Za-z]/g,function(a){a=a.charCodeAt(0);return"["+String.fromCharCode(a&-33,a|32)+"]"}));return f.join("")}for(var t=0,s=!1,l=!1,p=0,d=a.length;p=5&&"lang-"===b.substring(0,5))&&!(o&&typeof o[1]==="string"))c=!1,b="src";c||(r[f]=b)}i=d;d+=f.length;if(c){c=o[1];var j=f.indexOf(c),k=j+c.length;o[2]&&(k=f.length-o[2].length,j=k-c.length);b=b.substring(5);B(l+i,f.substring(0,j),e,p);B(l+i+j,c,C(b,c),p);B(l+i+k,f.substring(k),e,p)}else p.push(l+i,b)}a.e=p}var h={},y;(function(){for(var e=a.concat(m),
9 | l=[],p={},d=0,g=e.length;d=0;)h[n.charAt(k)]=r;r=r[1];n=""+r;p.hasOwnProperty(n)||(l.push(r),p[n]=q)}l.push(/[\S\s]/);y=L(l)})();var t=m.length;return e}function u(a){var m=[],e=[];a.tripleQuotedStrings?m.push(["str",/^(?:'''(?:[^'\\]|\\[\S\s]|''?(?=[^']))*(?:'''|$)|"""(?:[^"\\]|\\[\S\s]|""?(?=[^"]))*(?:"""|$)|'(?:[^'\\]|\\[\S\s])*(?:'|$)|"(?:[^"\\]|\\[\S\s])*(?:"|$))/,q,"'\""]):a.multiLineStrings?m.push(["str",/^(?:'(?:[^'\\]|\\[\S\s])*(?:'|$)|"(?:[^"\\]|\\[\S\s])*(?:"|$)|`(?:[^\\`]|\\[\S\s])*(?:`|$))/,
10 | q,"'\"`"]):m.push(["str",/^(?:'(?:[^\n\r'\\]|\\.)*(?:'|$)|"(?:[^\n\r"\\]|\\.)*(?:"|$))/,q,"\"'"]);a.verbatimStrings&&e.push(["str",/^@"(?:[^"]|"")*(?:"|$)/,q]);var h=a.hashComments;h&&(a.cStyleComments?(h>1?m.push(["com",/^#(?:##(?:[^#]|#(?!##))*(?:###|$)|.*)/,q,"#"]):m.push(["com",/^#(?:(?:define|elif|else|endif|error|ifdef|include|ifndef|line|pragma|undef|warning)\b|[^\n\r]*)/,q,"#"]),e.push(["str",/^<(?:(?:(?:\.\.\/)*|\/?)(?:[\w-]+(?:\/[\w-]+)+)?[\w-]+\.h|[a-z]\w*)>/,q])):m.push(["com",/^#[^\n\r]*/,
11 | q,"#"]));a.cStyleComments&&(e.push(["com",/^\/\/[^\n\r]*/,q]),e.push(["com",/^\/\*[\S\s]*?(?:\*\/|$)/,q]));a.regexLiterals&&e.push(["lang-regex",/^(?:^^\.?|[!+-]|!=|!==|#|%|%=|&|&&|&&=|&=|\(|\*|\*=|\+=|,|-=|->|\/|\/=|:|::|;|<|<<|<<=|<=|=|==|===|>|>=|>>|>>=|>>>|>>>=|[?@[^]|\^=|\^\^|\^\^=|{|\||\|=|\|\||\|\|=|~|break|case|continue|delete|do|else|finally|instanceof|return|throw|try|typeof)\s*(\/(?=[^*/])(?:[^/[\\]|\\[\S\s]|\[(?:[^\\\]]|\\[\S\s])*(?:]|$))+\/)/]);(h=a.types)&&e.push(["typ",h]);a=(""+a.keywords).replace(/^ | $/g,
12 | "");a.length&&e.push(["kwd",RegExp("^(?:"+a.replace(/[\s,]+/g,"|")+")\\b"),q]);m.push(["pln",/^\s+/,q," \r\n\t\xa0"]);e.push(["lit",/^@[$_a-z][\w$@]*/i,q],["typ",/^(?:[@_]?[A-Z]+[a-z][\w$@]*|\w+_t\b)/,q],["pln",/^[$_a-z][\w$@]*/i,q],["lit",/^(?:0x[\da-f]+|(?:\d(?:_\d+)*\d*(?:\.\d*)?|\.\d\+)(?:e[+-]?\d+)?)[a-z]*/i,q,"0123456789"],["pln",/^\\[\S\s]?/,q],["pun",/^.[^\s\w"-$'./@\\`]*/,q]);return x(m,e)}function D(a,m){function e(a){switch(a.nodeType){case 1:if(k.test(a.className))break;if("BR"===a.nodeName)h(a),
13 | a.parentNode&&a.parentNode.removeChild(a);else for(a=a.firstChild;a;a=a.nextSibling)e(a);break;case 3:case 4:if(p){var b=a.nodeValue,d=b.match(t);if(d){var c=b.substring(0,d.index);a.nodeValue=c;(b=b.substring(d.index+d[0].length))&&a.parentNode.insertBefore(s.createTextNode(b),a.nextSibling);h(a);c||a.parentNode.removeChild(a)}}}}function h(a){function b(a,d){var e=d?a.cloneNode(!1):a,f=a.parentNode;if(f){var f=b(f,1),g=a.nextSibling;f.appendChild(e);for(var h=g;h;h=g)g=h.nextSibling,f.appendChild(h)}return e}
14 | for(;!a.nextSibling;)if(a=a.parentNode,!a)return;for(var a=b(a.nextSibling,0),e;(e=a.parentNode)&&e.nodeType===1;)a=e;d.push(a)}var k=/(?:^|\s)nocode(?:\s|$)/,t=/\r\n?|\n/,s=a.ownerDocument,l;a.currentStyle?l=a.currentStyle.whiteSpace:window.getComputedStyle&&(l=s.defaultView.getComputedStyle(a,q).getPropertyValue("white-space"));var p=l&&"pre"===l.substring(0,3);for(l=s.createElement("LI");a.firstChild;)l.appendChild(a.firstChild);for(var d=[l],g=0;g=0;){var h=m[e];A.hasOwnProperty(h)?window.console&&console.warn("cannot override language handler %s",h):A[h]=a}}function C(a,m){if(!a||!A.hasOwnProperty(a))a=/^\s*=o&&(h+=2);e>=c&&(a+=2)}}catch(w){"console"in window&&console.log(w&&w.stack?w.stack:w)}}var v=["break,continue,do,else,for,if,return,while"],w=[[v,"auto,case,char,const,default,double,enum,extern,float,goto,int,long,register,short,signed,sizeof,static,struct,switch,typedef,union,unsigned,void,volatile"],
18 | "catch,class,delete,false,import,new,operator,private,protected,public,this,throw,true,try,typeof"],F=[w,"alignof,align_union,asm,axiom,bool,concept,concept_map,const_cast,constexpr,decltype,dynamic_cast,explicit,export,friend,inline,late_check,mutable,namespace,nullptr,reinterpret_cast,static_assert,static_cast,template,typeid,typename,using,virtual,where"],G=[w,"abstract,boolean,byte,extends,final,finally,implements,import,instanceof,null,native,package,strictfp,super,synchronized,throws,transient"],
19 | H=[G,"as,base,by,checked,decimal,delegate,descending,dynamic,event,fixed,foreach,from,group,implicit,in,interface,internal,into,is,lock,object,out,override,orderby,params,partial,readonly,ref,sbyte,sealed,stackalloc,string,select,uint,ulong,unchecked,unsafe,ushort,var"],w=[w,"debugger,eval,export,function,get,null,set,undefined,var,with,Infinity,NaN"],I=[v,"and,as,assert,class,def,del,elif,except,exec,finally,from,global,import,in,is,lambda,nonlocal,not,or,pass,print,raise,try,with,yield,False,True,None"],
20 | J=[v,"alias,and,begin,case,class,def,defined,elsif,end,ensure,false,in,module,next,nil,not,or,redo,rescue,retry,self,super,then,true,undef,unless,until,when,yield,BEGIN,END"],v=[v,"case,done,elif,esac,eval,fi,function,in,local,set,then,until"],K=/^(DIR|FILE|vector|(de|priority_)?queue|list|stack|(const_)?iterator|(multi)?(set|map)|bitset|u?(int|float)\d*)/,N=/\S/,O=u({keywords:[F,H,w,"caller,delete,die,do,dump,elsif,eval,exit,foreach,for,goto,if,import,last,local,my,next,no,our,print,package,redo,require,sub,undef,unless,until,use,wantarray,while,BEGIN,END"+
21 | I,J,v],hashComments:!0,cStyleComments:!0,multiLineStrings:!0,regexLiterals:!0}),A={};k(O,["default-code"]);k(x([],[["pln",/^[^]+/],["dec",/^]*(?:>|$)/],["com",/^<\!--[\S\s]*?(?:--\>|$)/],["lang-",/^<\?([\S\s]+?)(?:\?>|$)/],["lang-",/^<%([\S\s]+?)(?:%>|$)/],["pun",/^(?:<[%?]|[%?]>)/],["lang-",/^]*>([\S\s]+?)<\/xmp\b[^>]*>/i],["lang-js",/^
88 |
--------------------------------------------------------------------------------
/srcjs/components/app.f7.jsx:
--------------------------------------------------------------------------------
1 | import ListItem from './custom-list.f7.jsx';
2 | import { VdpWidget, initializeVdpWidget } from './vdp.f7.jsx';
3 |
4 | export default (props, {$, $f7, $f7ready, $on, $update }) => {
5 | const title = 'Hello World';
6 | let names = ['John', 'Vladimir', 'Timo'];
7 |
8 | Shiny.addCustomMessageHandler('init', function(message) {
9 | names = message;
10 | $update();
11 | });
12 |
13 | // App events callback
14 | $on('click', () => {
15 | // callback
16 | });
17 |
18 | // This method need to be used only when you use Main App Component
19 | // to make sure to call Framework7 APIs when app initialized.
20 | $f7ready(() => {
21 | // do stuff
22 | console.log('Hello');
23 | });
24 |
25 | const openAlert = () => {
26 | $f7.dialog.alert(title, function() {
27 | // ok button callback
28 | Shiny.setInputValue('alert_opened', false);
29 | });
30 | Shiny.setInputValue('alert_opened', true);
31 | Shiny.setInputValue(
32 | 'alert',
33 | {
34 | message: 'Alert dialog was triggered!',
35 | title: title,
36 | },
37 | {priority: 'event'}
38 | );
39 | }
40 |
41 | const openPanel = () => {
42 | $f7.panel.open('.panel-left');
43 | }
44 |
45 | initializeVdpWidget($f7);
46 |
47 | return () => (
48 |
The below model is computed by R. R receives the slider value, solves the system and returns
19 | data as JSON. JS creates the chart with echartsJS and provided data.
20 |