Skip to content

Commit

Permalink
fix: change to Appsilon styling
Browse files Browse the repository at this point in the history
  • Loading branch information
DeepanshKhurana committed Feb 21, 2024
1 parent de7ce9b commit 55dbbdd
Show file tree
Hide file tree
Showing 14 changed files with 194 additions and 25 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,3 +2,4 @@
.Rhistory
.RData
.Ruserdata
.DS_Store
2 changes: 0 additions & 2 deletions app/logic/__init__.R

This file was deleted.

33 changes: 23 additions & 10 deletions app/main.R
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ box::use(
app/view/mod_app_table,
app/view/mod_job_list,
app/view/mod_logs,
app/view/mod_header,
app/logic/api_utils[get_app_list]
)

Expand All @@ -33,17 +34,27 @@ ui <- function(id) {
ns <- NS(id)
fluidPage(
class = "dashboard-body",
mod_header$ui("header"),
div(
class = "app-table",
mod_app_table$ui(ns("app_table"))
),
div(
class = "job-list",
uiOutput(ns("job_list_pane"))
),
div(
class = "logs",
uiOutput(ns("logs_pane"))
class = "dashboard-container",
div(
class = "app-table",
mod_app_table$ui(ns("app_table"))
),
div(
class = "vertical-line"
),
div(
class = "job-list",
uiOutput(ns("job_list_pane"))
),
div(
class = "vertical-line"
),
div(
class = "logs",
uiOutput(ns("logs_pane"))
)
)
)
}
Expand All @@ -54,6 +65,8 @@ server <- function(id) {

ns <- session$ns

mod_header$server("header")

state <- reactiveValues()
state$selected_app <- reactive({})
state$selected_job <- reactive({})
Expand Down
Binary file added app/static/appsilon-logo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion app/static/css/app.min.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit 55dbbdd

Please sign in to comment.