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

[doc] minor doc cleanup #945

Merged
merged 2 commits into from
Feb 15, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
10 changes: 5 additions & 5 deletions R/class-color.R
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
#' Helper to create a color
#'
#' Creates a `wbColour` object.
#' @param name A name of a color known to R
#' @param name A name of a color known to R either as name or RGB/ARGB value.
#' @param auto A boolean.
#' @param indexed An indexed color values.
#' @param hex A rgb color as ARGB hex value "FF000000".
#' @param indexed An indexed color value. This color has to be provided by the workbook.
#' @param hex A rgb color either a ARGB hex value or RGB hex value With or without leading "#".
#' @param theme A zero based index referencing a value in the theme.
#' @param tint A tint value applied. Range from -1 (dark) to 1 (light).
#' @seealso [wb_get_base_colors()]
#' @seealso [wb_get_base_colors()] [grDevices::colors()]
#' @return a `wbColour` object
#' @export
wb_color <- function(
Expand All @@ -33,7 +33,7 @@ wb_color <- function(
z <- z[z != ""]

# wbColour for historical reasons
class(z) <- c("character", "wbColour")
class(z) <- c("wbColour", "character")
z
}

Expand Down
2 changes: 1 addition & 1 deletion R/helper-functions.R
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ create_hyperlink <- function(sheet, row = 1, col = 1, text = NULL, file = NULL)
#' @param my.col my.col
#' @noRd
col2hex <- function(my.col) {
rgb(t(col2rgb(my.col)), maxColorValue = 255)
grDevices::rgb(t(grDevices::col2rgb(my.col)), maxColorValue = 255)
}

# validate color --------------------------------------------------------------
Expand Down
28 changes: 19 additions & 9 deletions R/wb_styles.R
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,6 @@ import_styles <- function(x) {
#' @description
#' Border styles can any of the following: "thin", "thick", "slantDashDot", "none", "mediumDashed", "mediumDashDot", "medium", "hair", "double", "dotted", "dashed", "dashedDotDot", "dashDot"
#' Border colors can be created with [wb_color()]
#' @seealso [wb_add_border()]
#' @param diagonal_down x
#' @param diagonal_up x
#' @param outline x
Expand All @@ -94,6 +93,8 @@ import_styles <- function(x) {
#' @param top x
#' @param vertical x
#' @param ... x
#' @seealso [wb_add_border()]
#' @family style creating functions
#'
#' @export
create_border <- function(
Expand Down Expand Up @@ -168,6 +169,7 @@ create_border <- function(
#' @param numFmtId an id, the list can be found in the **Details** of [create_cell_style()]
#' @param formatCode a format code
#' @seealso [wb_add_numfmt()]
#' @family style creating functions
#' @export
create_numfmt <- function(numFmtId, formatCode) {

Expand Down Expand Up @@ -202,6 +204,7 @@ create_numfmt <- function(numFmtId, formatCode) {
#' @param vert_align vertical alignment
#' @param ... ...
#' @seealso [wb_add_font()]
#' @family style creating functions
#' @examples
#' font <- create_font()
#' # openxml has the alpha value leading
Expand Down Expand Up @@ -330,6 +333,7 @@ create_font <- function(
#' @param fgColor hex8 color with alpha, red, green, blue only for patternFill
#' @param ... ...
#' @seealso [wb_add_fill()]
#' @family style creating functions
#'
#' @export
create_fill <- function(
Expand Down Expand Up @@ -374,7 +378,6 @@ create_fill <- function(
# TODO can be further generalized with additional xf attributes and children
#' Helper to create a cell style
#'
#' Create_cell_style with [wb_add_cell_style()]
#' @param border_id dummy
#' @param fill_id dummy
#' @param font_id dummy
Expand All @@ -397,6 +400,8 @@ create_fill <- function(
#' @param horizontal alignment can be "", "center", "right"
#' @param vertical alignment can be "", "center", "right"
#' @param ... reserved for additional arguments
#' @seealso [wb_add_cell_style()]
#' @family style creating functions
#'
#' @details
#' | "ID" | "numFmt" |
Expand Down Expand Up @@ -623,7 +628,7 @@ set_cellstyle <- function(
write_xf(z)
}

#' get all styles on a sheet
#' Get all styles on a sheet
#'
#' @param wb workbook
#' @param sheet worksheet
Expand Down Expand Up @@ -666,7 +671,6 @@ get_cell_styles <- function(wb, sheet, cell) {
#' @details
#' It is possible to override border_color and border_style with \{left, right, top, bottom\}_color, \{left, right, top, bottom\}_style.
#'
#' @seealso [wb_add_style()]
# TODO maybe font_name,font_size could be documented together.
#' @param font_name A name of a font. Note the font name is not validated.
#' If `font_name` is `NULL`, the workbook `base_font` is used. (Defaults to Calibri), see [wb_get_base_font()]
Expand All @@ -688,6 +692,8 @@ get_cell_styles <- function(wb, sheet, cell) {
#' @param text_underline underline 1, true, single or double
#' @param ... Additional arguments
#' @return A dxfs style node
#' @seealso [wb_add_style()] [wb_add_dxfs_style()]
#' @family style creating functions
#' @examples
#' # do not apply anything
#' style1 <- create_dxfs_style()
Expand Down Expand Up @@ -831,7 +837,8 @@ create_dxfs_style <- function(
#' @param page_field_labels pageFieldLabels
#' @param page_field_values pageFieldValues
#' @param ... additional arguments
#' @name tablestyle
#' @name create_tablestyle
#' @family style creating functions
#' @export
# TODO: combine both functions and simply set pivot=0 or table=0
create_tablestyle <- function(
Expand Down Expand Up @@ -964,7 +971,7 @@ create_tablestyle <- function(
)
}

#' @rdname tablestyle
#' @rdname create_tablestyle
#' @export
create_pivottablestyle <- function(
name,
Expand Down Expand Up @@ -1192,13 +1199,16 @@ create_pivottablestyle <- function(
)
}

#' create custom color xml schemes
#' To be used with [wb_set_base_colors()]
#' Create custom color xml schemes
#'
#' Create custom color themes that can be used with [wb_set_base_colors()]. The color input will be checked with [wb_color()], so it must be either a color R from [grDevices::colors()] or a hex value.
#' Default values for the dark argument are: `black`, `white`, `darkblue` and `lightgray`. For the accent argument, the six inner values of [grDevices::palette()]. The link argument uses `blue` and `purple` by default for active and visited links.
#' @name create_colors_xml
#' @param name the color name
#' @param dark four colors: dark, light, brighter dark, darker light
#' @param accent six accent colors
#' @param link two link colors: link and visited link
#' @family style creating functions
#' @examples
#' colors <- create_colors_xml()
#' wb <- wb_workbook()$add_worksheet()$set_base_colors(xml = colors)
Expand All @@ -1217,7 +1227,7 @@ create_colors_xml <- function(
accent <- grDevices::palette()[2:7]

if (is.null(link))
link <- c("blue", "gray")
link <- c("blue", "purple")

if (length(dark) != 4) {
stop("dark vector must be of length 4")
Expand Down
10 changes: 10 additions & 0 deletions man/create_border.Rd

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

15 changes: 14 additions & 1 deletion man/create_cell_style.Rd

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

18 changes: 14 additions & 4 deletions man/create_colors_xml.Rd

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

12 changes: 11 additions & 1 deletion man/create_dxfs_style.Rd

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

10 changes: 10 additions & 0 deletions man/create_fill.Rd

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

10 changes: 10 additions & 0 deletions man/create_font.Rd

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

10 changes: 10 additions & 0 deletions man/create_numfmt.Rd

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

14 changes: 12 additions & 2 deletions man/tablestyle.Rd → man/create_tablestyle.Rd

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

4 changes: 2 additions & 2 deletions man/styles_on_sheet.Rd

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

8 changes: 4 additions & 4 deletions man/wb_color.Rd

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

2 changes: 1 addition & 1 deletion tests/testthat/test-class-color.R
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ test_that("get()", {
exp <- c(rgb = "FF000000")
expect_false(is_wbColour(exp))

class(exp) <- c("character", "wbColour")
class(exp) <- c("wbColour", "character")
got <- wb_colour("black")

expect_true(is_wbColour(got))
Expand Down
2 changes: 1 addition & 1 deletion tests/testthat/test-wb_styles.R
Original file line number Diff line number Diff line change
Expand Up @@ -872,7 +872,7 @@ test_that("apply styles across columns and rows", {

test_that("create_colors_xml() works", {

exp <- "<a:clrScheme name=\"Base R\"><a:dk1><a:sysClr val=\"windowText\" lastClr=\"000000\"/></a:dk1><a:lt1><a:sysClr val=\"window\" lastClr=\"FFFFFF\"/></a:lt1><a:dk2><a:srgbClr val=\"00008B\"/></a:dk2><a:lt2><a:srgbClr val=\"D3D3D3\"/></a:lt2><a:accent1><a:srgbClr val=\"DF536B\"/></a:accent1><a:accent2><a:srgbClr val=\"61D04F\"/></a:accent2><a:accent3><a:srgbClr val=\"2297E6\"/></a:accent3><a:accent4><a:srgbClr val=\"28E2E5\"/></a:accent4><a:accent5><a:srgbClr val=\"CD0BBC\"/></a:accent5><a:accent6><a:srgbClr val=\"F5C710\"/></a:accent6><a:hlink><a:srgbClr val=\"0000FF\"/></a:hlink><a:folHlink><a:srgbClr val=\"BEBEBE\"/></a:folHlink></a:clrScheme>"
exp <- "<a:clrScheme name=\"Base R\"><a:dk1><a:sysClr val=\"windowText\" lastClr=\"000000\"/></a:dk1><a:lt1><a:sysClr val=\"window\" lastClr=\"FFFFFF\"/></a:lt1><a:dk2><a:srgbClr val=\"00008B\"/></a:dk2><a:lt2><a:srgbClr val=\"D3D3D3\"/></a:lt2><a:accent1><a:srgbClr val=\"DF536B\"/></a:accent1><a:accent2><a:srgbClr val=\"61D04F\"/></a:accent2><a:accent3><a:srgbClr val=\"2297E6\"/></a:accent3><a:accent4><a:srgbClr val=\"28E2E5\"/></a:accent4><a:accent5><a:srgbClr val=\"CD0BBC\"/></a:accent5><a:accent6><a:srgbClr val=\"F5C710\"/></a:accent6><a:hlink><a:srgbClr val=\"0000FF\"/></a:hlink><a:folHlink><a:srgbClr val=\"A020F0\"/></a:folHlink></a:clrScheme>"
got <- create_colors_xml()
expect_equal(exp, got)

Expand Down
Loading