Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Package app #8

Draft
wants to merge 54 commits into
base: dev
Choose a base branch
from
Draft
Changes from 1 commit
Commits
Show all changes
54 commits
Select commit Hold shift + click to select a range
b95d0bc
Restructure organization and debug filter calls
vsriram24 Sep 20, 2024
0a1a2d4
Package oncarto
vsriram24 Sep 20, 2024
7e36c9f
Add pkg dependencies to DESCRIPTION
vsriram24 Sep 22, 2024
c3a0b88
Update package versions to handle new cancerprof API updates
vsriram24 Sep 30, 2024
96955bb
Resolve merge conflicts btwn dev and package-app
vsriram24 Nov 14, 2024
39bfcd5
Drop renv
vsriram24 Nov 18, 2024
ea52032
Beginning to functionalize UI 11/18
vsriram24 Nov 19, 2024
842a1ca
Resolve basic app running issues
vsriram24 Nov 20, 2024
bf6d703
Add remaining selectInputs for incidence UI
vsriram24 Nov 20, 2024
a642859
Add UI for incidence output
vsriram24 Nov 20, 2024
252aad9
Add UI for contact info in incidence
vsriram24 Nov 20, 2024
ad3a09e
moving files around to make your life easier
seankross Nov 20, 2024
c24bee2
Add UI for background tab
vsriram24 Nov 20, 2024
34ee49f
Merge pull request #15 from getwilds/package-app-sk
vsriram24 Nov 20, 2024
d81977d
Correct info for background UI
vsriram24 Nov 20, 2024
8a5b324
Include NS for UI
vsriram24 Nov 20, 2024
61b4aa6
Server logic for background tab + background data
vsriram24 Nov 20, 2024
3f87fea
Update server logic for contact info in incidence tab
vsriram24 Nov 20, 2024
ca37500
Ingest data for incidence on server
vsriram24 Nov 20, 2024
f14228e
Fix ref to get_data fn
vsriram24 Nov 20, 2024
6c6e812
Filter input data and functionalize contact info
vsriram24 Nov 21, 2024
49f7658
Update data filtering to dplyr
vsriram24 Nov 22, 2024
da03dc8
Debugging map message functionalization
vsriram24 Nov 22, 2024
7c83f85
all of the co working stuff we talked about
seankross Nov 22, 2024
a65ce91
Merge pull request #16 from getwilds/nov-22-coworking
vsriram24 Nov 25, 2024
5cc39fc
Move logic for contact info from server to UI
vsriram24 Nov 25, 2024
52b6b47
drop extraneous server logic for bground
vsriram24 Nov 25, 2024
f80e01f
Add param statements for data_table_name and state_abbr in run-app
vsriram24 Nov 25, 2024
739d490
Get choropleth map and message working without functionalization
vsriram24 Nov 26, 2024
cc113f5
Functionalize palette
vsriram24 Nov 26, 2024
5800d0f
Functionalize making leaflet map
vsriram24 Nov 26, 2024
90481b7
Clean up parameter calls between run-app and server
vsriram24 Nov 26, 2024
89edd5f
Fix filename for make-leaflet
vsriram24 Nov 26, 2024
2c43264
Remove extraneous scripts and clean up make-leaflet
vsriram24 Nov 26, 2024
1ea6318
Resolve NOTES from running check()
vsriram24 Nov 26, 2024
8f927d1
Include packages for function calls
vsriram24 Nov 26, 2024
3d4a330
Package addt for NAMESPACE
vsriram24 Nov 26, 2024
c7f8a5e
Include more package defs for fns
vsriram24 Nov 26, 2024
1bbf2e3
Resolve addPolygons issue in leaflet
vsriram24 Nov 26, 2024
9139294
Clean up server-county-incidence
vsriram24 Nov 26, 2024
2ef4a6a
fixed logo and added testing
seankross Nov 26, 2024
257f05e
Merge pull request #17 from getwilds/package-app-logo-fix-and-testing
vsriram24 Nov 27, 2024
cd8fcc8
Plan out tests and create sample data
vsriram24 Dec 2, 2024
059a2ef
Further test dev and addResourcePath pkg
vsriram24 Dec 3, 2024
dcedc49
Change map_message to NULL for easier testing
vsriram24 Dec 3, 2024
fdca1b3
Baseline test format with sample data
vsriram24 Dec 3, 2024
705e012
Failed test. Trying to debug
vsriram24 Dec 3, 2024
73b6aeb
Turn get_data into a callback
vsriram24 Dec 4, 2024
94241f4
Disentangle incidence outputs
vsriram24 Dec 4, 2024
8c3f9db
Working tests (half of them)
vsriram24 Dec 4, 2024
5a61a45
We're not gonna bother about shinytest2
vsriram24 Dec 4, 2024
4f4d5c0
Reorg inst/ folder
vsriram24 Dec 5, 2024
480c25b
Introduce contact_info md as an argument for ui-county-incidence
vsriram24 Dec 5, 2024
d2435a4
Cleanup and check
vsriram24 Dec 5, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Add UI for contact info in incidence
  • Loading branch information
vsriram24 committed Nov 20, 2024
commit 252aad98bd733d2df12c2b1cb8fa5b501d1affce
11 changes: 11 additions & 0 deletions R/ui-county-incidence.R
Original file line number Diff line number Diff line change
@@ -61,6 +61,17 @@ ui_county_incidence <- function(id) {
#withSpinner(leafletOutput("choropleth"))
)
)
),

fluidRow(
column(
12,
box(
width = 12,
#uiOutput(outputId = "contactInfo")
uiOutput("")
)
)
)
)
}