shinybulma icon indicating copy to clipboard operation
shinybulma copied to clipboard

Implement JS [helpers](https://bulmajs.tomerbe.co.uk)

Open DivadNojnarg opened this issue 6 years ago • 6 comments

DivadNojnarg avatar Oct 14 '19 06:10 DivadNojnarg

@JohnCoene : after implementing the JS helpers, do we target a CRAN release end of the year?

DivadNojnarg avatar Jun 01 '20 12:06 DivadNojnarg

Sounds like a good idea! Will look into it this summer. A full review of the package is probably overdue as well.

JohnCoene avatar Jun 01 '20 12:06 JohnCoene

Updated JS link

DivadNojnarg avatar Jun 01 '20 13:06 DivadNojnarg

other links: https://demo.creativebulma.net/

DivadNojnarg avatar Jun 01 '20 13:06 DivadNojnarg

WIP: see 21f7483

DivadNojnarg avatar Aug 23 '20 16:08 DivadNojnarg

poke @JohnCoene

library(shiny)
library(shinybulma)

ui <- bulmaPage(
  tags$head(
    tags$script(
      "$(function() {
        Bulma().alert({
    type: 'danger',
    title: 'This is an alert!',
    body: 'Ooohh what button you gonna click?',
    confirm: 'Confirm it!',
    cancel: 'Maybe not'
  });
      });
      "
    )
  )
)

server <- function(input, output, session) {
  
}

shinyApp(ui, server)

Screenshot 2020-08-23 at 18 12 37

DivadNojnarg avatar Aug 23 '20 16:08 DivadNojnarg