{"id":24233981,"url":"https://github.com/appsilon/semantic.dashboard","last_synced_at":"2025-04-04T08:09:16.176Z","repository":{"id":27277912,"uuid":"111922625","full_name":"Appsilon/semantic.dashboard","owner":"Appsilon","description":"Quick, beautiful and customizable dashboard template for Shiny based on shiny.semantic and Fomantic UI.","archived":false,"fork":false,"pushed_at":"2024-04-18T20:50:27.000Z","size":5536,"stargazers_count":257,"open_issues_count":15,"forks_count":43,"subscribers_count":36,"default_branch":"develop","last_synced_at":"2025-04-04T08:08:56.185Z","etag":null,"topics":["dashboard","fomantic-ui","r","rhinoverse","semantic-ui","shiny"],"latest_commit_sha":null,"homepage":"https://appsilon.github.io/semantic.dashboard/","language":"R","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"other","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/Appsilon.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2017-11-24T13:40:12.000Z","updated_at":"2025-03-18T14:38:43.000Z","dependencies_parsed_at":"2024-01-16T14:03:55.705Z","dependency_job_id":"fc50c45e-fa1c-48d4-b2ec-98328448b2e3","html_url":"https://github.com/Appsilon/semantic.dashboard","commit_stats":{"total_commits":277,"total_committers":20,"mean_commits":13.85,"dds":0.8050541516245487,"last_synced_commit":"101de127c96866762b34c6818c47ecdf14903ce4"},"previous_names":[],"tags_count":1,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Appsilon%2Fsemantic.dashboard","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Appsilon%2Fsemantic.dashboard/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Appsilon%2Fsemantic.dashboard/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Appsilon%2Fsemantic.dashboard/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Appsilon","download_url":"https://codeload.github.com/Appsilon/semantic.dashboard/tar.gz/refs/heads/develop","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":247142074,"owners_count":20890653,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["dashboard","fomantic-ui","r","rhinoverse","semantic-ui","shiny"],"created_at":"2025-01-14T16:35:06.159Z","updated_at":"2025-04-04T08:09:16.158Z","avatar_url":"https://github.com/Appsilon.png","language":"R","funding_links":[],"categories":[],"sub_categories":[],"readme":"# semantic.dashboard \u003ca href=\"https://appsilon.github.io/semantic.dashboard/\"\u003e\u003cimg src=\"man/figures/hexsticker.png\" align=\"right\" alt=\"semantic.dashboard logo\" style=\"height: 140px;\"\u003e\u003c/a\u003e\n\n\u003e _Quick, beautiful and customizable dashboard template for Shiny based on shiny.semantic and Fomantic UI._\n\n\u003c!-- badges: start --\u003e\n[![R-CMD-check](https://github.com/Appsilon/semantic.dashboard/workflows/R-CMD-check/badge.svg)](https://github.com/Appsilon/semantic.dashboard/actions/workflows/main.yml)\n[![codecov](https://codecov.io/gh/Appsilon/semantic.dashboard/branch/master/graph/badge.svg)](https://codecov.io/gh/Appsilon/semantic.dashboard)\n[![cranlogs](https://cranlogs.r-pkg.org/badges/semantic.dashboard)](https://CRAN.R-project.org/package=semantic.dashboard)\n[![total](https://cranlogs.r-pkg.org/badges/grand-total/semantic.dashboard)](https://CRAN.R-project.org/package=semantic.dashboard)\n\u003c!-- badges: end --\u003e\n\nAre you fed up with ordinary `shinydashboard` look?\n\nGive your app a new fresh look with [Fomantic UI](https://fomantic-ui.com/) support.\n\n``` r\nlibrary(shiny)\nlibrary(shinydashboard) # \u003c-- Change this line to: library(semantic.dashboard)\n\nui \u003c- dashboardPage(\n  dashboardHeader(title = \"Basic dashboard\"),\n  dashboardSidebar(sidebarMenu(\n      menuItem(tabName = \"home\", text = \"Home\", icon = icon(\"home\")),\n      menuItem(tabName = \"another\", text = \"Another Tab\", icon = icon(\"heart\"))\n  )),\n  dashboardBody(\n    fluidRow(\n      box(plotOutput(\"plot1\", height = 250)),\n      box(\n        title = \"Controls\",\n        sliderInput(\"slider\", \"Number of observations:\", 1, 100, 50)\n      )\n    )\n  )\n)\n\nserver \u003c- function(input, output) {\n  set.seed(122)\n  histdata \u003c- rnorm(500)\n  output$plot1 \u003c- renderPlot({\n    data \u003c- histdata[seq_len(input$slider)]\n    hist(data)\n  })\n}\n\nshinyApp(ui, server)\n```\n\n![Semantic dashboards comparison](man/figures/compare.png)\n\n`semantic.dashboard` offers basic functions for creating dashboard with Fomantic UI.\n\n## How to install?\n\nInstall `shiny.semantic` library first. [Here](https://github.com/Appsilon/shiny.semantic) you can find how.\n\nYou can install a stable version `semantic.dashboard` from CRAN repository:\n\n    install.packages(\"semantic.dashboard\")\n\nThe development version can be installed from GitHub using `remotes`.\n\n    remotes::install_github(\"Appsilon/semantic.dashboard\")\n\nTo install [previous version]() you can run:\n\n    remotes::install_github(\"Appsilon/semantic.dashboard\", ref = \"0.1.0\")\n\n## Example\n\nYou can find examples in the `examples/` folder of the [GitHub repository](https://github.com/Appsilon/semantic.dashboard).\n\nYou can check [documentation](https://appsilon.github.io/semantic.dashboard/) for tutorials.\n\n## How to contribute?\n\nIf you want to contribute to this project please submit a regular PR, once you're done with new feature or bug fix. Please check `development/README.md` first! It contains useful\ninformation that will help you run your dev environment for `semantic.dashboard`.\n\n## Troubleshooting\n\nWe used the latest versions of dependencies for this library, so please update your R environment before installation.\n\nHowever, if you encounter any problems, try the following:\n\n1.  Up-to-date R language environment\n2.  Installing specific dependent libraries versions\n    -   shiny.semantic\n\n## Future enhacements\n\n-   Release of a stable 1.0.0 version\n-   Closer integration with shinydashboard\n\n## Appsilon\n\n\u003cimg src=\"https://avatars0.githubusercontent.com/u/6096772\" align=\"right\" alt=\"\" width=\"6%\" /\u003e\n\nAppsilon is a **Posit (formerly RStudio) Full Service Certified Partner**.\u003cbr/\u003e\nLearn more at [appsilon.com](https://appsilon.com).\n\nGet in touch [opensource@appsilon.com](mailto:opensource@appsilon.com)\n\nExplore the [Rhinoverse](https://rhinoverse.dev) - a family of R packages built around [Rhino](https://appsilon.github.io/rhino/)!\n\n\u003ca href = \"https://appsilon.com/careers/\" target=\"_blank\"\u003e\u003cimg src=\"https://raw.githubusercontent.com/Appsilon/website-cdn/gh-pages/WeAreHiring1.png\" alt=\"We are hiring!\"/\u003e\u003c/a\u003e\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fappsilon%2Fsemantic.dashboard","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fappsilon%2Fsemantic.dashboard","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fappsilon%2Fsemantic.dashboard/lists"}