-
-
Notifications
You must be signed in to change notification settings - Fork 277
/
Copy pathurl_helpers.rb
100 lines (83 loc) · 2.79 KB
/
url_helpers.rb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
module Avo
module UrlHelpers
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
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
def preview_resource_path(
resource:,
**args
)
avo.send :"preview_resources_#{resource.singular_route_key}_path", resource.record, **args
end
def new_resource_path(resource:, **args)
avo.send :"new_resources_#{resource.singular_route_key}_path", **args
end
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
def edit_bulk_update_path(resource_name:, id:, **args)
avo.send :edit_bulk_update_path, resource_name, id, **args
end
def handle_bulk_update_path(resource_name:, query:, **args)
avo.send :handle_bulk_update_path, resource_name, query, **args
end
def resource_attach_path(resource, record_id, related_name, related_id = nil)
helpers.avo.resources_associations_new_path(resource.singular_route_key, record_id, related_name)
end
def resource_detach_path(
model_name, # teams
record_id, # 1
related_name, # admin
related_id = nil
)
avo.resources_associations_destroy_path(model_name, record_id, related_name, related_id)
end
def related_resources_path(
parent_record,
record,
keep_query_params: false,
parent_resource: nil,
**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
route_key = parent_resource&.route_key || parent_record.model_name.route_key
avo.resources_associations_index_path(route_key, record.to_param, **existing_params, **args)
end
def resource_view_path(**args)
if Avo.configuration.resource_default_view.edit?
edit_resource_path(**args)
else
resource_path(**args)
end
end
end
end