blob: faa24655bf5f8602a0dc22cd74567271d734c2aa [file] [log] [blame]
Hao Zhu79f1e2a2017-06-11 20:55:30 -04001#' Specify the look of the selected row
2#'
3#' @description This function allows users to select a row and then specify
Hao Zhu8d347c42017-10-10 13:11:19 -04004#' its look. It can also specify the format of the header row when `row` = 0.
Hao Zhu79f1e2a2017-06-11 20:55:30 -04005#'
6#' @param kable_input Output of `knitr::kable()` with `format` specified
Hao Zhu322de082017-09-11 19:25:29 -04007#' @param row A numeric value or vector indicating which row(s) to be selected. You don't
Hao Zhu909ea382017-06-12 15:43:47 -04008#' need to count in header rows or group labeling rows.
Hao Zhu79f1e2a2017-06-11 20:55:30 -04009#' @param bold A T/F value to control whether the text of the selected row
10#' need to be bolded.
11#' @param italic A T/F value to control whether the text of the selected row
12#' need to be emphasized.
Hao Zhu3e53e602017-07-26 12:40:57 -040013#' @param monospace A T/F value to control whether the text of the selected column
14#' need to be monospaced (verbatim)
Hao Zhu457acb42017-10-14 17:37:02 -040015#' @param color A character string for row text color. For example, "red" or
16#' "#BBBBBB".
Hao Zhu8d347c42017-10-10 13:11:19 -040017#' @param background A character string for row background color. Here please
Hao Zhu53e240f2017-09-04 20:04:29 -040018#' pay attention to the differences in color codes between HTML and LaTeX.
Hao Zhu8d347c42017-10-10 13:11:19 -040019#' @param align A character string for cell alignment. For HTML, possible values could
20#' be `l`, `c`, `r` plus `left`, `center`, `right`, `justify`, `initial` and `inherit`
21#' while for LaTeX, you can only choose from `l`, `c` & `r`.
Hao Zhu8b32b192017-10-24 14:51:48 -040022#' @param font_size A numeric input for font size. For HTML, you can also use
23#' options including `xx-small`, `x-small`, `small`, `medium`, `large`,
24#' `x-large`, `xx-large`, `smaller`, `larger`, `initial` and `inherit`.
Hao Zhubacd2f32017-10-11 14:06:36 -040025#' @param angle 0-360, degree that the text will rotate.
Hao Zhu79f1e2a2017-06-11 20:55:30 -040026#'
27#' @examples x <- knitr::kable(head(mtcars), "html")
Hao Zhu4840bc92017-09-15 15:55:05 -040028#' row_spec(x, 1:2, bold = TRUE, italic = TRUE)
Hao Zhu79f1e2a2017-06-11 20:55:30 -040029#'
30#' @export
31row_spec <- function(kable_input, row,
Hao Zhu669bcd22017-08-19 14:53:40 -040032 bold = FALSE, italic = FALSE, monospace = FALSE,
Hao Zhubacd2f32017-10-11 14:06:36 -040033 color = NULL, background = NULL, align = NULL,
34 font_size = NULL, angle = NULL) {
Hao Zhu79f1e2a2017-06-11 20:55:30 -040035 if (!is.numeric(row)) {
Hao Zhu322de082017-09-11 19:25:29 -040036 stop("row must be numeric. ")
Hao Zhu79f1e2a2017-06-11 20:55:30 -040037 }
38 kable_format <- attr(kable_input, "format")
39 if (!kable_format %in% c("html", "latex")) {
40 message("Currently generic markdown table using pandoc is not supported.")
41 return(kable_input)
42 }
43 if (kable_format == "html") {
Hao Zhu669bcd22017-08-19 14:53:40 -040044 return(row_spec_html(kable_input, row, bold, italic, monospace,
Hao Zhubacd2f32017-10-11 14:06:36 -040045 color, background, align, font_size, angle))
Hao Zhu79f1e2a2017-06-11 20:55:30 -040046 }
47 if (kable_format == "latex") {
Hao Zhu669bcd22017-08-19 14:53:40 -040048 return(row_spec_latex(kable_input, row, bold, italic, monospace,
Hao Zhu8b32b192017-10-24 14:51:48 -040049 color, background, align, font_size, angle))
Hao Zhu79f1e2a2017-06-11 20:55:30 -040050 }
51}
52
Hao Zhu669bcd22017-08-19 14:53:40 -040053row_spec_html <- function(kable_input, row, bold, italic, monospace,
Hao Zhubacd2f32017-10-11 14:06:36 -040054 color, background, align, font_size, angle) {
Hao Zhu79f1e2a2017-06-11 20:55:30 -040055 kable_attrs <- attributes(kable_input)
Hao Zhu558c72f2017-07-24 15:12:00 -040056 kable_xml <- read_kable_as_xml(kable_input)
Hao Zhu79f1e2a2017-06-11 20:55:30 -040057
Hao Zhu8d347c42017-10-10 13:11:19 -040058 if (!is.null(align)) {
59 if (align %in% c("l", "c", "r")) {
60 align <- switch(align, r = "right", c = "center", l = "left")
61 }
Hao Zhu79f1e2a2017-06-11 20:55:30 -040062 }
63
Hao Zhu8d347c42017-10-10 13:11:19 -040064 if (0 %in% row) {
65 kable_thead <- xml_tpart(kable_xml, "thead")
66 original_header_row <- xml_child(kable_thead, length(xml_children(kable_thead)))
67 for (theader_i in 1:length(xml_children(original_header_row))) {
68 target_header_cell <- xml_child(original_header_row, theader_i)
Hao Zhue7c8f702017-10-10 13:22:59 -040069 xml_cell_style(target_header_cell, bold, italic, monospace, color, background,
Hao Zhubacd2f32017-10-11 14:06:36 -040070 align, font_size, angle)
Hao Zhu8d347c42017-10-10 13:11:19 -040071 }
72 row <- row[row != 0]
73 }
74
75 if (length(row) != 0) {
76 kable_tbody <- xml_tpart(kable_xml, "tbody")
77
78 group_header_rows <- attr(kable_input, "group_header_rows")
79 if (!is.null(group_header_rows)) {
80 row <- positions_corrector(row, group_header_rows,
81 length(xml_children(kable_tbody)))
82 }
83
84 for (j in row) {
85 target_row <- xml_child(kable_tbody, j)
86 for (i in 1:length(xml_children(target_row))) {
87 target_cell <- xml_child(target_row, i)
Hao Zhue7c8f702017-10-10 13:22:59 -040088 xml_cell_style(target_cell, bold, italic, monospace, color, background,
Hao Zhubacd2f32017-10-11 14:06:36 -040089 align, font_size, angle)
Hao Zhu322de082017-09-11 19:25:29 -040090 }
Hao Zhu669bcd22017-08-19 14:53:40 -040091 }
Hao Zhu79f1e2a2017-06-11 20:55:30 -040092 }
Hao Zhu322de082017-09-11 19:25:29 -040093
Hao Zhuf2dfd142017-07-24 14:43:28 -040094 out <- as_kable_xml(kable_xml)
Hao Zhu79f1e2a2017-06-11 20:55:30 -040095 attributes(out) <- kable_attrs
96 return(out)
97}
98
Hao Zhubacd2f32017-10-11 14:06:36 -040099xml_cell_style <- function(x, bold, italic, monospace, color, background,
100 align, font_size, angle) {
Hao Zhu8d347c42017-10-10 13:11:19 -0400101 if (bold) {
102 xml_attr(x, "style") <- paste0(xml_attr(x, "style"),
Hao Zhubacd2f32017-10-11 14:06:36 -0400103 "font-weight: bold;")
Hao Zhu8d347c42017-10-10 13:11:19 -0400104 }
105 if (italic) {
106 xml_attr(x, "style") <- paste0(xml_attr(x, "style"),
Hao Zhubacd2f32017-10-11 14:06:36 -0400107 "font-style: italic;")
Hao Zhu8d347c42017-10-10 13:11:19 -0400108 }
109 if (monospace) {
110 xml_attr(x, "style") <- paste0(xml_attr(x, "style"),
Hao Zhubacd2f32017-10-11 14:06:36 -0400111 "font-family: monospace;")
Hao Zhu8d347c42017-10-10 13:11:19 -0400112 }
113 if (!is.null(color)) {
114 xml_attr(x, "style") <- paste0(xml_attr(x, "style"),
Hao Zhubacd2f32017-10-11 14:06:36 -0400115 "color: ", color, ";")
Hao Zhu8d347c42017-10-10 13:11:19 -0400116 }
117 if (!is.null(background)) {
118 xml_attr(x, "style") <- paste0(xml_attr(x, "style"),
Hao Zhubacd2f32017-10-11 14:06:36 -0400119 "background-color: ",
120 background, ";")
Hao Zhu8d347c42017-10-10 13:11:19 -0400121 }
122 if (!is.null(align)) {
123 xml_attr(x, "style") <- paste0(xml_attr(x, "style"),
124 "text-align: ", align, ";")
125 }
Hao Zhue7c8f702017-10-10 13:22:59 -0400126 if (!is.null(font_size)) {
127 xml_attr(x, "style") <- paste0(xml_attr(x, "style"),
128 "font-size: ", font_size, "px;")
129 }
Hao Zhubacd2f32017-10-11 14:06:36 -0400130 if (!is.null(angle)) {
131 xml_attr(x, "style") <- paste0(xml_attr(x, "style"),
132 "-webkit-transform: rotate(", angle,
133 "deg); -moz-transform: rotate(", angle,
134 "deg); -ms-transform: rotate(", angle,
135 "deg); -o-transform: rotate(", angle,
Hao Zhu457acb42017-10-14 17:37:02 -0400136 "deg); transform: rotate(", angle,
Hao Zhubacd2f32017-10-11 14:06:36 -0400137 "deg);")
138 }
Hao Zhu8d347c42017-10-10 13:11:19 -0400139 return(x)
140}
141
Hao Zhua73601b2017-08-19 15:31:51 -0400142row_spec_latex <- function(kable_input, row, bold, italic, monospace,
Hao Zhu8b32b192017-10-24 14:51:48 -0400143 color, background, align, font_size, angle) {
Hao Zhu73604282017-06-11 22:08:48 -0400144 table_info <- magic_mirror(kable_input)
Hao Zhu322de082017-09-11 19:25:29 -0400145 out <- enc2utf8(as.character(kable_input))
Hao Zhu064990d2017-10-17 18:08:42 -0400146
147 if (table_info$duplicated_rows) {
148 dup_fx_out <- fix_duplicated_rows_latex(out, table_info)
149 out <- dup_fx_out[[1]]
150 table_info <- dup_fx_out[[2]]
151 }
152
Hao Zhu322de082017-09-11 19:25:29 -0400153 row <- row + 1
154 for (i in row) {
155 target_row <- table_info$contents[i]
156 new_row <- latex_new_row_builder(target_row, bold, italic, monospace,
Hao Zhu8b32b192017-10-24 14:51:48 -0400157 color, background, align, font_size, angle)
Hao Zhu322de082017-09-11 19:25:29 -0400158 out <- sub(target_row, new_row, out, perl = T)
159 }
160
161 out <- structure(out, format = "latex", class = "knitr_kable")
162 attr(out, "kable_meta") <- table_info
163 return(out)
164}
165
166latex_new_row_builder <- function(target_row, bold, italic, monospace,
Hao Zhu8b32b192017-10-24 14:51:48 -0400167 color, background, align, font_size, angle) {
Hao Zhu73604282017-06-11 22:08:48 -0400168 new_row <- latex_row_cells(target_row)
169 if (bold) {
Hao Zhu35ecd272017-06-11 22:50:42 -0400170 new_row <- lapply(new_row, function(x) {
171 paste0("\\\\bfseries{", x, "}")
172 })
Hao Zhu73604282017-06-11 22:08:48 -0400173 }
174 if (italic) {
Hao Zhu35ecd272017-06-11 22:50:42 -0400175 new_row <- lapply(new_row, function(x) {
176 paste0("\\\\em{", x, "}")
177 })
Hao Zhu73604282017-06-11 22:08:48 -0400178 }
Hao Zhu3e53e602017-07-26 12:40:57 -0400179 if (monospace) {
180 new_row <- lapply(new_row, function(x) {
181 paste0("\\\\ttfamily{", x, "}")
182 })
183 }
Hao Zhua73601b2017-08-19 15:31:51 -0400184
185 if (!is.null(color)) {
186 new_row <- lapply(new_row, function(x) {
Hao Zhu457acb42017-10-14 17:37:02 -0400187 paste0("\\\\textcolor", latex_color(color), "{", x, "}")
Hao Zhua73601b2017-08-19 15:31:51 -0400188 })
189 }
Hao Zhu8b32b192017-10-24 14:51:48 -0400190 if (!is.null(font_size)) {
191 new_row <- lapply(new_row, function(x) {
192 paste0("\\\\begingroup\\\\fontsize{", font_size, "}{",
193 as.numeric(font_size) + 2,
194 "}\\\\selectfont ", x, "\\\\endgroup")})
195 }
Hao Zhu8d347c42017-10-10 13:11:19 -0400196 if (!is.null(align)) {
197 new_row <- lapply(new_row, function(x) {
198 paste0("\\\\multicolumn{1}{", align, "}{", x, "}")
199 })
200 }
Hao Zhubacd2f32017-10-11 14:06:36 -0400201
202 if (!is.null(angle)) {
203 new_row <- lapply(new_row, function(x) {
204 paste0("\\\\rotatebox{", angle, "}{", x, "}")
205 })
206 }
207
Hao Zhu35ecd272017-06-11 22:50:42 -0400208 new_row <- paste(unlist(new_row), collapse = " & ")
Hao Zhu73604282017-06-11 22:08:48 -0400209
Hao Zhua73601b2017-08-19 15:31:51 -0400210 if (!is.null(background)) {
211 new_row <- paste0("\\\\rowcolor{", background, "} ", new_row)
212 }
213
Hao Zhu322de082017-09-11 19:25:29 -0400214 return(new_row)
Hao Zhu73604282017-06-11 22:08:48 -0400215}