Class: Olivander::Resources::RoutedResource
- Inherits:
-
Object
- Object
- Olivander::Resources::RoutedResource
- Defined in:
- app/controllers/concerns/olivander/resources/route_builder.rb
Instance Attribute Summary collapse
-
#actions ⇒ Object
Returns the value of attribute actions.
-
#model ⇒ Object
Returns the value of attribute model.
-
#namespaces ⇒ Object
Returns the value of attribute namespaces.
Instance Method Summary collapse
- #collection_actions ⇒ Object
- #crud_actions ⇒ Object
- #datatable_bulk_actions ⇒ Object
-
#initialize(model, namespaces, crud_actions) ⇒ RoutedResource
constructor
A new instance of RoutedResource.
- #member_actions ⇒ Object
- #persisted_crud_actions ⇒ Object
- #resolve_crud_action_collection(ca) ⇒ Object
- #resolve_crud_action_verb(ca) ⇒ Object
- #unpersisted_crud_actions ⇒ Object
Constructor Details
#initialize(model, namespaces, crud_actions) ⇒ RoutedResource
Returns a new instance of RoutedResource.
60 61 62 63 64 65 66 67 68 |
# File 'app/controllers/concerns/olivander/resources/route_builder.rb', line 60 def initialize(model, namespaces, crud_actions) self.model = model self.namespaces = namespaces self.actions = [] %i[index new create edit show update destroy].each do |ca| next unless crud_actions.include?(ca) actions << ResourceAction.new(ca, controller: model, verb: resolve_crud_action_verb(ca), collection: resolve_crud_action_collection(ca), crud_action: true) end end |
Instance Attribute Details
#actions ⇒ Object
Returns the value of attribute actions.
58 59 60 |
# File 'app/controllers/concerns/olivander/resources/route_builder.rb', line 58 def actions @actions end |
#model ⇒ Object
Returns the value of attribute model.
58 59 60 |
# File 'app/controllers/concerns/olivander/resources/route_builder.rb', line 58 def model @model end |
#namespaces ⇒ Object
Returns the value of attribute namespaces.
58 59 60 |
# File 'app/controllers/concerns/olivander/resources/route_builder.rb', line 58 def namespaces @namespaces end |
Instance Method Details
#collection_actions ⇒ Object
95 96 97 |
# File 'app/controllers/concerns/olivander/resources/route_builder.rb', line 95 def collection_actions actions.select{ |x| x.collection } end |
#crud_actions ⇒ Object
87 88 89 |
# File 'app/controllers/concerns/olivander/resources/route_builder.rb', line 87 def crud_actions actions.select{ |x| x.crud_action } end |
#datatable_bulk_actions ⇒ Object
99 100 101 |
# File 'app/controllers/concerns/olivander/resources/route_builder.rb', line 99 def datatable_bulk_actions collection_actions.select{ |x| x.show_in_datatable && !x.crud_action } end |
#member_actions ⇒ Object
91 92 93 |
# File 'app/controllers/concerns/olivander/resources/route_builder.rb', line 91 def member_actions actions.select{ |x| !x.collection } end |
#persisted_crud_actions ⇒ Object
108 109 110 111 |
# File 'app/controllers/concerns/olivander/resources/route_builder.rb', line 108 def persisted_crud_actions allowed = %i[show edit destroy] crud_actions.select{ |x| allowed.include?(x.sym) } end |
#resolve_crud_action_collection(ca) ⇒ Object
83 84 85 |
# File 'app/controllers/concerns/olivander/resources/route_builder.rb', line 83 def resolve_crud_action_collection(ca) %i[index new create].include?(ca) end |
#resolve_crud_action_verb(ca) ⇒ Object
70 71 72 73 74 75 76 77 78 79 80 81 |
# File 'app/controllers/concerns/olivander/resources/route_builder.rb', line 70 def resolve_crud_action_verb(ca) case ca when :create :post when :update :patch when :destroy :delete else :get end end |
#unpersisted_crud_actions ⇒ Object
103 104 105 106 |
# File 'app/controllers/concerns/olivander/resources/route_builder.rb', line 103 def unpersisted_crud_actions allowed = %i[index new] crud_actions.select{ |x| allowed.include?(x.sym) } end |