Module: Glib::JsonUi::ViewBuilder::Panels::ModelPanel

Included in:
Fields::DynamicGroup, Association
Defined in:
app/helpers/glib/json_ui/view_builder/panels.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Instance Attribute Details

#assoc_order_indexObject (readonly)

Returns the value of attribute assoc_order_index.



1133
1134
1135
# File 'app/helpers/glib/json_ui/view_builder/panels.rb', line 1133

def assoc_order_index
  @assoc_order_index
end

#model_nameObject (readonly)

See Panels::Form.field_name



1132
1133
1134
# File 'app/helpers/glib/json_ui/view_builder/panels.rb', line 1132

def model_name
  @model_name
end

Instance Method Details

#field_assert_respond_to(prop) ⇒ Object



1168
1169
1170
1171
# File 'app/helpers/glib/json_ui/view_builder/panels.rb', line 1168

def field_assert_respond_to(prop)
  raise "Please specify a model for #{self.class.component_name} before using its property" unless @model
  @delegate_class.field_assert_respond_to(@model, prop)
end

#field_label(prop, args) ⇒ Object



1152
1153
1154
# File 'app/helpers/glib/json_ui/view_builder/panels.rb', line 1152

def field_label(prop, args)
  @delegate_class.field_label(@model, @model_name, prop, args)
end

#field_name(prop, multiple) ⇒ Object



1144
1145
1146
# File 'app/helpers/glib/json_ui/view_builder/panels.rb', line 1144

def field_name(prop, multiple)
  @delegate_class.field_name(@model, prop, multiple, page)
end

#field_validation(prop) ⇒ Object



1164
1165
1166
# File 'app/helpers/glib/json_ui/view_builder/panels.rb', line 1164

def field_validation(prop)
  @delegate_class.field_validation(@model, prop)
end

#field_value(prop, collect_ids: true) ⇒ Object



1148
1149
1150
# File 'app/helpers/glib/json_ui/view_builder/panels.rb', line 1148

def field_value(prop, collect_ids: true)
  @delegate_class.field_value(@model, prop, collect_ids: collect_ids)
end

#hint_label(prop, args) ⇒ Object



1156
1157
1158
# File 'app/helpers/glib/json_ui/view_builder/panels.rb', line 1156

def hint_label(prop, args)
  @delegate_class.hint_label(@model_name, prop, args)
end

#model(model) ⇒ Object



1135
1136
1137
1138
# File 'app/helpers/glib/json_ui/view_builder/panels.rb', line 1135

def model(model)
  @model = model
  @model_name = @model.class.model_name.singular
end

#order_index(index) ⇒ Object



1140
1141
1142
# File 'app/helpers/glib/json_ui/view_builder/panels.rb', line 1140

def order_index(index)
  @assoc_order_index = index
end

#placeholder_label(prop, args) ⇒ Object



1160
1161
1162
# File 'app/helpers/glib/json_ui/view_builder/panels.rb', line 1160

def placeholder_label(prop, args)
  @delegate_class.placeholder_label(@model_name, prop, args)
end