@gothassos/uppy-activestorage-upload
v1.0.2
Published
Rails ActiveStorage DirectUpload engine for Uppy
Downloads
124
Readme
uppy-activestorage-upload
The ActiveStorage Upload plugin handles Ruby on Rails ActiveStorage direct uploads with Uppy.
Example
Add this line to your HEAD tag.
<%= tag.meta name: "direct-upload-url", content: rails_direct_uploads_path %>
Then use ActiveStorageUpload
as an Uppy plugin in your Javascript pack.
import Uppy from '@uppy/core'
import ActiveStorageUpload from '@gothassos/uppy-activestorage-upload'
let uppy = new Uppy(options)
uppy.use(ActiveStorageUpload, {
directUploadUrl: document.querySelector("meta[name='direct-upload-url']").getAttribute("content")
})
Installation
yarn add @gothassos/uppy-activestorage-upload
# or
npm install @gothassos/uppy-activestorage-upload --save
We recommend installing from yarn and then using a module bundler such as esbuild.