Class: Effective::FormInputs::StaticField
Constant Summary
Effective::FormInput::BLANK, Effective::FormInput::DEFAULT_FEEDBACK_OPTIONS, Effective::FormInput::DEFAULT_INPUT_GROUP_OPTIONS, Effective::FormInput::EMPTY_HASH, Effective::FormInput::EXCLUSIVE_CLASS_PREFIXES, Effective::FormInput::EXCLUSIVE_CLASS_SUFFIXES, Effective::FormInput::HORIZONTAL_LABEL_OPTIONS, Effective::FormInput::HORIZONTAL_WRAPPER_OPTIONS, Effective::FormInput::INLINE_LABEL_OPTIONS, Effective::FormInput::VERTICAL_WRAPPER_OPTIONS
Instance Attribute Summary
#name, #options
Instance Method Summary
collapse
#hint_options, #initialize, #input_group_options, #input_js_options, #label_options, #to_html, #wrapper_options
Instance Method Details
15
16
17
18
19
20
21
22
23
24
25
|
# File 'app/models/effective/form_inputs/static_field.rb', line 15
def build_input(&block)
content = if block_given?
capture(&block)
elsif resource_path
link_to(value, resource_path, title: value.to_s)
else
value
end
content_tag(:p, content, options[:input].except(:readonly, :required).merge(id: tag_id))
end
|
#feedback_options ⇒ Object
11
12
13
|
# File 'app/models/effective/form_inputs/static_field.rb', line 11
def feedback_options
false
end
|
7
8
9
|
# File 'app/models/effective/form_inputs/static_field.rb', line 7
def input_html_options
{ class: 'form-control-plaintext', readonly: false, id: tag_id }
end
|
#resource_path ⇒ Object
27
28
29
30
31
32
33
34
35
36
37
38
39
|
# File 'app/models/effective/form_inputs/static_field.rb', line 27
def resource_path
return false unless defined?(EffectiveResources)
return false unless value.kind_of?(ActiveRecord::Base)
@_resource_path ||= (
Effective::Resource.new(value, namespace: @template.controller_path.split('/').first).action_path(:edit) ||
Effective::Resource.new(@template.controller_path).action_path(:edit, value) ||
Effective::Resource.new(value, namespace: @template.controller_path.split('/').first).action_path(:show) ||
Effective::Resource.new(@template.controller_path).action_path(:show, value)
)
end
|