madmin 0.1.0 → 0.1.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/MIT-LICENSE +1 -1
- data/README.md +7 -82
- data/Rakefile +1 -6
- data/app/assets/config/manifest.js +2 -0
- data/app/assets/stylesheets/actiontext.scss +36 -0
- data/app/assets/stylesheets/{madmin/application.css → application.css} +2 -9
- data/app/controllers/madmin/application_controller.rb +6 -10
- data/app/controllers/madmin/dashboard_controller.rb +1 -3
- data/app/controllers/madmin/resource_controller.rb +72 -0
- data/app/helpers/madmin/application_helper.rb +1 -11
- data/app/views/layouts/madmin/application.html.erb +25 -26
- data/app/views/madmin/application/_form.html.erb +25 -0
- data/app/views/madmin/application/_navigation.html.erb +6 -0
- data/app/views/madmin/application/edit.html.erb +3 -0
- data/app/views/madmin/application/index.html.erb +35 -0
- data/app/views/madmin/application/new.html.erb +3 -0
- data/app/views/madmin/application/show.html.erb +24 -0
- data/app/views/madmin/dashboard/show.html.erb +1 -0
- data/app/views/madmin/fields/attachment/_form.html.erb +2 -0
- data/app/views/madmin/fields/attachment/_index.html.erb +3 -0
- data/app/views/madmin/fields/attachment/_show.html.erb +3 -0
- data/app/views/madmin/fields/attachments/_form.html.erb +2 -0
- data/app/views/madmin/fields/attachments/_index.html.erb +1 -0
- data/app/views/madmin/fields/attachments/_show.html.erb +7 -0
- data/app/views/madmin/fields/belongs_to/_form.html.erb +2 -14
- data/app/views/madmin/fields/belongs_to/_index.html.erb +2 -7
- data/app/views/madmin/fields/belongs_to/_show.html.erb +2 -8
- data/app/views/madmin/fields/boolean/_form.html.erb +2 -0
- data/app/views/madmin/fields/boolean/_index.html.erb +1 -0
- data/app/views/madmin/fields/boolean/_show.html.erb +1 -0
- data/app/views/madmin/fields/date/_form.html.erb +2 -0
- data/app/views/madmin/fields/date/_index.html.erb +1 -0
- data/app/views/madmin/fields/date/_show.html.erb +1 -0
- data/app/views/madmin/fields/date_time/_form.html.erb +2 -0
- data/app/views/madmin/fields/date_time/_index.html.erb +1 -0
- data/app/views/madmin/fields/date_time/_show.html.erb +1 -0
- data/app/views/madmin/fields/enum/_form.html.erb +3 -0
- data/app/views/madmin/fields/enum/_index.html.erb +1 -0
- data/app/views/madmin/fields/enum/_show.html.erb +1 -0
- data/app/views/madmin/fields/float/_form.html.erb +2 -0
- data/app/views/madmin/fields/float/_index.html.erb +1 -0
- data/app/views/madmin/fields/float/_show.html.erb +1 -0
- data/app/views/madmin/fields/has_many/_form.html.erb +2 -0
- data/app/views/madmin/fields/has_many/_index.html.erb +1 -0
- data/app/views/madmin/fields/has_many/_show.html.erb +4 -14
- data/app/views/madmin/fields/has_one/_form.html.erb +3 -0
- data/app/views/madmin/fields/has_one/_index.html.erb +3 -0
- data/app/views/madmin/fields/has_one/_show.html.erb +3 -12
- data/app/views/madmin/fields/integer/_form.html.erb +2 -0
- data/app/views/madmin/fields/integer/_index.html.erb +1 -0
- data/app/views/madmin/fields/integer/_show.html.erb +1 -0
- data/app/views/madmin/fields/json/_form.html.erb +2 -0
- data/app/views/madmin/fields/json/_index.html.erb +1 -0
- data/app/views/madmin/fields/json/_show.html.erb +1 -0
- data/app/views/madmin/fields/polymorphic/_form.html.erb +5 -32
- data/app/views/madmin/fields/polymorphic/_index.html.erb +3 -1
- data/app/views/madmin/fields/polymorphic/_show.html.erb +3 -14
- data/app/views/madmin/fields/rich_text/_form.html.erb +4 -0
- data/app/views/madmin/fields/rich_text/_index.html.erb +1 -0
- data/app/views/madmin/fields/rich_text/_show.html.erb +3 -0
- data/app/views/madmin/fields/string/_form.html.erb +2 -0
- data/app/views/madmin/fields/string/_index.html.erb +1 -0
- data/app/views/madmin/fields/string/_show.html.erb +1 -0
- data/app/views/madmin/fields/text/_form.html.erb +2 -4
- data/app/views/madmin/fields/text/_index.html.erb +1 -1
- data/app/views/madmin/fields/text/_show.html.erb +1 -8
- data/app/views/madmin/fields/time/_form.html.erb +2 -0
- data/app/views/madmin/fields/time/_index.html.erb +1 -0
- data/app/views/madmin/fields/time/_show.html.erb +1 -0
- data/lib/generators/madmin/install/install_generator.rb +24 -12
- data/lib/generators/madmin/resource/resource_generator.rb +83 -47
- data/lib/generators/madmin/resource/templates/controller.rb.tt +4 -0
- data/lib/generators/madmin/resource/templates/resource.rb.tt +11 -0
- data/lib/madmin.rb +33 -23
- data/lib/madmin/engine.rb +5 -2
- data/lib/madmin/field.rb +18 -47
- data/lib/madmin/fields/attachment.rb +6 -0
- data/lib/madmin/fields/attachments.rb +9 -0
- data/lib/madmin/fields/belongs_to.rb +18 -0
- data/lib/madmin/fields/boolean.rb +6 -0
- data/lib/madmin/fields/date.rb +6 -0
- data/lib/madmin/fields/date_time.rb +6 -0
- data/lib/madmin/fields/enum.rb +6 -0
- data/lib/madmin/fields/float.rb +6 -0
- data/lib/madmin/fields/has_many.rb +18 -0
- data/lib/madmin/fields/has_one.rb +6 -0
- data/lib/madmin/fields/integer.rb +6 -0
- data/lib/madmin/fields/json.rb +6 -0
- data/lib/madmin/fields/polymorphic.rb +17 -0
- data/lib/madmin/fields/rich_text.rb +6 -0
- data/lib/madmin/fields/string.rb +6 -0
- data/lib/madmin/fields/text.rb +6 -0
- data/lib/madmin/fields/time.rb +6 -0
- data/lib/madmin/generator_helpers.rb +24 -0
- data/lib/madmin/resource.rb +125 -0
- data/lib/madmin/version.rb +1 -1
- data/lib/tasks/madmin_tasks.rake +7 -0
- metadata +90 -97
- data/app/assets/config/madmin_manifest.js +0 -2
- data/app/assets/javascripts/madmin/application.js +0 -15
- data/app/assets/javascripts/madmin/dashboard.js +0 -2
- data/app/assets/javascripts/madmin/resources.js +0 -36
- data/app/assets/stylesheets/madmin/dashboard.css +0 -4
- data/app/assets/stylesheets/madmin/resources.css +0 -4
- data/app/controllers/madmin/base_controller.rb +0 -16
- data/app/controllers/madmin/resources_controller.rb +0 -97
- data/app/decorators/madmin/resource_decorator.rb +0 -16
- data/app/helpers/madmin/fields/polymorphic_helper.rb +0 -25
- data/app/jobs/madmin/application_job.rb +0 -4
- data/app/mailers/madmin/application_mailer.rb +0 -6
- data/app/models/madmin/application_record.rb +0 -5
- data/app/views/application/_navigation.html.erb +0 -17
- data/app/views/madmin/dashboard/index.html.erb +0 -6
- data/app/views/madmin/fields/check_box/_form.html.erb +0 -4
- data/app/views/madmin/fields/check_box/_index.html.erb +0 -1
- data/app/views/madmin/fields/check_box/_show.html.erb +0 -8
- data/app/views/madmin/fields/email/_form.html.erb +0 -4
- data/app/views/madmin/fields/email/_index.html.erb +0 -1
- data/app/views/madmin/fields/email/_show.html.erb +0 -8
- data/app/views/madmin/fields/number/_form.html.erb +0 -4
- data/app/views/madmin/fields/number/_index.html.erb +0 -1
- data/app/views/madmin/fields/number/_show.html.erb +0 -8
- data/app/views/madmin/fields/password/_form.html.erb +0 -4
- data/app/views/madmin/fields/password/_index.html.erb +0 -1
- data/app/views/madmin/fields/password/_show.html.erb +0 -8
- data/app/views/madmin/fields/select/_form.html.erb +0 -4
- data/app/views/madmin/fields/select/_index.html.erb +0 -1
- data/app/views/madmin/fields/select/_show.html.erb +0 -8
- data/app/views/madmin/fields/text_area/_form.html.erb +0 -4
- data/app/views/madmin/fields/text_area/_index.html.erb +0 -1
- data/app/views/madmin/fields/text_area/_show.html.erb +0 -8
- data/app/views/madmin/resources/_form.html.erb +0 -15
- data/app/views/madmin/resources/_scopes.html.erb +0 -10
- data/app/views/madmin/resources/edit.html.erb +0 -2
- data/app/views/madmin/resources/index.html.erb +0 -13
- data/app/views/madmin/resources/index/_content.html.erb +0 -33
- data/app/views/madmin/resources/new.html.erb +0 -2
- data/app/views/madmin/resources/show.html.erb +0 -10
- data/config/routes.rb +0 -11
- data/lib/generators/madmin/controller/USAGE +0 -8
- data/lib/generators/madmin/controller/controller_generator.rb +0 -10
- data/lib/generators/madmin/page/USAGE +0 -8
- data/lib/generators/madmin/page/page_generator.rb +0 -20
- data/lib/generators/madmin/page/templates/template.html.erb +0 -2
- data/lib/generators/madmin/page/templates/template.rb.erb +0 -10
- data/lib/generators/madmin/resource/templates/resource.rb.erb +0 -11
- data/lib/generators/madmin/views/views_generator.rb +0 -15
- data/lib/madmin/field/associatable.rb +0 -58
- data/lib/madmin/field/belongs_to.rb +0 -9
- data/lib/madmin/field/check_box.rb +0 -8
- data/lib/madmin/field/date_time.rb +0 -8
- data/lib/madmin/field/email.rb +0 -8
- data/lib/madmin/field/has_many.rb +0 -9
- data/lib/madmin/field/has_one.rb +0 -9
- data/lib/madmin/field/number.rb +0 -8
- data/lib/madmin/field/password.rb +0 -8
- data/lib/madmin/field/polymorphic.rb +0 -57
- data/lib/madmin/field/select.rb +0 -13
- data/lib/madmin/field/text.rb +0 -8
- data/lib/madmin/field/text_area.rb +0 -8
- data/lib/madmin/resourceable.rb +0 -72
- data/lib/madmin/resourceable/class_methods.rb +0 -152
- data/lib/madmin/resources.rb +0 -13
@@ -1,25 +0,0 @@
|
|
1
|
-
module Madmin
|
2
|
-
module Fields
|
3
|
-
module PolymorphicHelper
|
4
|
-
def polymorphic_models(type)
|
5
|
-
all_resources = Madmin::Resources.all.map { |r| Madmin::ResourceDecorator.new(r) }
|
6
|
-
|
7
|
-
polymorphic_resources = all_resources.select { |resource|
|
8
|
-
associations = resource.model.reflect_on_all_associations
|
9
|
-
associations.select { |a| a.options.dig(:as) === type }.any?
|
10
|
-
}
|
11
|
-
|
12
|
-
polymorphic_resources.map(&:model)
|
13
|
-
end
|
14
|
-
|
15
|
-
def polymorphic_options_for_selected_type(form:, field:)
|
16
|
-
options_from_collection_for_select(
|
17
|
-
form.object.send(field.polymorphic_type_param).constantize.send(field.polymorphic_scope),
|
18
|
-
:id,
|
19
|
-
field.polymorphic_display_value,
|
20
|
-
form.object.send(field.polymorphic_id_param)
|
21
|
-
)
|
22
|
-
end
|
23
|
-
end
|
24
|
-
end
|
25
|
-
end
|
@@ -1,17 +0,0 @@
|
|
1
|
-
<nav class="nav bg-dark col-md-2 sidebar px-4 py-3 d-flex flex-column">
|
2
|
-
<h3><%= link_to 'Madmin', root_path %></h3>
|
3
|
-
|
4
|
-
<ul class="list-unstyled mt-3">
|
5
|
-
<% available_resources.each do |resource| %>
|
6
|
-
<% next unless resource.show_in_menu? %>
|
7
|
-
<li class="mb-1">
|
8
|
-
<%= link_to resource.friendly_name.pluralize, resources_path(resource.slug), class: "text-white" %>
|
9
|
-
</li>
|
10
|
-
<% end %>
|
11
|
-
<% pages.each do |page| %>
|
12
|
-
<li class="mb-1">
|
13
|
-
<%= link_to page, "#", class: "text-white"%>
|
14
|
-
</li>
|
15
|
-
<% end %>
|
16
|
-
</ul>
|
17
|
-
</nav>
|
@@ -1 +0,0 @@
|
|
1
|
-
<%= field.value_for(resource) %>
|
@@ -1 +0,0 @@
|
|
1
|
-
<%= field.value_for(resource) %>
|
@@ -1 +0,0 @@
|
|
1
|
-
<%= link_to field.value_for(resource), resource_path(madmin_resource.slug, id: resource.id) %>
|
@@ -1 +0,0 @@
|
|
1
|
-
<%= 'Password Encrypted' if field.value %>
|
@@ -1 +0,0 @@
|
|
1
|
-
<%= field.value %>
|
@@ -1 +0,0 @@
|
|
1
|
-
<%= field.value %>
|
@@ -1,15 +0,0 @@
|
|
1
|
-
<%= form_for resource, url: url do |form| %>
|
2
|
-
<% if resource.errors.any? %>
|
3
|
-
<% resource.errors.full_messages.each do |message| %>
|
4
|
-
<li><%= message %></li>
|
5
|
-
<% end %>
|
6
|
-
<% end %>
|
7
|
-
|
8
|
-
<% madmin_resource.form_fields.each do |field| %>
|
9
|
-
<%= render "#{field.to_partial_path}/form", field: field, form: form, resource: resource %>
|
10
|
-
<% end %>
|
11
|
-
|
12
|
-
<div class="mt-4">
|
13
|
-
<%= form.submit class: "btn btn-primary" %>
|
14
|
-
</div>
|
15
|
-
<% end %>
|
@@ -1,10 +0,0 @@
|
|
1
|
-
<div class="list-group">
|
2
|
-
<%= link_to resources_path(madmin_resource.slug), class: "list-group-item py-2 list-group-item-action #{'active' if params[:scope].blank?}" do %>
|
3
|
-
All
|
4
|
-
<% end %>
|
5
|
-
<% scopes.each do |scope| %>
|
6
|
-
<%= link_to resources_path(madmin_resource.slug, scope: scope.to_s), class: "list-group-item py-2 list-group-item-action #{'active' if params[:scope] == scope.to_s}" do %>
|
7
|
-
<%= scope.to_s.titleize %>
|
8
|
-
<% end %>
|
9
|
-
<% end %>
|
10
|
-
</div>
|
@@ -1,13 +0,0 @@
|
|
1
|
-
<div class="row">
|
2
|
-
<div class="col">
|
3
|
-
<h1><%= madmin_resource.friendly_name.pluralize %></h1>
|
4
|
-
</div>
|
5
|
-
</div>
|
6
|
-
<div class="row">
|
7
|
-
<%= content_tag :div, class: @scopes.any? ? 'col-3' : 'd-none' do %>
|
8
|
-
<%= render 'scopes', scopes: @scopes %>
|
9
|
-
<% end %>
|
10
|
-
<%= content_tag :div, class: @scopes.any? ? 'col-9' : 'col-12' do %>
|
11
|
-
<%= render 'madmin/resources/index/content', headers: @headers, collection: @collection, show_new_button: true %>
|
12
|
-
<% end %>
|
13
|
-
</div>
|
@@ -1,33 +0,0 @@
|
|
1
|
-
<table class="table">
|
2
|
-
<thead>
|
3
|
-
<% headers.each do |header| %>
|
4
|
-
<th><%= header %></th>
|
5
|
-
<% end %>
|
6
|
-
</thead>
|
7
|
-
<% if collection.any? %>
|
8
|
-
<% collection.each do |resource| %>
|
9
|
-
<tr>
|
10
|
-
<% madmin_resource.index_fields.each do |field| %>
|
11
|
-
<td>
|
12
|
-
<%=
|
13
|
-
render "#{field.to_partial_path}/index",
|
14
|
-
field: field,
|
15
|
-
madmin_resource: madmin_resource,
|
16
|
-
resource: resource
|
17
|
-
%>
|
18
|
-
</td>
|
19
|
-
<% end %>
|
20
|
-
</tr>
|
21
|
-
<% end %>
|
22
|
-
<% else %>
|
23
|
-
<tr>
|
24
|
-
<td>No records found</td>
|
25
|
-
</tr>
|
26
|
-
<% end %>
|
27
|
-
</table>
|
28
|
-
|
29
|
-
<% if show_new_button %>
|
30
|
-
<div class="mt-4">
|
31
|
-
<%= link_to 'New', new_resource_path, class: "btn btn-primary" %>
|
32
|
-
</div>
|
33
|
-
<% end %>
|
@@ -1,10 +0,0 @@
|
|
1
|
-
<h1><%= @resource.name %> <%= @resource.id %></h1>
|
2
|
-
|
3
|
-
<% madmin_resource.show_fields.each do |field| %>
|
4
|
-
<%= render "#{field.to_partial_path}/show", field: field, resource: @resource %>
|
5
|
-
<% end %>
|
6
|
-
|
7
|
-
<div class="mt-4">
|
8
|
-
<%= link_to 'Edit', edit_resource_path(id: @resource.id), class: "btn btn-primary" %>
|
9
|
-
<%= link_to 'Delete', resource_path(id: @resource.id), method: :delete, class: "btn btn-danger" %>
|
10
|
-
</div>
|
data/config/routes.rb
DELETED
@@ -1,11 +0,0 @@
|
|
1
|
-
Madmin::Engine.routes.draw do
|
2
|
-
root to: "dashboard#index"
|
3
|
-
|
4
|
-
get "/:resource", to: "resources#index", as: :resources
|
5
|
-
get "/:resource/new", to: "resources#new", as: :new_resource
|
6
|
-
post "/:resource", to: "resources#create"
|
7
|
-
get "/:resource/:id", to: "resources#show", as: :resource
|
8
|
-
get "/:resource/:id/edit", to: "resources#edit", as: :edit_resource
|
9
|
-
patch "/:resource/:id", to: "resources#update"
|
10
|
-
delete "/:resource/:id", to: "resources#destroy"
|
11
|
-
end
|
@@ -1,10 +0,0 @@
|
|
1
|
-
class Madmin::ControllerGenerator < Rails::Generators::NamedBase
|
2
|
-
source_root File.expand_path("../../../../../", __FILE__)
|
3
|
-
|
4
|
-
def copy_controller
|
5
|
-
copy_file(
|
6
|
-
"app/controllers/madmin/#{file_name}_controller.rb",
|
7
|
-
"app/controllers/madmin/#{file_name}_controller.rb"
|
8
|
-
)
|
9
|
-
end
|
10
|
-
end
|
@@ -1,20 +0,0 @@
|
|
1
|
-
class Madmin::PageGenerator < Rails::Generators::NamedBase
|
2
|
-
source_root File.expand_path("templates", __dir__)
|
3
|
-
|
4
|
-
def copy_template
|
5
|
-
template(
|
6
|
-
"template.rb.erb",
|
7
|
-
Rails.root.join("app/controllers/madmin/#{file_name}_controller.rb"),
|
8
|
-
)
|
9
|
-
|
10
|
-
template(
|
11
|
-
"template.html.erb",
|
12
|
-
Rails.root.join("app/views/madmin/#{file_name}/index.html.erb"),
|
13
|
-
)
|
14
|
-
|
15
|
-
inject_into_file(
|
16
|
-
Rails.root.join("config/routes.rb"),
|
17
|
-
after: "namespace :madmin do\n"
|
18
|
-
) { " get \"#{file_name}\", to: \"#{file_name}#index\"\n" }
|
19
|
-
end
|
20
|
-
end
|
@@ -1,15 +0,0 @@
|
|
1
|
-
require "rails/generators/base"
|
2
|
-
|
3
|
-
module Madmin
|
4
|
-
module Generators
|
5
|
-
class ViewsGenerator < Rails::Generators::Base
|
6
|
-
desc("Copies views for customizing Madmin's views")
|
7
|
-
|
8
|
-
source_root File.expand_path("../../../../..", __FILE__)
|
9
|
-
|
10
|
-
def copy_views
|
11
|
-
directory "app/views/madmin", "app/views/madmin"
|
12
|
-
end
|
13
|
-
end
|
14
|
-
end
|
15
|
-
end
|
@@ -1,58 +0,0 @@
|
|
1
|
-
module Madmin
|
2
|
-
class Field
|
3
|
-
module Associatable
|
4
|
-
class << self
|
5
|
-
def included(_base)
|
6
|
-
attr_reader :association_class
|
7
|
-
attr_reader :association_display_value
|
8
|
-
attr_reader :association_foreign_key
|
9
|
-
attr_reader :association_scope
|
10
|
-
end
|
11
|
-
end
|
12
|
-
|
13
|
-
def initialize(args)
|
14
|
-
super(args)
|
15
|
-
implement_association!
|
16
|
-
end
|
17
|
-
|
18
|
-
def association_collection
|
19
|
-
association_class.send(association_scope)
|
20
|
-
end
|
21
|
-
|
22
|
-
def association_id_for(resource)
|
23
|
-
value_for(resource).id
|
24
|
-
end
|
25
|
-
|
26
|
-
def association_id_or_blank_for(resource)
|
27
|
-
value_for(resource).try(:id)
|
28
|
-
end
|
29
|
-
|
30
|
-
def association_param
|
31
|
-
ActiveModel::Naming.param_key(association_class)
|
32
|
-
end
|
33
|
-
|
34
|
-
def association_slug
|
35
|
-
Object.const_get("::Madmin::Resources::#{association_class}").new.slug
|
36
|
-
end
|
37
|
-
|
38
|
-
def association_value_for(resource)
|
39
|
-
value_for(resource).send(association_display_value)
|
40
|
-
end
|
41
|
-
|
42
|
-
def strong_params_keys
|
43
|
-
[association_foreign_key]
|
44
|
-
end
|
45
|
-
|
46
|
-
private
|
47
|
-
|
48
|
-
def implement_association!
|
49
|
-
association = model.reflect_on_all_associations.find { |assc| assc.name == key }
|
50
|
-
|
51
|
-
@association_class = association.klass
|
52
|
-
@association_display_value = option_or_default(:display_value, :name)
|
53
|
-
@association_foreign_key = association.foreign_key
|
54
|
-
@association_scope = :all
|
55
|
-
end
|
56
|
-
end
|
57
|
-
end
|
58
|
-
end
|