Last active
June 22, 2021 13:46
-
-
Save MayaGans/f10dea11471ba1afa380e680b68a236a to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /* | |
| Copyright (c) 2013-2020 NDP Software, Andrew J. Peterson | |
| * https://github.com/ndp/align-column | |
| */ | |
| $.fn.alignColumn = function (columns, options) { | |
| var config = $.extend({}, { | |
| addedCellClass: 'added', | |
| skipTHs: true | |
| }, options); | |
| if (!jQuery.isArray(columns)) { | |
| columns = [columns]; | |
| } | |
| columns = columns.sort().reverse(); | |
| if (config.debug) { | |
| console.log('Adjusting columns ', columns); | |
| } | |
| var splitter; | |
| if (typeof config.center == 'string') { | |
| if (config.debug) { | |
| console.log('Splitting by ', config.center); | |
| } | |
| splitter = function (text) { | |
| if(text === undefined) return ''; | |
| var s = text.split(config.center); | |
| return (s.length == 2) ? [s[0], config.center + s[1]] : [text]; | |
| } | |
| } else if (jQuery.isFunction(config.center)) { | |
| if (config.debug) { | |
| console.log('Splitting using fn'); | |
| } | |
| splitter = config.center; | |
| } else { | |
| if (config.debug) { | |
| console.log('Splitting using decimal align'); | |
| } | |
| splitter = function (text) { | |
| if (!text) return ['']; | |
| var match; | |
| if (text.indexOf('.') == -1) { | |
| match = text.match(/^(\S+[\d]+)(.*)$/); | |
| } else { | |
| match = text.match(/^([^\.]+)(\..*)$/); | |
| } | |
| return match ? [match[1], match[2] || ''] : [text, '']; | |
| }; | |
| } | |
| return $(this).each(function () { | |
| var $table = $(this).css('border-collapse', 'collapse'); // no way around this! | |
| var $rows = $table.find('tr'); | |
| $rows.each(function () { | |
| var cells = $(this).find('>td,>th').not('.' + config.addedCellClass).get(); | |
| for (var index = 0; index < columns.length; index++) { | |
| var colIndex = columns[index], | |
| $cell = $(cells[colIndex]), | |
| text = $cell.html(), | |
| pieces = splitter(text), | |
| existingClasses = $cell.attr('class'); | |
| if (config.debug) { | |
| console.log("Split '" + text + "' into " + pieces.length + " pieces: ", "" + pieces[0], "" + pieces[1]); | |
| } | |
| if (pieces.length === 2 && | |
| (!config.skipTHs || $cell.get(0).nodeName == 'TD')) { | |
| if (' ' == pieces[0][pieces[0].length - 1]) { | |
| pieces[0] = pieces[0].slice(0, pieces[0].length - 1) + ' '; | |
| } | |
| $cell.html(pieces[0]). | |
| css({textAlign: 'right', paddingRight: 0, borderRight: 'none'}); | |
| $('<td></td>'). | |
| html(pieces[1]). | |
| css({textAlign: 'left', paddingLeft: 0, borderLeft: 'none'}). | |
| addClass(config.addedCellClass). | |
| addClass(existingClasses). | |
| insertAfter($cell); | |
| } else { | |
| $cell.attr('colspan', 2); | |
| } | |
| } | |
| }); | |
| }); | |
| }; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| library(shiny) | |
| test <- data.frame( | |
| a = c(rep("a", 3), rep("b", 3)), | |
| b = c(10000, 10, 1.1, 2000.3000, 2003.01, 200), | |
| c = c(10000, 10, 1.1, 2000.03, 2003.001, 200) | |
| ) | |
| ui <- fluidPage( | |
| tags$head(tags$script(src = "alignColumn.js")), | |
| tags$head(tags$script(src = "decimalAlign.js")), | |
| DT::dataTableOutput("example") | |
| ) | |
| server <- function(input, output, session) { | |
| output$example <- DT::renderDT({ | |
| dtable <- DT::datatable(test, | |
| filter = "top", | |
| rownames = FALSE, | |
| options = list( | |
| drawCallback = DT::JS("decimalAlign({id: 'example', columns: [1,2]})") | |
| ) | |
| ) | |
| dep1 <- htmltools::htmlDependency("align-columns", | |
| "1.0.0", | |
| src = "www", | |
| script = "alignColumn.js") | |
| dep2 <- htmltools::htmlDependency("decimal-align", | |
| "1.0.0", | |
| src = "www", | |
| script = "decimalAlign.js") | |
| dtable$dependencies <- c(dtable$dependencies, list(dep1, dep2)) | |
| dtable | |
| }) | |
| } | |
| shinyApp(ui = ui, server = server) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| decimalAlign = function(message) { | |
| console.log(message) | |
| console.log("its working") | |
| // I don't want to use setTimeout here, do I have to? | |
| setTimeout(function(){ | |
| $('#' + message.id).alignColumn(message.columns) | |
| }, 200); | |
| } | |
| Shiny.addCustomMessageHandler("decimal_align", decimalAlign) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment