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



137
138
139
# File 'lib/bhf/platform.rb', line 137

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


157
158
159
# File 'lib/bhf/platform.rb', line 157

def custom_link
  table_options 'custom_link'
end

#custom_partialObject



161
162
163
# File 'lib/bhf/platform.rb', line 161

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

#definitionsObject



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

def definitions
  default_attrs(show_options(:definitions), @collection).
  each_with_object([]) do |field, obj|
    obj << Bhf::Data::Column.new(field)
  end
end

#entries_per_pageObject



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

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



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

def form
  @data['form']
end

#has_file_upload?Boolean

Returns:

  • (Boolean)


110
111
112
113
114
115
116
117
# File 'lib/bhf/platform.rb', line 110

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

#hide_deleteObject



153
154
155
# File 'lib/bhf/platform.rb', line 153

def hide_delete
  table_options 'hide_delete'
end

#hide_editObject



145
146
147
# File 'lib/bhf/platform.rb', line 145

def hide_edit
  table_options 'hide_edit'
end

#hooks(method) ⇒ Object



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

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

#showObject



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

def show
  @data['show']
end

#show_duplicateObject



149
150
151
# File 'lib/bhf/platform.rb', line 149

def show_duplicate
  table_options 'show_duplicate'
end

#sortableObject



141
142
143
# File 'lib/bhf/platform.rb', line 141

def sortable
  table_options 'sortable'
end

#tableObject



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

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