Hao Zhu | ce5ee41 | 2017-10-23 01:14:38 -0400 | [diff] [blame] | 1 | #' Specify Cell/Text format |
Hao Zhu | bacd2f3 | 2017-10-11 14:06:36 -0400 | [diff] [blame] | 2 | #' |
| 3 | #' @description Specify Cell format before it gets into kable |
| 4 | #' |
| 5 | #' @param x Things to be formated. It could be a vector of numbers or strings. |
| 6 | #' @param format Either "html" or "latex". It can also be set through |
| 7 | #' `option(knitr.table.format)`, same as `knitr::kable()`. |
Hao Zhu | ce5ee41 | 2017-10-23 01:14:38 -0400 | [diff] [blame] | 8 | #' @param bold T/F for font bold. |
| 9 | #' @param italic T/F for font italic. |
| 10 | #' @param monospace T/F for font monospaced (verbatim) |
| 11 | #' @param color A character string for text color. Here please pay |
Hao Zhu | bacd2f3 | 2017-10-11 14:06:36 -0400 | [diff] [blame] | 12 | #' attention to the differences in color codes between HTML and LaTeX. |
Hao Zhu | ce5ee41 | 2017-10-23 01:14:38 -0400 | [diff] [blame] | 13 | #' @param background A character string for background color. Here please |
| 14 | #' pay attention to the differences in color codes between HTML and LaTeX. Also |
| 15 | #' note that in HTML, background defined in cell_spec won't cover the whole |
| 16 | #' cell. |
| 17 | #' @param align A character string for cell alignment. For HTML, possible |
| 18 | #' values could be `l`, `c`, `r` plus `left`, `center`, `right`, `justify`, |
| 19 | #' `initial` and `inherit` while for LaTeX, you can only choose |
| 20 | #' from `l`, `c` & `r`. |
Hao Zhu | 6f362bb | 2017-10-23 23:21:38 -0400 | [diff] [blame] | 21 | #' @param font_size A numeric input for font size. For HTML, you can also use |
| 22 | #' options |
Hao Zhu | 9ce317e | 2017-10-12 18:19:55 -0400 | [diff] [blame] | 23 | #' @param angle 0-360, degree that the text will rotate. Can be a vector. |
Hao Zhu | 064990d | 2017-10-17 18:08:42 -0400 | [diff] [blame] | 24 | #' @param tooltip A vector of strings to be displayed as tooltip. |
Hao Zhu | 6f362bb | 2017-10-23 23:21:38 -0400 | [diff] [blame] | 25 | #' Obviously, this feature is only available in HTML. Read the package |
| 26 | #' vignette to see how to use bootstrap tooltip css to improve the loading |
| 27 | #' speed and look. |
| 28 | #' @param popover Similar with tooltip but can hold more contents. The best way |
| 29 | #' to build a popover is through `spec_popover()`. If you only provide a text |
| 30 | #' string, it will be used as content. Note that You have to enable this |
| 31 | #' bootstrap module manually. Read the package vignette to see how. |
| 32 | #' @param link A vector of strings for url links. Can be used together with |
| 33 | #' tooltip and popover. |
| 34 | #' @param escape T/F value showing whether special characters should be escaped. |
Hao Zhu | 457acb4 | 2017-10-14 17:37:02 -0400 | [diff] [blame] | 35 | #' @param background_as_tile T/F value indicating if you want to have round |
Hao Zhu | ce5ee41 | 2017-10-23 01:14:38 -0400 | [diff] [blame] | 36 | #' cornered tile as background in HTML. |
| 37 | #' @param latex_background_in_cell T/F value. It only takes effect in LaTeX |
| 38 | #' when `background` provided, Default value is `TRUE`. If it's `TRUE`, the |
| 39 | #' background only works in a table cell. If it's `FALSE`, it works outside of a |
| 40 | #' table environment. |
Hao Zhu | bacd2f3 | 2017-10-11 14:06:36 -0400 | [diff] [blame] | 41 | #' |
| 42 | #' @export |
| 43 | cell_spec <- function(x, format, |
Hao Zhu | 6f362bb | 2017-10-23 23:21:38 -0400 | [diff] [blame] | 44 | bold = FALSE, italic = FALSE, monospace = FALSE, |
Hao Zhu | bacd2f3 | 2017-10-11 14:06:36 -0400 | [diff] [blame] | 45 | color = NULL, background = NULL, |
Hao Zhu | 9ce317e | 2017-10-12 18:19:55 -0400 | [diff] [blame] | 46 | align = NULL, font_size = NULL, angle = NULL, |
Hao Zhu | 6f362bb | 2017-10-23 23:21:38 -0400 | [diff] [blame] | 47 | tooltip = NULL, popover = NULL, link = NULL, |
| 48 | escape = TRUE, |
| 49 | background_as_tile = TRUE, |
Hao Zhu | ce5ee41 | 2017-10-23 01:14:38 -0400 | [diff] [blame] | 50 | latex_background_in_cell = TRUE) { |
Hao Zhu | bacd2f3 | 2017-10-11 14:06:36 -0400 | [diff] [blame] | 51 | |
| 52 | if (missing(format) || is.null(format)) format = getOption('knitr.table.format') |
| 53 | if (is.null(format)) { |
Hao Zhu | 9ce317e | 2017-10-12 18:19:55 -0400 | [diff] [blame] | 54 | message("Setting cell_spec format as html") |
| 55 | format <- "html" |
Hao Zhu | bacd2f3 | 2017-10-11 14:06:36 -0400 | [diff] [blame] | 56 | } |
| 57 | |
| 58 | if (tolower(format) == "html") { |
| 59 | return(cell_spec_html(x, bold, italic, monospace, |
Hao Zhu | 9ce317e | 2017-10-12 18:19:55 -0400 | [diff] [blame] | 60 | color, background, align, font_size, angle, |
Hao Zhu | 6f362bb | 2017-10-23 23:21:38 -0400 | [diff] [blame] | 61 | tooltip, popover, link, |
| 62 | escape, background_as_tile)) |
Hao Zhu | bacd2f3 | 2017-10-11 14:06:36 -0400 | [diff] [blame] | 63 | } |
| 64 | if (tolower(format) == "latex") { |
| 65 | return(cell_spec_latex(x, bold, italic, monospace, |
Hao Zhu | 6f362bb | 2017-10-23 23:21:38 -0400 | [diff] [blame] | 66 | color, background, align, font_size, angle, escape, |
Hao Zhu | ce5ee41 | 2017-10-23 01:14:38 -0400 | [diff] [blame] | 67 | latex_background_in_cell)) |
Hao Zhu | bacd2f3 | 2017-10-11 14:06:36 -0400 | [diff] [blame] | 68 | } |
| 69 | } |
| 70 | |
| 71 | cell_spec_html <- function(x, bold, italic, monospace, |
Hao Zhu | 9ce317e | 2017-10-12 18:19:55 -0400 | [diff] [blame] | 72 | color, background, align, font_size, angle, |
Hao Zhu | 6f362bb | 2017-10-23 23:21:38 -0400 | [diff] [blame] | 73 | tooltip, popover, link, |
| 74 | escape, background_as_tile) { |
| 75 | if (escape) x <- escape_html(x) |
Hao Zhu | bacd2f3 | 2017-10-11 14:06:36 -0400 | [diff] [blame] | 76 | cell_style <- NULL |
| 77 | if (bold) cell_style <- paste(cell_style,"font-weight: bold;") |
| 78 | if (italic) cell_style <- paste(cell_style, "font-style: italic;") |
| 79 | if (monospace) cell_style <- paste(cell_style, "font-family: monospace;") |
Hao Zhu | 457acb4 | 2017-10-14 17:37:02 -0400 | [diff] [blame] | 80 | if (!is.null(color)) { |
| 81 | cell_style <- paste0(cell_style, "color: ", html_color(color), ";") |
| 82 | } |
Hao Zhu | bacd2f3 | 2017-10-11 14:06:36 -0400 | [diff] [blame] | 83 | if (!is.null(background)) { |
Hao Zhu | 457acb4 | 2017-10-14 17:37:02 -0400 | [diff] [blame] | 84 | cell_style <- paste0( |
| 85 | cell_style, |
| 86 | ifelse(background_as_tile, "border-radius: 4px; ", ""), |
| 87 | "padding-right: 4px; padding-left: 4px; ", |
| 88 | "background-color: ", html_color(background), ";" |
| 89 | ) |
Hao Zhu | bacd2f3 | 2017-10-11 14:06:36 -0400 | [diff] [blame] | 90 | } |
| 91 | if (!is.null(align)) { |
Hao Zhu | 9ce317e | 2017-10-12 18:19:55 -0400 | [diff] [blame] | 92 | cell_style <- paste0(cell_style, "text-align: ", align, ";") |
Hao Zhu | bacd2f3 | 2017-10-11 14:06:36 -0400 | [diff] [blame] | 93 | } |
| 94 | if (!is.null(font_size)) { |
Hao Zhu | 6f362bb | 2017-10-23 23:21:38 -0400 | [diff] [blame] | 95 | if (is.numeric(font_size)) font_size <- paste0(font_size, "px") |
Hao Zhu | ce5ee41 | 2017-10-23 01:14:38 -0400 | [diff] [blame] | 96 | cell_style <- paste0(cell_style, "font-size: ", font_size, ";") |
Hao Zhu | bacd2f3 | 2017-10-11 14:06:36 -0400 | [diff] [blame] | 97 | } |
Hao Zhu | 6f362bb | 2017-10-23 23:21:38 -0400 | [diff] [blame] | 98 | |
| 99 | # favor popover over tooltip |
| 100 | if (!is.null(popover)) { |
| 101 | if (class(popover) != "ke_popover") popover <- spec_popover(popover) |
| 102 | tooltip_n_popover <- popover |
| 103 | } else if (!is.null(tooltip)) { |
| 104 | if (class(tooltip) != "ke_tooltip") tooltip <- spec_tooltip(tooltip) |
| 105 | tooltip_n_popover <- tooltip |
| 106 | } else { |
| 107 | tooltip_n_popover <- NULL |
Hao Zhu | 9ce317e | 2017-10-12 18:19:55 -0400 | [diff] [blame] | 108 | } |
Hao Zhu | 6f362bb | 2017-10-23 23:21:38 -0400 | [diff] [blame] | 109 | |
| 110 | if (!is.null(link)) { |
| 111 | x <- paste0('<a href="', link, '" style="', cell_style, '" ', |
| 112 | tooltip_n_popover, '>', x, '</a>') |
| 113 | } else { |
| 114 | x <- paste0('<span style="', cell_style, '" ', |
| 115 | tooltip_n_popover, '>', x, '</span>') |
| 116 | } |
| 117 | |
| 118 | # if (!is.null(link)) { |
| 119 | # x <- paste0('<a href="', link, '" style="', cell_style, '" ', |
| 120 | # tooltip_n_popover, '>', x, '</a>') |
| 121 | # } else if (!is.null(tooltip_n_popover)) { |
| 122 | # x <- paste0('<span style="', cell_style, '" ', |
| 123 | # tooltip_n_popover, '>', x, '</span>') |
| 124 | # } else { |
| 125 | # |
| 126 | # } |
| 127 | |
Hao Zhu | ce5ee41 | 2017-10-23 01:14:38 -0400 | [diff] [blame] | 128 | |
| 129 | if (!is.null(angle)) { |
| 130 | rotate_css <- paste0("-webkit-transform: rotate(", angle, |
| 131 | "deg); -moz-transform: rotate(", angle, |
| 132 | "deg); -ms-transform: rotate(", angle, |
| 133 | "deg); -o-transform: rotate(", angle, |
| 134 | "deg); transform: rotate(", angle, |
Hao Zhu | 6f362bb | 2017-10-23 23:21:38 -0400 | [diff] [blame] | 135 | "deg); display: inline-block; ") |
| 136 | x <- paste0('<span style="', rotate_css, '">', x, '</span>') |
Hao Zhu | ce5ee41 | 2017-10-23 01:14:38 -0400 | [diff] [blame] | 137 | } |
Hao Zhu | 6f362bb | 2017-10-23 23:21:38 -0400 | [diff] [blame] | 138 | |
| 139 | return(x) |
Hao Zhu | bacd2f3 | 2017-10-11 14:06:36 -0400 | [diff] [blame] | 140 | } |
| 141 | |
| 142 | cell_spec_latex <- function(x, bold, italic, monospace, |
Hao Zhu | 6f362bb | 2017-10-23 23:21:38 -0400 | [diff] [blame] | 143 | color, background, align, font_size, angle, escape, |
Hao Zhu | ce5ee41 | 2017-10-23 01:14:38 -0400 | [diff] [blame] | 144 | latex_background_in_cell) { |
Hao Zhu | 6f362bb | 2017-10-23 23:21:38 -0400 | [diff] [blame] | 145 | if (escape) x <- escape_latex(x) |
Hao Zhu | bacd2f3 | 2017-10-11 14:06:36 -0400 | [diff] [blame] | 146 | if (bold) x <- paste0("\\bfseries{", x, "}") |
Hao Zhu | ce5ee41 | 2017-10-23 01:14:38 -0400 | [diff] [blame] | 147 | if (italic) x <- paste0("\\em{", x, "}") |
Hao Zhu | bacd2f3 | 2017-10-11 14:06:36 -0400 | [diff] [blame] | 148 | if (monospace) x <- paste0("\\ttfamily{", x, "}") |
Hao Zhu | 9ce317e | 2017-10-12 18:19:55 -0400 | [diff] [blame] | 149 | if (!is.null(color)) { |
| 150 | color <- latex_color(color) |
| 151 | x <- paste0("\\textcolor", color, "{", x, "}") |
| 152 | } |
| 153 | if (!is.null(background)) { |
| 154 | background <- latex_color(background) |
Hao Zhu | ce5ee41 | 2017-10-23 01:14:38 -0400 | [diff] [blame] | 155 | background_env <- ifelse(latex_background_in_cell, "cellcolor", "colorbox") |
| 156 | x <- paste0("\\", background_env, background, "{", x, "}") |
Hao Zhu | 457acb4 | 2017-10-14 17:37:02 -0400 | [diff] [blame] | 157 | } |
Hao Zhu | ce5ee41 | 2017-10-23 01:14:38 -0400 | [diff] [blame] | 158 | if (!is.null(font_size)) { |
Hao Zhu | 6f362bb | 2017-10-23 23:21:38 -0400 | [diff] [blame] | 159 | x <- paste0("\\bgroup\\fontsize{", font_size, "}{", as.numeric(font_size) + 2, |
| 160 | "}\\selectfont ", x, "\\egroup{}") |
Hao Zhu | ce5ee41 | 2017-10-23 01:14:38 -0400 | [diff] [blame] | 161 | } |
Hao Zhu | bacd2f3 | 2017-10-11 14:06:36 -0400 | [diff] [blame] | 162 | if (!is.null(angle)) x <- paste0("\\rotatebox{", angle, "}{", x, "}") |
Hao Zhu | ce5ee41 | 2017-10-23 01:14:38 -0400 | [diff] [blame] | 163 | if (!is.null(align)) x <- paste0("\\multicolumn{1}{", align, "}{", x, "}") |
Hao Zhu | bacd2f3 | 2017-10-11 14:06:36 -0400 | [diff] [blame] | 164 | return(x) |
| 165 | } |
Hao Zhu | ce5ee41 | 2017-10-23 01:14:38 -0400 | [diff] [blame] | 166 | |
| 167 | #' @rdname cell_spec |
| 168 | #' @export |
| 169 | text_spec <- function(x, format, |
Hao Zhu | 6f362bb | 2017-10-23 23:21:38 -0400 | [diff] [blame] | 170 | bold = FALSE, italic = FALSE, monospace = FALSE, |
Hao Zhu | ce5ee41 | 2017-10-23 01:14:38 -0400 | [diff] [blame] | 171 | color = NULL, background = NULL, |
| 172 | align = NULL, font_size = NULL, angle = NULL, |
Hao Zhu | 6f362bb | 2017-10-23 23:21:38 -0400 | [diff] [blame] | 173 | tooltip = NULL, popover = NULL, link = NULL, |
| 174 | escape = TRUE, background_as_tile = TRUE, |
Hao Zhu | ce5ee41 | 2017-10-23 01:14:38 -0400 | [diff] [blame] | 175 | latex_background_in_cell = FALSE) { |
| 176 | cell_spec(x, format, bold, italic, monospace, color, background, align, |
Hao Zhu | 6f362bb | 2017-10-23 23:21:38 -0400 | [diff] [blame] | 177 | font_size, angle, tooltip, popover, link, escape, background_as_tile, |
Hao Zhu | ce5ee41 | 2017-10-23 01:14:38 -0400 | [diff] [blame] | 178 | latex_background_in_cell) |
| 179 | } |