richardvenneman / trestle-active_storage

β›© ActiveStorage integration plugin for the Trestle admin framework
MIT License
29 stars 36 forks source link
rails ruby trestle

Trestle Active Storage Integration (trestle-active_storage)

Active Storage integration plugin for the Trestle admin framework

Gem

Usage

Define the active storage fields in your Trestle resource and use the active_storage_field field type:

Trestle.resource(:users) do
  active_storage_fields do
    [:avatar, :profile_picture]
  end

  form do |user|
    text_field :first_name
    text_field :last_name
    active_storage_field :avatar
    active_storage_field :profile_picture
  end
end

You can use the active_storage_field field type for both has_one_attached and has_many_attached attachments.

Installation

These instructions assume you have a working Trestle application. To integrate trestle-active_storage, first add it to your application's Gemfile:

gem 'trestle-active_storage'

Run bundle install, and then restart your Rails server.

Active Storage previews

This plugin shows previews of uploaded files if your system meets the requirements. For more information please consult the Ruby on Rails guides.

If you'd like to get up and running on Heroku, check out their documentation on Active Storage on Heroku. The Ruby on Rails Development Dependencies Install guide outlines how to install the neccessary dependencies to get previews working locally.

TODO / Wishlist

Contributors

Thanks goes out to these wonderful people (emoji key):


Richard Venneman

πŸ€” πŸ’» πŸ“– πŸ’¬ πŸ‘€

Aboobacker MK

πŸ€”

Rafael Porto

πŸ’»

Tom Hoen

πŸ› πŸ’»

Bashar Abdullah

πŸ›

Emanuele Barban

πŸ’»

Oleg Kiviljov

πŸ› πŸ’»

This project follows the all-contributors specification.

License

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