Module: Avo::UrlHelpers
- Included in:
- ApplicationController, TabSwitcherComponent
- Defined in:
- app/helpers/avo/url_helpers.rb
Instance Method Summary collapse
- #edit_resource_path(resource:, record: nil, resource_id: nil, **args) ⇒ Object
- #new_resource_path(resource:, **args) ⇒ Object
- #preview_resource_path(resource:, **args) ⇒ Object
- #related_resources_path(parent_record, record, keep_query_params: false, **args) ⇒ Object
- #resource_attach_path(resource, record_id, related_name, related_id = nil) ⇒ Object
- #resource_detach_path(model_name, record_id, related_name, related_id = nil) ⇒ Object
- #resource_path(resource:, record: nil, resource_id: nil, keep_query_params: false, **args) ⇒ Object
- #resource_view_path(**args) ⇒ Object
- #resources_path(resource:, keep_query_params: false, **args) ⇒ Object
Instance Method Details
#edit_resource_path(resource:, record: nil, resource_id: nil, **args) ⇒ Object
43 44 45 |
# File 'app/helpers/avo/url_helpers.rb', line 43 def edit_resource_path(resource:, record: nil, resource_id: nil, **args) avo.send :"edit_resources_#{resource.singular_route_key}_path", record || resource_id, **args end |
#new_resource_path(resource:, **args) ⇒ Object
39 40 41 |
# File 'app/helpers/avo/url_helpers.rb', line 39 def new_resource_path(resource:, **args) avo.send :"new_resources_#{resource.singular_route_key}_path", **args end |
#preview_resource_path(resource:, **args) ⇒ Object
32 33 34 35 36 37 |
# File 'app/helpers/avo/url_helpers.rb', line 32 def preview_resource_path( resource:, **args ) avo.send :"preview_resources_#{resource.singular_route_key}_path", resource.record, **args end |
#related_resources_path(parent_record, record, keep_query_params: false, **args) ⇒ Object
60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 |
# File 'app/helpers/avo/url_helpers.rb', line 60 def ( parent_record, record, keep_query_params: false, **args ) return if record.nil? existing_params = {} begin if keep_query_params existing_params = Addressable::URI.parse(request.fullpath).query_values.symbolize_keys end rescue end avo.resources_associations_index_path(parent_record.model_name.route_key, record.to_param, **existing_params, **args) end |
#resource_attach_path(resource, record_id, related_name, related_id = nil) ⇒ Object
47 48 49 |
# File 'app/helpers/avo/url_helpers.rb', line 47 def resource_attach_path(resource, record_id, , = nil) helpers.avo.resources_associations_new_path(resource.singular_route_key, record_id, ) end |
#resource_detach_path(model_name, record_id, related_name, related_id = nil) ⇒ Object
51 52 53 54 55 56 57 58 |
# File 'app/helpers/avo/url_helpers.rb', line 51 def resource_detach_path( model_name, # teams record_id, # 1 , # admin = nil ) avo.resources_associations_destroy_path(model_name, record_id, , ) end |
#resource_path(resource:, record: nil, resource_id: nil, keep_query_params: false, **args) ⇒ Object
22 23 24 25 26 27 28 29 30 |
# File 'app/helpers/avo/url_helpers.rb', line 22 def resource_path( resource:, record: nil, resource_id: nil, keep_query_params: false, **args ) avo.send :"resources_#{resource.singular_route_key}_path", record || resource_id, **args end |
#resource_view_path(**args) ⇒ Object
81 82 83 84 85 86 87 |
# File 'app/helpers/avo/url_helpers.rb', line 81 def resource_view_path(**args) if Avo.configuration.resource_default_view.edit? edit_resource_path(**args) else resource_path(**args) end end |
#resources_path(resource:, keep_query_params: false, **args) ⇒ Object
3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 |
# File 'app/helpers/avo/url_helpers.rb', line 3 def resources_path(resource:, keep_query_params: false, **args) return if resource.nil? existing_params = {} if keep_query_params begin existing_params = Addressable::URI.parse(request.fullpath).query_values.symbolize_keys rescue end end route_key = resource.route_key # Add the `_index` suffix for the uncountable names so they get the correct path (`fish_index`) route_key << "_index" if resource.route_key == resource.singular_route_key avo.send :"resources_#{route_key}_path", **existing_params, **args end |