зеркало из
https://github.com/rs-pro/activeadmin-quill_editor.git
synced 2026-08-28 15:36:17 +03:00
72 строки
1.7 KiB
Ruby
72 строки
1.7 KiB
Ruby
# frozen_string_literal: true
|
|
|
|
ActiveAdmin.register Post do
|
|
permit_params :author_id, :title, :summary, :description, :category, :dt, :position, :published, tag_ids: []
|
|
|
|
member_action :upload, method: [:post] do
|
|
result = { success: resource.images.attach(params[:file_upload]) }
|
|
result[:url] = url_for(resource.images.last) if result[:success]
|
|
render json: result
|
|
end
|
|
|
|
index do
|
|
selectable_column
|
|
id_column
|
|
column :title
|
|
column :author
|
|
column :published
|
|
column :created_at
|
|
actions
|
|
end
|
|
|
|
show do
|
|
attributes_table do
|
|
row :author
|
|
row :title
|
|
row :summary
|
|
row :description
|
|
row :category
|
|
row :dt
|
|
row :position
|
|
row :published
|
|
row :tags
|
|
row :created_at
|
|
row :updated_at
|
|
row :images do |resurce|
|
|
resurce.images.each do |image|
|
|
div do
|
|
link_to image.filename, image, target: '_blank'
|
|
end
|
|
end
|
|
nil
|
|
end
|
|
end
|
|
active_admin_comments
|
|
end
|
|
|
|
form do |f|
|
|
toolbar = %w[bold italic underline link]
|
|
f.inputs 'Post' do
|
|
f.input :author
|
|
f.input :title
|
|
f.input :summary, as: :quill_editor, input_html: { data: { options: { modules: { toolbar: toolbar } } } }
|
|
if object.new_record?
|
|
f.input :description, as: :quill_editor # using default options
|
|
else
|
|
plugin_opts = { image_uploader: { server_url: upload_admin_post_path(object.id), field_name: 'file_upload' } }
|
|
f.input :description, as: :quill_editor, input_html: { data: { plugins: plugin_opts } }
|
|
end
|
|
f.input :category
|
|
f.input :dt
|
|
f.input :position
|
|
f.input :published
|
|
end
|
|
|
|
f.inputs 'Tags' do
|
|
f.input :tags
|
|
end
|
|
|
|
f.actions
|
|
end
|
|
end
|