Module: Para::Admin::BaseHelper
- Includes:
- Para::ApplicationHelper
- Included in:
- BaseController, FiltersGenerator, FormGenerator, NestedFieldsGenerator, TableGenerator, TreeItemGenerator
- Defined in:
- app/helpers/para/admin/base_helper.rb
Instance Method Summary collapse
- #find_partial_for(relation, partial, partial_dir: 'admin/resources') ⇒ Object
- #find_relation_name_for(relation, partial, **options) ⇒ Object
- #flash_message(type, resource = nil, now: false) ⇒ Object
- #registered_components_options ⇒ Object
- #resource_title_for(resource) ⇒ Object
- #template_path_lookup(*paths) ⇒ Object
Methods included from Helpers::ResourceName
Instance Method Details
#find_partial_for(relation, partial, partial_dir: 'admin/resources') ⇒ Object
6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 |
# File 'app/helpers/para/admin/base_helper.rb', line 6 def find_partial_for(relation, partial, partial_dir: 'admin/resources') relation_class = if model?(relation.class) relation = relation.class elsif model?(relation) relation end relation_name = find_relation_name_for( plural_file_path_for(relation), partial, relation_class: relation_class, overrides_root: 'admin' ) if relation_name "admin/#{relation_name}/#{partial}" else "para/#{partial_dir}/#{partial}" end end |
#find_relation_name_for(relation, partial, **options) ⇒ Object
26 27 28 29 30 31 32 33 34 35 36 37 38 39 |
# File 'app/helpers/para/admin/base_helper.rb', line 26 def find_relation_name_for(relation, partial, **) return relation if partial_exists?(relation, partial, **) return nil unless [:relation_class] relation = [:relation_class].ancestors.find do |ancestor| next unless model?(ancestor) break if ancestor == ActiveRecord::Base ancestor_name = plural_file_path_for(ancestor.name) partial_exists?(ancestor_name, partial, **) end plural_file_path_for(relation) if relation end |
#flash_message(type, resource = nil, now: false) ⇒ Object
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 |
# File 'app/helpers/para/admin/base_helper.rb', line 65 def (type, resource = nil, now: false) flash_shared_key = 'para.flash.shared' key_suffix = "#{params[:action]}.#{type}" shared_key = "#{flash_shared_key}.#{key_suffix}" shared_translation = if resource ::I18n.t(shared_key, model: resource.class.model_name.human) else ::I18n.t(shared_key) end translation = if resource ::I18n.t( "para.flash.#{resource.class.base_class.model_name.i18n_key}.#{key_suffix}", default: shared_translation ) else shared_translation end flash_receiver = now ? flash.now : flash flash_receiver[type] = translation end |
#registered_components_options ⇒ Object
56 57 58 59 60 61 62 63 |
# File 'app/helpers/para/admin/base_helper.rb', line 56 def Para::Component.registered_components.keys.map do |identifier| [ t("para.component.#{identifier}.name", default: identifier.to_s.humanize), identifier ] end end |
#resource_title_for(resource) ⇒ Object
46 47 48 49 50 51 52 53 54 |
# File 'app/helpers/para/admin/base_helper.rb', line 46 def resource_title_for(resource) if resource.new_record? t('para.form.shared.new.title', model: resource.class.model_name.human) else resource.try(:title).presence || resource.try(:name).presence || t('para.form.shared.edit.title', model: resource.class.model_name.human) end end |
#template_path_lookup(*paths) ⇒ Object
41 42 43 44 |
# File 'app/helpers/para/admin/base_helper.rb', line 41 def template_path_lookup(*paths) path = paths.find { |path| lookup_context.find_all(path).any? } path&.gsub(%r{/_([^/]+)\z}, '/\1') end |