Add files via upload

This commit is contained in:
Angela 2022-03-09 10:13:20 -05:00 committed by GitHub
parent d138284e22
commit 84f22b6830
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
6 changed files with 101 additions and 0 deletions

20
terraConnectr/DESCRIPTION Normal file
View File

@ -0,0 +1,20 @@
Package: terraConnectr
Title: What the Package Does (One Line, Title Case)
Version: 0.0.0.9000
Authors@R:
person(given = "First",
family = "Last",
role = c("aut", "cre"),
email = "first.last@example.com",
comment = c(ORCID = "YOUR-ORCID-ID"))
Description: What the package does (one paragraph).
License: `use_mit_license()`, `use_gpl3_license()` or friends to pick a
license
Encoding: UTF-8
Roxygen: list(markdown = TRUE)
RoxygenNote: 7.1.1
Imports: htmltools, reactR, shiny
NeedsCompilation: no
Packaged: 2022-01-20 14:34:14 UTC; angelaminster
Author: First Last [aut, cre] (YOUR-ORCID-ID)
Maintainer: First Last <first.last@example.com>

6
terraConnectr/NAMESPACE Normal file
View File

@ -0,0 +1,6 @@
# Generated by roxygen2: do not edit by hand
export(terraConnect)
importFrom(htmltools,htmlDependency)
importFrom(htmltools,tags)
importFrom(reactR,createReactShinyInput)

View File

@ -0,0 +1,24 @@
#' <Add Title>
#'
#' <Add Description>
#'
#' @importFrom reactR createReactShinyInput
#' @importFrom htmltools htmlDependency tags
#'
#' @export
terraConnect <- function(inputId) {
reactR::createReactShinyInput(
inputId,
"terraConnect",
htmltools::htmlDependency(
name = "terraConnect-input",
version = "1.0.0",
src = "www/terraConnectr/terraConnect",
package = "terraConnectr",
script = "terraConnect.js"
),
default = 0,
list(),
htmltools::tags$div
)
}

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@ -0,0 +1,11 @@
% Generated by roxygen2: do not edit by hand
% Please edit documentation in R/terraConnect.R
\name{terraConnect}
\alias{terraConnect}
\title{<Add Title>}
\usage{
terraConnect(inputId)
}
\description{
<Add Description>
}