administrate-field-active_storage 0.1.3 → 0.1.4

Sign up to get free protection for your applications and to get access to all the features.
Files changed (100) hide show
  1. checksums.yaml +4 -4
  2. data/.gitignore +1 -0
  3. data/README.md +36 -14
  4. data/administrate-field-active_storage.gemspec +1 -1
  5. data/app/views/fields/active_storage/_form.html.erb +7 -0
  6. data/app/views/fields/active_storage/_item.html.erb +34 -1
  7. data/app/views/fields/active_storage/_items.html.erb +25 -0
  8. data/app/views/fields/active_storage/_show.html.erb +2 -8
  9. data/contribute.md +5 -1
  10. data/example-project/.gitignore +30 -0
  11. data/example-project/.ruby-version +1 -0
  12. data/example-project/Gemfile +66 -0
  13. data/example-project/Gemfile.lock +263 -0
  14. data/example-project/README.md +24 -0
  15. data/example-project/Rakefile +6 -0
  16. data/example-project/app/assets/config/manifest.js +3 -0
  17. data/example-project/app/assets/images/.keep +0 -0
  18. data/example-project/app/assets/javascripts/application.js +16 -0
  19. data/example-project/app/assets/javascripts/cable.js +13 -0
  20. data/example-project/app/assets/javascripts/channels/.keep +0 -0
  21. data/example-project/app/assets/stylesheets/application.css +15 -0
  22. data/example-project/app/channels/application_cable/channel.rb +4 -0
  23. data/example-project/app/channels/application_cable/connection.rb +4 -0
  24. data/example-project/app/controllers/admin/application_controller.rb +21 -0
  25. data/example-project/app/controllers/admin/users_controller.rb +21 -0
  26. data/example-project/app/controllers/application_controller.rb +2 -0
  27. data/example-project/app/controllers/concerns/.keep +0 -0
  28. data/example-project/app/controllers/users_controller.rb +7 -0
  29. data/example-project/app/dashboards/user_dashboard.rb +58 -0
  30. data/example-project/app/helpers/application_helper.rb +2 -0
  31. data/example-project/app/jobs/application_job.rb +2 -0
  32. data/example-project/app/mailers/application_mailer.rb +4 -0
  33. data/example-project/app/models/application_record.rb +3 -0
  34. data/example-project/app/models/concerns/.keep +0 -0
  35. data/example-project/app/models/user.rb +3 -0
  36. data/example-project/app/views/layouts/application.html.erb +15 -0
  37. data/example-project/app/views/layouts/mailer.html.erb +13 -0
  38. data/example-project/app/views/layouts/mailer.text.erb +1 -0
  39. data/example-project/bin/bundle +3 -0
  40. data/example-project/bin/rails +9 -0
  41. data/example-project/bin/rake +9 -0
  42. data/example-project/bin/setup +36 -0
  43. data/example-project/bin/spring +17 -0
  44. data/example-project/bin/update +31 -0
  45. data/example-project/bin/yarn +11 -0
  46. data/example-project/config.ru +5 -0
  47. data/example-project/config/application.rb +19 -0
  48. data/example-project/config/boot.rb +4 -0
  49. data/example-project/config/cable.yml +10 -0
  50. data/example-project/config/credentials.yml.enc +1 -0
  51. data/example-project/config/database.yml +25 -0
  52. data/example-project/config/environment.rb +5 -0
  53. data/example-project/config/environments/development.rb +61 -0
  54. data/example-project/config/environments/production.rb +94 -0
  55. data/example-project/config/environments/test.rb +46 -0
  56. data/example-project/config/initializers/application_controller_renderer.rb +8 -0
  57. data/example-project/config/initializers/assets.rb +14 -0
  58. data/example-project/config/initializers/backtrace_silencers.rb +7 -0
  59. data/example-project/config/initializers/content_security_policy.rb +25 -0
  60. data/example-project/config/initializers/cookies_serializer.rb +5 -0
  61. data/example-project/config/initializers/filter_parameter_logging.rb +4 -0
  62. data/example-project/config/initializers/inflections.rb +16 -0
  63. data/example-project/config/initializers/mime_types.rb +4 -0
  64. data/example-project/config/initializers/wrap_parameters.rb +14 -0
  65. data/example-project/config/locales/en.yml +33 -0
  66. data/example-project/config/puma.rb +34 -0
  67. data/example-project/config/routes.rb +9 -0
  68. data/example-project/config/spring.rb +6 -0
  69. data/example-project/config/storage.yml +34 -0
  70. data/example-project/db/migrate/20181013145025_create_users.rb +9 -0
  71. data/example-project/db/migrate/20181221134334_create_active_storage_tables.active_storage.rb +26 -0
  72. data/example-project/db/schema.rb +42 -0
  73. data/example-project/db/seeds.rb +7 -0
  74. data/example-project/lib/assets/.keep +0 -0
  75. data/example-project/lib/tasks/.keep +0 -0
  76. data/example-project/log/.keep +0 -0
  77. data/example-project/package.json +5 -0
  78. data/example-project/public/404.html +67 -0
  79. data/example-project/public/422.html +67 -0
  80. data/example-project/public/500.html +66 -0
  81. data/example-project/public/apple-touch-icon-precomposed.png +0 -0
  82. data/example-project/public/apple-touch-icon.png +0 -0
  83. data/example-project/public/favicon.ico +0 -0
  84. data/example-project/public/robots.txt +1 -0
  85. data/example-project/test/application_system_test_case.rb +5 -0
  86. data/example-project/test/controllers/.keep +0 -0
  87. data/example-project/test/fixtures/.keep +0 -0
  88. data/example-project/test/fixtures/files/.keep +0 -0
  89. data/example-project/test/fixtures/users.yml +7 -0
  90. data/example-project/test/helpers/.keep +0 -0
  91. data/example-project/test/integration/.keep +0 -0
  92. data/example-project/test/mailers/.keep +0 -0
  93. data/example-project/test/models/.keep +0 -0
  94. data/example-project/test/models/user_test.rb +7 -0
  95. data/example-project/test/system/.keep +0 -0
  96. data/example-project/test/test_helper.rb +10 -0
  97. data/example-project/tmp/.keep +0 -0
  98. data/example-project/vendor/.keep +0 -0
  99. data/lib/administrate/field/active_storage.rb +15 -0
  100. metadata +92 -2
