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
|
# File 'app/helpers/effective_resources_private_helper.rb', line 6
def permitted_resource_actions(resource, actions)
page_action = REPLACE_PAGE_ACTIONS[params[:action]] || params[:action]&.to_sym || :save
executor = Effective::ResourceExec.new(self, resource)
actions.select do |commit, args|
action = (args[:action] == :save ? (resource.new_record? ? :create : :update) : args[:action])
(args.key?(:only) ? args[:only].include?(page_action) : true) &&
(args.key?(:except) ? !args[:except].include?(page_action) : true) &&
(args.key?(:if) ? executor.instance_exec(&args[:if]) : true) &&
(args.key?(:unless) ? !executor.instance_exec(&args[:unless]) : true) &&
EffectiveResources.authorized?(controller, action, resource)
end.inject({}) do |h, (commit, args)|
opts = args.except(:default, :only, :except, :if, :unless, :redirect, :success, :danger)
if opts.key?(:data)
opts.delete(:data).each { |k, v| opts["data-#{k}"] ||= v }
end
if opts.key?('data-confirm')
opts['data-confirm'] = opts['data-confirm'].gsub('@resource', (resource.to_s.presence || resource.class.name.gsub('::', ' ').underscore.gsub('_', ' ')).to_s)
end
opts[:class] ||= (
if opts['data-method'].to_s == 'delete'
'btn btn-danger'
elsif h.length == 0
'btn btn-primary'
elsif defined?(EffectiveBootstrap)
'btn btn-secondary'
else
'btn btn-default'
end
)
opts[:title] ||= case opts[:action]
when :save then commit
when :edit then "Edit #{resource}"
when :show then "#{resource}"
when :destroy then "Delete #{resource}"
when :index then "All #{resource.class.name.gsub('::', ' ').underscore.gsub('_', ' ').titleize.pluralize}"
else "#{opts[:action].to_s.titleize} #{resource}"
end
h[commit] = opts; h
end
end
|