blob: 8e3facc0171344182c2ea8770e714cc1b9bbb03f [file] [log] [blame]
Hao Zhuce5ee412017-10-23 01:14:38 -04001#' Specify Cell/Text format
Hao Zhubacd2f32017-10-11 14:06:36 -04002#'
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 Zhuce5ee412017-10-23 01:14:38 -04008#' @param bold T/F for font bold.
9#' @param italic T/F for font italic.
10#' @param monospace T/F for font monospaced (verbatim)
Hao Zhuef0c8302018-01-12 13:30:20 -050011#' @param underline A T/F value to control whether the text of the selected row
12#' need to be underlined
13#' @param strikeout A T/F value to control whether the text of the selected row
14#' need to be stricked out.
Hao Zhuce5ee412017-10-23 01:14:38 -040015#' @param color A character string for text color. Here please pay
Hao Zhubacd2f32017-10-11 14:06:36 -040016#' attention to the differences in color codes between HTML and LaTeX.
Hao Zhuce5ee412017-10-23 01:14:38 -040017#' @param background A character string for background color. Here please
18#' pay attention to the differences in color codes between HTML and LaTeX. Also
19#' note that in HTML, background defined in cell_spec won't cover the whole
20#' cell.
21#' @param align A character string for cell alignment. For HTML, possible
22#' values could be `l`, `c`, `r` plus `left`, `center`, `right`, `justify`,
23#' `initial` and `inherit` while for LaTeX, you can only choose
24#' from `l`, `c` & `r`.
Hao Zhu6f362bb2017-10-23 23:21:38 -040025#' @param font_size A numeric input for font size. For HTML, you can also use
Hao Zhu8b32b192017-10-24 14:51:48 -040026#' options including `xx-small`, `x-small`, `small`, `medium`, `large`,
27#' `x-large`, `xx-large`, `smaller`, `larger`, `initial` and `inherit`.
Hao Zhu9ce317e2017-10-12 18:19:55 -040028#' @param angle 0-360, degree that the text will rotate. Can be a vector.
Hao Zhu064990d2017-10-17 18:08:42 -040029#' @param tooltip A vector of strings to be displayed as tooltip.
Hao Zhu6f362bb2017-10-23 23:21:38 -040030#' Obviously, this feature is only available in HTML. Read the package
31#' vignette to see how to use bootstrap tooltip css to improve the loading
32#' speed and look.
33#' @param popover Similar with tooltip but can hold more contents. The best way
34#' to build a popover is through `spec_popover()`. If you only provide a text
35#' string, it will be used as content. Note that You have to enable this
36#' bootstrap module manually. Read the package vignette to see how.
37#' @param link A vector of strings for url links. Can be used together with
38#' tooltip and popover.
Hao Zhudcbdff62020-08-10 13:29:53 -040039#' @param new_tab T/F for whether to open up the new link in new tab.
Hao Zhub1de9672018-01-08 16:29:24 -050040#' @param extra_css Extra css text to be passed into the cell
Hao Zhu6f362bb2017-10-23 23:21:38 -040041#' @param escape T/F value showing whether special characters should be escaped.
Hao Zhu457acb42017-10-14 17:37:02 -040042#' @param background_as_tile T/F value indicating if you want to have round
Hao Zhuce5ee412017-10-23 01:14:38 -040043#' cornered tile as background in HTML.
44#' @param latex_background_in_cell T/F value. It only takes effect in LaTeX
45#' when `background` provided, Default value is `TRUE`. If it's `TRUE`, the
46#' background only works in a table cell. If it's `FALSE`, it works outside of a
47#' table environment.
Hao Zhubacd2f32017-10-11 14:06:36 -040048#'
49#' @export
50cell_spec <- function(x, format,
Hao Zhu6f362bb2017-10-23 23:21:38 -040051 bold = FALSE, italic = FALSE, monospace = FALSE,
Hao Zhuef0c8302018-01-12 13:30:20 -050052 underline = FALSE, strikeout = FALSE,
Hao Zhubacd2f32017-10-11 14:06:36 -040053 color = NULL, background = NULL,
Hao Zhu9ce317e2017-10-12 18:19:55 -040054 align = NULL, font_size = NULL, angle = NULL,
Hao Zhu6f362bb2017-10-23 23:21:38 -040055 tooltip = NULL, popover = NULL, link = NULL,
Hao Zhudcbdff62020-08-10 13:29:53 -040056 new_tab = FALSE, extra_css = NULL,
Hao Zhu6f362bb2017-10-23 23:21:38 -040057 escape = TRUE,
58 background_as_tile = TRUE,
Hao Zhuce5ee412017-10-23 01:14:38 -040059 latex_background_in_cell = TRUE) {
Hao Zhubacd2f32017-10-11 14:06:36 -040060
Hao Zhu1ac13ad2018-01-08 16:12:24 -050061 if (missing(format) || is.null(format)) {
62 format <- getOption('knitr.table.format')
63 }
Hao Zhubacd2f32017-10-11 14:06:36 -040064 if (is.null(format)) {
Hao Zhu9ce317e2017-10-12 18:19:55 -040065 message("Setting cell_spec format as html")
66 format <- "html"
Hao Zhubacd2f32017-10-11 14:06:36 -040067 }
68
69 if (tolower(format) == "html") {
Hao Zhuef0c8302018-01-12 13:30:20 -050070 return(cell_spec_html(x, bold, italic, monospace, underline, strikeout,
Hao Zhu9ce317e2017-10-12 18:19:55 -040071 color, background, align, font_size, angle,
Hao Zhudcbdff62020-08-10 13:29:53 -040072 tooltip, popover, link, new_tab, extra_css,
Hao Zhu6f362bb2017-10-23 23:21:38 -040073 escape, background_as_tile))
Hao Zhubacd2f32017-10-11 14:06:36 -040074 }
75 if (tolower(format) == "latex") {
Hao Zhuef0c8302018-01-12 13:30:20 -050076 return(cell_spec_latex(x, bold, italic, monospace, underline, strikeout,
Hao Zhu6f362bb2017-10-23 23:21:38 -040077 color, background, align, font_size, angle, escape,
Hao Zhuce5ee412017-10-23 01:14:38 -040078 latex_background_in_cell))
Hao Zhubacd2f32017-10-11 14:06:36 -040079 }
80}
81
Hao Zhuef0c8302018-01-12 13:30:20 -050082cell_spec_html <- function(x, bold, italic, monospace, underline, strikeout,
Hao Zhu9ce317e2017-10-12 18:19:55 -040083 color, background, align, font_size, angle,
Hao Zhudcbdff62020-08-10 13:29:53 -040084 tooltip, popover, link, new_tab, extra_css,
Hao Zhu6f362bb2017-10-23 23:21:38 -040085 escape, background_as_tile) {
86 if (escape) x <- escape_html(x)
Hao Zhubacd2f32017-10-11 14:06:36 -040087 cell_style <- NULL
Hao Zhu1ac13ad2018-01-08 16:12:24 -050088 cell_style <- paste(cell_style, ifelse(bold, "font-weight: bold;", ""))
89 cell_style <- paste(cell_style, ifelse(italic, "font-style: italic;", ""))
90 cell_style <- paste(cell_style,
91 ifelse(monospace, "font-family: monospace;", ""))
Hao Zhuef0c8302018-01-12 13:30:20 -050092 cell_style <- paste(cell_style,
93 ifelse(underline, "text-decoration: underline;", ""))
94 cell_style <- paste(cell_style,
95 ifelse(strikeout, "text-decoration: line-through;", ""))
Hao Zhu457acb42017-10-14 17:37:02 -040096 if (!is.null(color)) {
Hao Zhu72917f92019-03-15 18:41:42 -040097 cell_style <- paste0(cell_style, "color: ", html_color(color),
98 " !important;")
Hao Zhu457acb42017-10-14 17:37:02 -040099 }
Hao Zhubacd2f32017-10-11 14:06:36 -0400100 if (!is.null(background)) {
Hao Zhu457acb42017-10-14 17:37:02 -0400101 cell_style <- paste0(
102 cell_style,
103 ifelse(background_as_tile, "border-radius: 4px; ", ""),
104 "padding-right: 4px; padding-left: 4px; ",
Hao Zhu72917f92019-03-15 18:41:42 -0400105 "background-color: ", html_color(background), " !important;"
Hao Zhu457acb42017-10-14 17:37:02 -0400106 )
Hao Zhubacd2f32017-10-11 14:06:36 -0400107 }
Hao Zhub1de9672018-01-08 16:29:24 -0500108 if (!is.null(extra_css)) {
109 cell_style <- paste0(cell_style, extra_css)
110 }
Hao Zhubacd2f32017-10-11 14:06:36 -0400111 if (!is.null(align)) {
Hao Zhu9ce317e2017-10-12 18:19:55 -0400112 cell_style <- paste0(cell_style, "text-align: ", align, ";")
Hao Zhubacd2f32017-10-11 14:06:36 -0400113 }
114 if (!is.null(font_size)) {
Hao Zhu6f362bb2017-10-23 23:21:38 -0400115 if (is.numeric(font_size)) font_size <- paste0(font_size, "px")
Hao Zhuce5ee412017-10-23 01:14:38 -0400116 cell_style <- paste0(cell_style, "font-size: ", font_size, ";")
Hao Zhubacd2f32017-10-11 14:06:36 -0400117 }
Hao Zhu6f362bb2017-10-23 23:21:38 -0400118
119 # favor popover over tooltip
120 if (!is.null(popover)) {
121 if (class(popover) != "ke_popover") popover <- spec_popover(popover)
122 tooltip_n_popover <- popover
123 } else if (!is.null(tooltip)) {
124 if (class(tooltip) != "ke_tooltip") tooltip <- spec_tooltip(tooltip)
125 tooltip_n_popover <- tooltip
126 } else {
127 tooltip_n_popover <- NULL
Hao Zhu9ce317e2017-10-12 18:19:55 -0400128 }
Hao Zhu6f362bb2017-10-23 23:21:38 -0400129
130 if (!is.null(link)) {
Hao Zhudcbdff62020-08-10 13:29:53 -0400131 if (new_tab) {
132 target_blank = 'target="_blank" '
133 } else {
134 target_blank = NULL
135 }
136 x <- paste0('<a href="', link, '" style="', cell_style, '" ', target_blank,
Hao Zhu6f362bb2017-10-23 23:21:38 -0400137 tooltip_n_popover, '>', x, '</a>')
138 } else {
139 x <- paste0('<span style="', cell_style, '" ',
140 tooltip_n_popover, '>', x, '</span>')
141 }
142
143 # if (!is.null(link)) {
144 # x <- paste0('<a href="', link, '" style="', cell_style, '" ',
145 # tooltip_n_popover, '>', x, '</a>')
146 # } else if (!is.null(tooltip_n_popover)) {
147 # x <- paste0('<span style="', cell_style, '" ',
148 # tooltip_n_popover, '>', x, '</span>')
149 # } else {
150 #
151 # }
152
Hao Zhuce5ee412017-10-23 01:14:38 -0400153
154 if (!is.null(angle)) {
155 rotate_css <- paste0("-webkit-transform: rotate(", angle,
156 "deg); -moz-transform: rotate(", angle,
157 "deg); -ms-transform: rotate(", angle,
158 "deg); -o-transform: rotate(", angle,
159 "deg); transform: rotate(", angle,
Hao Zhu6f362bb2017-10-23 23:21:38 -0400160 "deg); display: inline-block; ")
161 x <- paste0('<span style="', rotate_css, '">', x, '</span>')
Hao Zhuce5ee412017-10-23 01:14:38 -0400162 }
Hao Zhu6f362bb2017-10-23 23:21:38 -0400163
164 return(x)
Hao Zhubacd2f32017-10-11 14:06:36 -0400165}
166
Hao Zhuef0c8302018-01-12 13:30:20 -0500167cell_spec_latex <- function(x, bold, italic, monospace, underline, strikeout,
Hao Zhu6f362bb2017-10-23 23:21:38 -0400168 color, background, align, font_size, angle, escape,
Hao Zhuce5ee412017-10-23 01:14:38 -0400169 latex_background_in_cell) {
Hao Zhu6f362bb2017-10-23 23:21:38 -0400170 if (escape) x <- escape_latex(x)
Hao Zhuef0c8302018-01-12 13:30:20 -0500171 x <- sprintf(ifelse(bold, "\\textbf{%s}", "%s"), x)
172 x <- sprintf(ifelse(italic, "\\em{%s}", "%s"), x)
173 x <- sprintf(ifelse(monospace, "\\ttfamily{%s}", "%s"), x)
174 x <- sprintf(ifelse(underline, "\\underline{%s}", "%s"), x)
175 x <- sprintf(ifelse(strikeout, "\\sout{%s}", "%s"), x)
Hao Zhu9ce317e2017-10-12 18:19:55 -0400176 if (!is.null(color)) {
177 color <- latex_color(color)
178 x <- paste0("\\textcolor", color, "{", x, "}")
179 }
180 if (!is.null(background)) {
181 background <- latex_color(background)
Hao Zhuce5ee412017-10-23 01:14:38 -0400182 background_env <- ifelse(latex_background_in_cell, "cellcolor", "colorbox")
183 x <- paste0("\\", background_env, background, "{", x, "}")
Hao Zhu457acb42017-10-14 17:37:02 -0400184 }
Hao Zhuce5ee412017-10-23 01:14:38 -0400185 if (!is.null(font_size)) {
Hao Zhu6f362bb2017-10-23 23:21:38 -0400186 x <- paste0("\\bgroup\\fontsize{", font_size, "}{", as.numeric(font_size) + 2,
187 "}\\selectfont ", x, "\\egroup{}")
Hao Zhuce5ee412017-10-23 01:14:38 -0400188 }
Hao Zhubacd2f32017-10-11 14:06:36 -0400189 if (!is.null(angle)) x <- paste0("\\rotatebox{", angle, "}{", x, "}")
Hao Zhuce5ee412017-10-23 01:14:38 -0400190 if (!is.null(align)) x <- paste0("\\multicolumn{1}{", align, "}{", x, "}")
Hao Zhubacd2f32017-10-11 14:06:36 -0400191 return(x)
192}
Hao Zhuce5ee412017-10-23 01:14:38 -0400193
194#' @rdname cell_spec
195#' @export
196text_spec <- function(x, format,
Hao Zhu6f362bb2017-10-23 23:21:38 -0400197 bold = FALSE, italic = FALSE, monospace = FALSE,
Hao Zhud9fc3d42018-01-12 13:38:14 -0500198 underline = FALSE, strikeout = FALSE,
Hao Zhuce5ee412017-10-23 01:14:38 -0400199 color = NULL, background = NULL,
200 align = NULL, font_size = NULL, angle = NULL,
Hao Zhu6f362bb2017-10-23 23:21:38 -0400201 tooltip = NULL, popover = NULL, link = NULL,
Hao Zhudcbdff62020-08-10 13:29:53 -0400202 new_tab = FALSE, extra_css = NULL,
Hao Zhuc78f8d02018-04-10 20:05:05 -0400203 escape = TRUE,
204 background_as_tile = TRUE,
Hao Zhuce5ee412017-10-23 01:14:38 -0400205 latex_background_in_cell = FALSE) {
Hao Zhud9fc3d42018-01-12 13:38:14 -0500206 cell_spec(x, format, bold, italic, monospace, underline, strikeout,
207 color, background, align,
Hao Zhudcbdff62020-08-10 13:29:53 -0400208 font_size, angle, tooltip, popover, link, new_tab,
Hao Zhuc78f8d02018-04-10 20:05:05 -0400209 extra_css, escape, background_as_tile,
Hao Zhuce5ee412017-10-23 01:14:38 -0400210 latex_background_in_cell)
211}