@@ -0,0 +1,24 @@
1
+ # README
2
+
3
+ This README would normally document whatever steps are necessary to get the
4
+ application up and running.
5
+
6
+ Things you may want to cover:
7
+
8
+ * Ruby version
9
+
10
+ * System dependencies
11
+
12
+ * Configuration
13
+
14
+ * Database creation
15
+
16
+ * Database initialization
17
+
18
+ * How to run the test suite
19
+
20
+ * Services (job queues, cache servers, search engines, etc.)
21
+
22
+ * Deployment instructions
23
+
24
+ * ...
@@ -0,0 +1,6 @@
1
+ # Add your own tasks in files placed in lib/tasks ending in .rake,
2
+ # for example lib/tasks/capistrano.rake, and they will automatically be available to Rake.
3
+
4
+ require_relative 'config/application'
5
+
6
+ Rails.application.load_tasks
@@ -0,0 +1,3 @@
1
+ //= link_tree ../images
2
+ //= link_directory ../javascripts .js
3
+ //= link_directory ../stylesheets .css
File without changes
@@ -0,0 +1,16 @@
1
+ // This is a manifest file that'll be compiled into application.js, which will include all the files
2
+ // listed below.
3
+ //
4
+ // Any JavaScript/Coffee file within this directory, lib/assets/javascripts, or any plugin's
5
+ // vendor/assets/javascripts directory can be referenced here using a relative path.
6
+ //
7
+ // It's not advisable to add code directly here, but if you do, it'll appear at the bottom of the
8
+ // compiled file. JavaScript code in this file should be added after the last require_* statement.
9
+ //
10
+ // Read Sprockets README (https://github.com/rails/sprockets#sprockets-directives) for details
11
+ // about supported directives.
12
+ //
13
+ //= require rails-ujs
14
+ //= require activestorage
15
+ //= require turbolinks
16
+ //= require_tree .
@@ -0,0 +1,13 @@
1
+ // Action Cable provides the framework to deal with WebSockets in Rails.
2
+ // You can generate new channels where WebSocket features live using the `rails generate channel` command.
3
+ //
4
+ //= require action_cable
5
+ //= require_self
6
+ //= require_tree ./channels
7
+
8
+ (function() {
9
+ this.App || (this.App = {});
10
+
11
+ App.cable = ActionCable.createConsumer();
12
+
13
+ }).call(this);
@@ -0,0 +1,15 @@
1
+ /*
2
+ * This is a manifest file that'll be compiled into application.css, which will include all the files
3
+ * listed below.
4
+ *
5
+ * Any CSS and SCSS file within this directory, lib/assets/stylesheets, or any plugin's
6
+ * vendor/assets/stylesheets directory can be referenced here using a relative path.
7
+ *
8
+ * You're free to add application-wide styles to this file and they'll appear at the bottom of the
9
+ * compiled file so the styles you add here take precedence over styles defined in any other CSS/SCSS
10
+ * files in this directory. Styles in this file should be added after the last require_* statement.
11
+ * It is generally better to create a new file per style scope.
12
+ *
13
+ *= require_tree .
14
+ *= require_self
15
+ */
@@ -0,0 +1,4 @@
1
+ module ApplicationCable
2
+ class Channel < ActionCable::Channel::Base
3
+ end
4
+ end
@@ -0,0 +1,4 @@
1
+ module ApplicationCable
2
+ class Connection < ActionCable::Connection::Base
3
+ end
4
+ end
@@ -0,0 +1,21 @@
1
+ # All Administrate controllers inherit from this `Admin::ApplicationController`,
2
+ # making it the ideal place to put authentication logic or other
3
+ # before_actions.
4
+ #
5
+ # If you want to add pagination or other controller-level concerns,
6
+ # you're free to overwrite the RESTful controller actions.
7
+ module Admin
8
+ class ApplicationController < Administrate::ApplicationController
9
+ before_action :authenticate_admin
10
+
11
+ def authenticate_admin
12
+ # TODO Add authentication logic here.
13
+ end
14
+
15
+ # Override this value to specify the number of elements to display at a time
16
+ # on index pages. Defaults to 20.
17
+ # def records_per_page
18
+ # params[:per_page] || 20
19
+ # end
20
+ end
21
+ end
@@ -0,0 +1,21 @@
1
+ module Admin
2
+ class UsersController < Admin::ApplicationController
3
+ # To customize the behavior of this controller,
4
+ # you can overwrite any of the RESTful actions. For example:
5
+ #
6
+ # def index
7
+ # super
8
+ # @resources = User.
9
+ # page(params[:page]).
10
+ # per(10)
11
+ # end
12
+
13
+ # Define a custom finder by overriding the `find_resource` method:
14
+ # def find_resource(param)
15
+ # User.find_by!(slug: param)
16
+ # end
17
+
18
+ # See https://administrate-prototype.herokuapp.com/customizing_controller_actions
19
+ # for more information
20
+ end
21
+ end
@@ -0,0 +1,2 @@
1
+ class ApplicationController < ActionController::Base
2
+ end
File without changes
@@ -0,0 +1,7 @@
1
+ class UsersController < ApplicationController
2
+ def remove_attachment
3
+ attachment = ActiveStorage::Attachment.find(params[:attachment_id])
4
+ attachment.purge
5
+ redirect_back(fallback_location: "/")
6
+ end
7
+ end
@@ -0,0 +1,58 @@
1
+ require "administrate/base_dashboard"
2
+
3
+ class UserDashboard < Administrate::BaseDashboard
4
+ # ATTRIBUTE_TYPES
5
+ # a hash that describes the type of each of the model's fields.
6
+ #
7
+ # Each different type represents an Administrate::Field object,
8
+ # which determines how the attribute is displayed
9
+ # on pages throughout the dashboard.
10
+ ATTRIBUTE_TYPES = {
11
+ id: Field::Number,
12
+ name: Field::String,
13
+ avatars: Field::ActiveStorage.with_options({:destroy_path => :custom_active_record_remove_path}),
14
+ created_at: Field::DateTime,
15
+ updated_at: Field::DateTime,
16
+ }.freeze
17
+
18
+ # COLLECTION_ATTRIBUTES
19
+ # an array of attributes that will be displayed on the model's index page.
20
+ #
21
+ # By default, it's limited to four items to reduce clutter on index pages.
22
+ # Feel free to add, remove, or rearrange items.
23
+ COLLECTION_ATTRIBUTES = [
24
+ :id,
25
+ :name,
26
+ :avatars,
27
+ ].freeze
28
+
29
+ # SHOW_PAGE_ATTRIBUTES
30
+ # an array of attributes that will be displayed on the model's show page.
31
+ SHOW_PAGE_ATTRIBUTES = [
32
+ :id,
33
+ :name,
34
+ :avatars,
35
+ :created_at,
36
+ :updated_at,
37
+ ].freeze
38
+
39
+ # FORM_ATTRIBUTES
40
+ # an array of attributes that will be displayed
41
+ # on the model's form (`new` and `edit`) pages.
42
+ FORM_ATTRIBUTES = [
43
+ :name,
44
+ :avatars,
45
+ ].freeze
46
+
47
+ # Overwrite this method to customize how users are displayed
48
+ # across all pages of the admin dashboard.
49
+ #
50
+ # def display_resource(user)
51
+ # "User ##{user.id}"
52
+ # end
53
+
54
+ # permitted for has_many_attached
55
+ def permitted_attributes
56
+ super + [:avatars => []]
57
+ end
58
+ end
@@ -0,0 +1,2 @@
1
+ module ApplicationHelper
2
+ end
@@ -0,0 +1,2 @@
1
+ class ApplicationJob < ActiveJob::Base
2
+ end
@@ -0,0 +1,4 @@
1
+ class ApplicationMailer < ActionMailer::Base
2
+ default from: 'from@example.com'
3
+ layout 'mailer'
4
+ end
@@ -0,0 +1,3 @@
1
+ class ApplicationRecord < ActiveRecord::Base
2
+ self.abstract_class = true
3
+ end
File without changes
@@ -0,0 +1,3 @@
1
+ class User < ApplicationRecord
2
+ has_many_attached :avatars
3
+ end
@@ -0,0 +1,15 @@
1
+ <!DOCTYPE html>
2
+ <html>
3
+ <head>
4
+ <title>ExampleProject</title>
5
+ <%= csrf_meta_tags %>
6
+ <%= csp_meta_tag %>
7
+
8
+ <%= stylesheet_link_tag 'application', media: 'all', 'data-turbolinks-track': 'reload' %>
9
+ <%= javascript_include_tag 'application', 'data-turbolinks-track': 'reload' %>
10
+ </head>
11
+
12
+ <body>
13
+ <%= yield %>
14
+ </body>
15
+ </html>
@@ -0,0 +1,13 @@
1
+ <!DOCTYPE html>
2
+ <html>
3
+ <head>
4
+ <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
5
+ <style>
6
+ /* Email styles need to be inline */
7
+ </style>
8
+ </head>
9
+
10
+ <body>
11
+ <%= yield %>
12
+ </body>
13
+ </html>
@@ -0,0 +1 @@
1
+ <%= yield %>
@@ -0,0 +1,3 @@
1
+ #!/usr/bin/env ruby
2
+ ENV['BUNDLE_GEMFILE'] ||= File.expand_path('../Gemfile', __dir__)
3
+ load Gem.bin_path('bundler', 'bundle')
@@ -0,0 +1,9 @@
1
+ #!/usr/bin/env ruby
2
+ begin
3
+ load File.expand_path('../spring', __FILE__)
4
+ rescue LoadError => e
5
+ raise unless e.message.include?('spring')
6
+ end
7
+ APP_PATH = File.expand_path('../config/application', __dir__)
8
+ require_relative '../config/boot'
9
+ require 'rails/commands'
@@ -0,0 +1,9 @@
1
+ #!/usr/bin/env ruby
2
+ begin
3
+ load File.expand_path('../spring', __FILE__)
4
+ rescue LoadError => e
5
+ raise unless e.message.include?('spring')
6
+ end
7
+ require_relative '../config/boot'
8
+ require 'rake'
9
+ Rake.application.run
@@ -0,0 +1,36 @@
1
+ #!/usr/bin/env ruby
2
+ require 'fileutils'
3
+ include FileUtils
4
+
5
+ # path to your application root.
6
+ APP_ROOT = File.expand_path('..', __dir__)
7
+
8
+ def system!(*args)
9
+ system(*args) || abort("\n== Command #{args} failed ==")
10
+ end
11
+
12
+ chdir APP_ROOT do
13
+ # This script is a starting point to setup your application.
14
+ # Add necessary setup steps to this file.
15
+
16
+ puts '== Installing dependencies =='
17
+ system! 'gem install bundler --conservative'
18
+ system('bundle check') || system!('bundle install')
19
+
20
+ # Install JavaScript dependencies if using Yarn
21
+ # system('bin/yarn')
22
+
23
+ # puts "\n== Copying sample files =="
24
+ # unless File.exist?('config/database.yml')
25
+ # cp 'config/database.yml.sample', 'config/database.yml'
26
+ # end
27
+
28
+ puts "\n== Preparing database =="
29
+ system! 'bin/rails db:setup'
30
+
31
+ puts "\n== Removing old logs and tempfiles =="
32
+ system! 'bin/rails log:clear tmp:clear'
33
+
34
+ puts "\n== Restarting application server =="
35
+ system! 'bin/rails restart'
36
+ end
@@ -0,0 +1,17 @@
1
+ #!/usr/bin/env ruby
2
+
3
+ # This file loads spring without using Bundler, in order to be fast.
4
+ # It gets overwritten when you run the `spring binstub` command.
5
+
6
+ unless defined?(Spring)
7
+ require 'rubygems'
8
+ require 'bundler'
9
+
10
+ lockfile = Bundler::LockfileParser.new(Bundler.default_lockfile.read)
11
+ spring = lockfile.specs.detect { |spec| spec.name == "spring" }
12
+ if spring
13
+ Gem.use_paths Gem.dir, Bundler.bundle_path.to_s, *Gem.path
14
+ gem 'spring', spring.version
15
+ require 'spring/binstub'
16
+ end
17
+ end
@@ -0,0 +1,31 @@
1
+ #!/usr/bin/env ruby
2
+ require 'fileutils'
3
+ include FileUtils
4
+
5
+ # path to your application root.
6
+ APP_ROOT = File.expand_path('..', __dir__)
7
+
8
+ def system!(*args)
9
+ system(*args) || abort("\n== Command #{args} failed ==")
10
+ end
11
+
12
+ chdir APP_ROOT do
13
+ # This script is a way to update your development environment automatically.
14
+ # Add necessary update steps to this file.
15
+
16
+ puts '== Installing dependencies =='
17
+ system! 'gem install bundler --conservative'
18
+ system('bundle check') || system!('bundle install')
19
+
20
+ # Install JavaScript dependencies if using Yarn
21
+ # system('bin/yarn')
22
+
23
+ puts "\n== Updating database =="
24
+ system! 'bin/rails db:migrate'
25
+
26
+ puts "\n== Removing old logs and tempfiles =="
27
+ system! 'bin/rails log:clear tmp:clear'
28
+
29
+ puts "\n== Restarting application server =="
30
+ system! 'bin/rails restart'
31
+ end
@@ -0,0 +1,11 @@
1
+ #!/usr/bin/env ruby
2
+ APP_ROOT = File.expand_path('..', __dir__)
3
+ Dir.chdir(APP_ROOT) do
4
+ begin
5
+ exec "yarnpkg", *ARGV
6
+ rescue Errno::ENOENT
7
+ $stderr.puts "Yarn executable was not detected in the system."
8
+ $stderr.puts "Download Yarn at https://yarnpkg.com/en/docs/install"
9
+ exit 1
10
+ end
11
+ end
@@ -0,0 +1,5 @@
1
+ # This file is used by Rack-based servers to start the application.
2
+
3
+ require_relative 'config/environment'
4
+
5
+ run Rails.application
@@ -0,0 +1,19 @@
1
+ require_relative 'boot'
2
+
3
+ require 'rails/all'
4
+
5
+ # Require the gems listed in Gemfile, including any gems
6
+ # you've limited to :test, :development, or :production.
7
+ Bundler.require(*Rails.groups)
8
+
9
+ module ExampleProject
10
+ class Application < Rails::Application
11
+ # Initialize configuration defaults for originally generated Rails version.
12
+ config.load_defaults 5.2
13
+
14
+ # Settings in config/environments/* take precedence over those specified here.
15
+ # Application configuration can go into files in config/initializers
16
+ # -- all .rb files in that directory are automatically loaded after loading
17
+ # the framework and any gems in your application.
18
+ end
19
+ end