Class: Bhf::Platform

Inherits:
Object
  • Object
show all
Defined in:
lib/bhf/platform.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(options, page_name, user = nil) ⇒ Platform

Returns a new instance of Platform.



7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
# File 'lib/bhf/platform.rb', line 7

def initialize(options, page_name, user = nil)
  @objects = []

  if options.is_a?(String)
    options = {options => nil}
  end
  @name = options.keys[0]
  @data = options.values[0] || {}
  @collection = get_collection

  t_model_path = "activerecord.models.#{model.model_name.downcase}"
  model_name = I18n.t(t_model_path, count: 2, default: @name.pluralize.capitalize)
  @title = I18n.t("bhf.platforms.#{@name}.title", count: 2, default: model_name)
  model_name = I18n.t(t_model_path, count: 1, default: @name.singularize.capitalize)
  @title_singular = I18n.t("bhf.platforms.#{@name}.title", count: 1, default: model_name)
  model_name = I18n.t(t_model_path, count: 0, default: @name.singularize.capitalize)
  @title_zero = I18n.t("bhf.platforms.#{@name}.title", count: 0, default: model_name)

  @page_name = page_name
  @user = user
end

Instance Attribute Details

#nameObject (readonly)

Returns the value of attribute name.



5
6
7
# File 'lib/bhf/platform.rb', line 5

def name
  @name
end

#objectsObject (readonly)

Returns the value of attribute objects.



5
6
7
# File 'lib/bhf/platform.rb', line 5

def objects
  @objects
end

#page_nameObject (readonly)

Returns the value of attribute page_name.



5
6
7
# File 'lib/bhf/platform.rb', line 5

def page_name
  @page_name
end

#paginationObject

Returns the value of attribute pagination.



4
5
6
# File 'lib/bhf/platform.rb', line 4

def pagination
  @pagination
end

#titleObject (readonly)

Returns the value of attribute title.



5
6
7
# File 'lib/bhf/platform.rb', line 5

def title
  @title
end

#title_singularObject (readonly)

Returns the value of attribute title_singular.



5
6
7
# File 'lib/bhf/platform.rb', line 5

def title_singular
  @title_singular
end

#title_zeroObject (readonly)

Returns the value of attribute title_zero.



5
6
7
# File 'lib/bhf/platform.rb', line 5

def title_zero
  @title_zero
end

Instance Method Details

#columnsObject



92
93
94
95
96
97
# File 'lib/bhf/platform.rb', line 92

def columns
  default_attrs(table_options(:columns), @collection[0..5]).
  each_with_object([]) do |field, obj|
    obj << Bhf::Data::Column.new(field)
  end
end

#columns_countObject



124
125
126
# File 'lib/bhf/platform.rb', line 124

def columns_count
  columns.count + (sortable ? 2 : 1)
end

#custom_columns?Boolean

Returns:

  • (Boolean)


41
42
43
# File 'lib/bhf/platform.rb', line 41

def custom_columns?
  table_options(:columns).is_a?(Array)
end

#custom_partialObject



132
133
134
# File 'lib/bhf/platform.rb', line 132

def custom_partial
  table_options 'partial'
end

#custom_searchObject



37
38
39
# File 'lib/bhf/platform.rb', line 37

def custom_search
  table_options(:custom_search)
end

#entries_per_pageObject



99
100
101
# File 'lib/bhf/platform.rb', line 99

def entries_per_page
  table_options(:per_page)
end

#fieldsObject



88
89
90
# File 'lib/bhf/platform.rb', line 88

def fields
  default_attrs(form_options(:display), @collection, false)
end

#formObject



114
115
116
# File 'lib/bhf/platform.rb', line 114

def form
  @data['form']
end

#has_file_upload?Boolean

Returns:

  • (Boolean)


103
104
105
106
107
108
# File 'lib/bhf/platform.rb', line 103

def has_file_upload?
  fields.each do |field|
    return true if field.form_type.to_sym == :file
  end
  false
end

#hooks(method) ⇒ Object



118
119
120
121
122
# File 'lib/bhf/platform.rb', line 118

def hooks(method)
  if @data['hooks'] && @data['hooks'][method.to_s]
    @data['hooks'][method.to_s].to_sym
  end
end

#modelObject



79
80
81
82
# File 'lib/bhf/platform.rb', line 79

def model
  return @data['model'].constantize if @data['model']
  @name.singularize.camelize.constantize
end

#model_nameObject



84
85
86
# File 'lib/bhf/platform.rb', line 84

def model_name
  ActiveModel::Naming.singular(model)
end

#prepare_objects(options, paginate_options = nil) ⇒ Object



53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
# File 'lib/bhf/platform.rb', line 53

def prepare_objects(options, paginate_options = nil)
  if user_scope?
    chain = @user.send(table_options(:user_scope).to_sym)
  else
    chain = model
    chain = chain.send data_source if data_source
  end

  if options[:order]
    chain = chain.except(:order).order("#{options[:order]} #{options[:direction]}")
  end

  if search? && options[:search].present?
    chain = do_search(chain, options[:search])
  end


  if paginate_options && !sortable
    chain = chain.page(paginate_options[:page]).per(paginate_options[:per_page])
  elsif chain == model
    chain = chain.all
  end

  @objects = chain
end

#search?Boolean

Returns:

  • (Boolean)


29
30
31
# File 'lib/bhf/platform.rb', line 29

def search?
  table_options(:search) != false
end

#search_field?Boolean

Returns:

  • (Boolean)


33
34
35
# File 'lib/bhf/platform.rb', line 33

def search_field?
  table_options(:search_field) != false
end

#search_sourceObject



49
50
51
# File 'lib/bhf/platform.rb', line 49

def search_source
  table_options(:search) || :where
end

#sortableObject



128
129
130
# File 'lib/bhf/platform.rb', line 128

def sortable
  table_options 'sortable'
end

#tableObject



110
111
112
# File 'lib/bhf/platform.rb', line 110

def table
  @data['table']
end

#user_scope?Boolean

Returns:

  • (Boolean)


45
46
47
# File 'lib/bhf/platform.rb', line 45

def user_scope?
  @user && table_options(:user_scope)
end