🚀 Big News: Socket Acquires Coana to Bring Reachability Analysis to Every Appsec Team.Learn more
Socket
Sign inDemoInstall
Socket

rails_admin_dropzone

Package Overview
Dependencies
Maintainers
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

rails_admin_dropzone

1.1.1
Rubygems
Version published
Maintainers
1
Created
Source

Custom Action to RailsAdmin with Dropzone.js Multiple File Upload

Gem Version

Easy to use integration of drag&drop files upload via dropzone.js for rails_admin

Screenshot

Dropzone

Imgur

Upload images

Imgur

How to use

Add in Gemfile

gem 'rails_admin_dropzone'

IMPORTANT:

For versions of rails below 5, use version V1.0.1 Tested with Rails 6

class Album < ActiveRecord::Base
  has_many :photos
end

class Photo < ActiveRecord::Base
  belongs_to :album
end

Add this method create_associated_image in your model, example Album, that will contain the upload images and change the associations and attributes

class Album < ActiveRecord::Base
  has_many :photos

  # Method
  def create_associated_image(image)
    photos.create(image: image)
  end
end

Add in config/initialisers/rails_admin.rb

RailsAdmin.config do |config|
  config.actions do
    dashboard
    index
    new

    dropzone do
      only YOUR_MODEL # Example Album
    end

    show
    edit
    delete
  end
end

and "Voalá"

TODO

  • Adjustments to work with Turbolinks 5
  • Add Tests

Contributing

Bug reports and pull requests are welcome on GitHub at https://github.com/luizpicolo/rails_admin_dropzone. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the Contributor Covenant code of conduct.

License

The gem is available as open source under the terms of the MIT License.

FAQs

Package last updated on 15 Dec 2021

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts