Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/dreamRs/tuicalendr
:calendar: R htmlwidget for tui-calendar
https://github.com/dreamRs/tuicalendr
data-visualization htmlwidgets r
Last synced: 3 months ago
JSON representation
:calendar: R htmlwidget for tui-calendar
- Host: GitHub
- URL: https://github.com/dreamRs/tuicalendr
- Owner: dreamRs
- License: other
- Archived: true
- Created: 2019-05-13T15:13:26.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2021-07-27T13:10:04.000Z (over 3 years ago)
- Last Synced: 2024-01-28T23:08:23.208Z (9 months ago)
- Topics: data-visualization, htmlwidgets, r
- Language: R
- Homepage: https://dreamrs.github.io/tuicalendr/
- Size: 1.4 MB
- Stars: 55
- Watchers: 3
- Forks: 3
- Open Issues: 6
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- awesome-shiny-extensions - tuicalendr - HTML widget to create interactive calendars with JavaScript library tui-calendar. (UI Components / Calendar)
- jimsghstars - dreamRs/tuicalendr - :calendar: R htmlwidget for tui-calendar (R)
README
# tuicalendr
> Htmlwidget to create interactive calendar with JavaScript library [tui-calendar](https://github.com/nhn/tui.calendar)
[![Travis build status](https://travis-ci.org/dreamRs/tuicalendr.svg?branch=master)](https://travis-ci.org/dreamRs/tuicalendr)
[![R build status](https://github.com/dreamRs/tuicalendr/workflows/R-CMD-check/badge.svg)](https://github.com/dreamRs/tuicalendr/actions)
[![Lifecycle: superseded](https://img.shields.io/badge/lifecycle-superseded-blue.svg)](https://lifecycle.r-lib.org/articles/stages.html#superseded)
[![Project Status: Moved to https://github.com/dreamRs/toastui – The project has been moved to a new location, and the version at that location should be considered authoritative.](https://www.repostatus.org/badges/latest/moved.svg)](https://www.repostatus.org/#moved) to [dreamRs/toastui](https://github.com/dreamRs/toastui)# New version
:warning: :warning: :warning: :warning: :warning: :warning: :warning: :warning: :warning: :warning:
New version of this package is available at https://github.com/dreamRs/toastui
:warning: :warning: :warning: :warning: :warning: :warning: :warning: :warning: :warning: :warning:
# Old version
## Installation
You can install from GitHub with:
```r
remotes::install_github("dreamRs/tuicalendr")
```## Examples
Weekly calendar:
```r
library(tuicalendr)
calendar(defaultView = "week", taskView = TRUE, scheduleView = c("time", "allday")) %>%
set_calendars_props(id = "courses", name = "Courses", color = "#FFF", bgColor = "#E41A1C") %>%
set_calendars_props(id = "hobbies", name = "Hobbies", color = "#FFF", bgColor = "#377EB8") %>%
set_calendars_props(id = "social", name = "Social", color = "#FFF", bgColor = "#4DAF4A") %>%
add_schedule(
calendarId = "courses",
title = "R - introduction",
body = "What is R?",
start = sprintf("%s 08:00:00", Sys.Date() - 1),
end = sprintf("%s 12:30:00", Sys.Date() - 1),
category = "time"
) %>%
add_schedule(
calendarId = "courses",
title = "R - visualisation",
body = "With ggplot2",
start = sprintf("%s 13:30:00", Sys.Date() - 1),
end = sprintf("%s 18:00:00", Sys.Date() - 1),
category = "time"
) %>%
add_schedule(
calendarId = "hobbies",
title = "Read The Expanse",
body = "Vol. 5 : Nemesis Games",
start = Sys.Date(),
end = Sys.Date(),
category = "allday"
) %>%
add_schedule(
calendarId = "social",
title = "Lunch",
body = "With Fanny",
start = sprintf("%s 12:00:00", Sys.Date() + 1),
end = sprintf("%s 14:00:00", Sys.Date() + 1),
category = "time"
)
```
![](man/figures/example-week.png)Month calendar:
```r
calendar(defaultView = "month", taskView = TRUE, scheduleView = c("time", "allday"), useNav = TRUE) %>%
set_calendars_props(id = "courses", name = "Courses", color = "#FFF", bgColor = "#E41A1C") %>%
set_calendars_props(id = "hobbies", name = "Hobbies", color = "#FFF", bgColor = "#377EB8") %>%
set_calendars_props(id = "social", name = "Social", color = "#FFF", bgColor = "#4DAF4A") %>%
add_schedule(
calendarId = "courses",
title = "R - introduction",
body = "What is R?",
start = sprintf("%s 08:00:00", Sys.Date() - 1),
end = sprintf("%s 12:30:00", Sys.Date() - 1),
category = "time"
) %>%
add_schedule(
calendarId = "courses",
title = "R - visualisation",
body = "With ggplot2",
start = sprintf("%s 13:30:00", Sys.Date() - 1),
end = sprintf("%s 18:00:00", Sys.Date() - 1),
category = "time"
) %>%
add_schedule(
calendarId = "hobbies",
title = "Read The Expanse",
body = "Vol. 5 : Nemesis Games",
start = Sys.Date(),
end = Sys.Date() + 4,
category = "allday"
) %>%
add_schedule(
calendarId = "social",
title = "Lunch",
body = "With Fanny",
start = sprintf("%s 12:00:00", Sys.Date() + 7),
end = sprintf("%s 14:00:00", Sys.Date() + 7),
category = "time"
)
```
![](man/figures/example-month.png)