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