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.



371
372
373
# File 'app/helpers/glib/json_ui/view_builder/panels.rb', line 371

def assoc_order_index
  @assoc_order_index
end

#model_nameObject (readonly)

See Panels::Form.field_name



370
371
372
# File 'app/helpers/glib/json_ui/view_builder/panels.rb', line 370

def model_name
  @model_name
end

Instance Method Details

#field_assert_respond_to(prop) ⇒ Object



406
407
408
409
# File 'app/helpers/glib/json_ui/view_builder/panels.rb', line 406

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



390
391
392
# File 'app/helpers/glib/json_ui/view_builder/panels.rb', line 390

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

#field_name(prop, multiple) ⇒ Object



382
383
384
# File 'app/helpers/glib/json_ui/view_builder/panels.rb', line 382

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

#field_validation(prop) ⇒ Object



402
403
404
# File 'app/helpers/glib/json_ui/view_builder/panels.rb', line 402

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

#field_value(prop, collect_ids: true) ⇒ Object



386
387
388
# File 'app/helpers/glib/json_ui/view_builder/panels.rb', line 386

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

#hint_label(prop, args) ⇒ Object



394
395
396
# File 'app/helpers/glib/json_ui/view_builder/panels.rb', line 394

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

#model(model) ⇒ Object



373
374
375
376
# File 'app/helpers/glib/json_ui/view_builder/panels.rb', line 373

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

#order_index(index) ⇒ Object



378
379
380
# File 'app/helpers/glib/json_ui/view_builder/panels.rb', line 378

def order_index(index)
  @assoc_order_index = index
end

#placeholder_label(prop, args) ⇒ Object



398
399
400
# File 'app/helpers/glib/json_ui/view_builder/panels.rb', line 398

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