No release in over 3 years
Low commit activity in last 3 years
There's a lot of open issues
ActiveStorage integration plugin for the Trestle admin framework.
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Runtime

>= 5.2, < 7
~> 0.9.0, >= 0.9.3
 Project Readme

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

  • Support for has_many_attached attachments
  • Support for Active Storage previews
  • Preview of selected local file (#1)
  • Integration tests

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.