Giter Site home page Giter Site logo

Comments (1)

max-poltora avatar max-poltora commented on June 20, 2024

Hi, everyone! I guess I have found the workaround. However, I believe, it can still be improved. Below is the code for those, who might be interested. @rdrop2 developers, maybe you can take it into consideration and include the feature in upcoming versions? So here is what I have done: I have modified the original drop_download code as follows:

drop_download_shinyhttr <- function(path, local_path = NULL, overwrite = FALSE, progress = interactive(), verbose = interactive(), dtoken, session, id) {
	if (!grepl("^(id|rev):", path)) path <- add_slashes(path)
	if (is.null(local_path)) {
		local_path = basename(path)
	} else if (dir.exists(local_path)) {
		local_path <- file.path(local_path, basename(path))
	}

	url <- "https://content.dropboxapi.com/2/files/download"

	req <- httr::POST(
		url = url,
		httr::config(token = dtoken),
		httr::add_headers("Dropbox-API-Arg" = jsonlite::toJSON(
			list(path = path),
			auto_unbox = TRUE
		)),
		if (progress) shinyhttr::progress(session=session, id=id),
			httr::write_disk(local_path, overwrite)
		)

	httr::stop_for_status(req)

	if (verbose) {
		size <- file.size(local_path)
		class(size) <- "object_size"

		message(sprintf(
			"Downloaded %s to %s: %s on disk",
			path,
			local_path,
			format(size, units = "auto")
		))
	}

	TRUE
}

And then run my app, but with slight modification in server function:

server <- 
function(input, output, session) {
	
	observeEvent(input$click, {
		img = magick::image_read(input$upload$datapath)
		fileName = sprintf("%s.jpg", gsub(":|-| ", "", Sys.time()))
		img %>% saveImage(fileName)

		output$output = renderImage({
			drop_download_shinyhttr(path = paste0(outputDir, "/", fileName), progress = TRUE, dtoken = token, session=session, id="pb")
			list(src = fileName, contentType = "image/jpeg", style = paste0("width: 100%"))
		}, deleteFile=TRUE)
	})
}

from rdrop2.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.