motor-admin 0.2.17 → 0.2.21

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 43b28780732981472580aa188997c0dadbe63723c896370c75517e43cc8af86d
4
- data.tar.gz: 4be16dd686ef091f7413255df883a740155daa7885c37d600ac23546b839d7fa
3
+ metadata.gz: a6fc72d7b1968213aa4845a2df527a839baeff558af4676719eaf8ea3f8ddc93
4
+ data.tar.gz: fdc2e35bbdead105ff8e92f90f7b172320941f7ca92af085918517ea27c6eb52
5
5
  SHA512:
6
- metadata.gz: 046de91e00db2c5db533ce5eae691719ae50fb049bd9221a56681e3692fc4b42b8b4a090243b9b7b407c24e3cfb21bb208f2ce24a61e8967c0839dc9181a0a7d
7
- data.tar.gz: a3dbda01e0d6f121ba9b2a90f5cca87bdb67772964627e134e735b4cace582a5a9869087c777069b5c5d5e2a3cc77e49ab843fb25decde19754b5afe64061eee
6
+ metadata.gz: fe3ff74c52022c83a4e51c1bdb67b0fe7239f644c1b2d70ad689bb70850a9d1955f5abfe2e92e237b936d01177847e7ac2197e492b024cfc52fbc5b15a07e793
7
+ data.tar.gz: 00c722957541fcb93b3f22d3c3ed59da71b39517cb9f0f0631990c80f5ae50963a57a26b656d95460175936a6f1214e9bf5185c0f5dfc44aab6252731eccda9d
@@ -276,3 +276,5 @@ en:
276
276
  user_dropdown: User dropdown
277
277
  upload: Upload
278
278
  there_is_nothing_here_yet: There is nothing here yet 🤷‍♂️
279
+ is_null: Is null
280
+ is_not_null: Is not null
@@ -276,6 +276,8 @@ es:
276
276
  user_dropdown: Despliegue del usuario
277
277
  upload: Subir a
278
278
  there_is_nothing_here_yet: Todavía no hay nada aquí 🤷‍♂️
279
+ is_null: Es nulo
280
+ is_not_null: No es nulo
279
281
  i:
280
282
  locale: es
281
283
  select:
@@ -272,6 +272,8 @@ pt:
272
272
  user_dropdown: Desistência do utilizador
273
273
  upload: Carregar
274
274
  there_is_nothing_here_yet: Ainda não há nada aqui 🤷‍♂️
275
+ is_null: É nulo
276
+ is_not_null: Não é nulo
275
277
  i:
276
278
  locale: pt
277
279
  select:
@@ -16,6 +16,7 @@ module Motor
16
16
  'numeric' => 'float',
17
17
  'decimal' => 'float',
18
18
  'float4' => 'float',
19
+ 'bpchar' => 'string',
19
20
  'float8' => 'float',
20
21
  'float16' => 'float',
21
22
  'text' => 'string',
@@ -43,11 +44,13 @@ module Motor
43
44
 
44
45
  return UNIFIED_TYPES.fetch(name, name) if name
45
46
 
46
- DEFAULT_TYPE
47
+ nil
47
48
  end
48
49
 
49
50
  def build_types_hash
50
- type_map = ActiveRecord::Base.connection.send(:type_map)
51
+ connection_class = defined?(::ResourceRecord) ? ::ResourceRecord : ActiveRecord::Base
52
+
53
+ type_map = connection_class.connection.send(:type_map)
51
54
 
52
55
  type_map.instance_variable_get('@mapping').map do |name, type|
53
56
  next unless name.is_a?(String)
@@ -16,7 +16,7 @@ module Motor
16
16
  def generate_csv_for_relation(relation, reset_limit: false)
17
17
  relation = relation.limit(nil).offset(nil) if reset_limit
18
18
 
19
- result = relation.klass.connection.exec_query(relation.to_sql)
19
+ result = load_query_for_csv(relation)
20
20
 
21
21
  CSV.generate do |csv|
22
22
  csv << result.columns
@@ -24,6 +24,14 @@ module Motor
24
24
  result.rows.each { |row| csv << row }
25
25
  end
26
26
  end
27
+
28
+ def load_query_for_csv(relation)
29
+ model_name = relation.klass.model_name.human(count: :many, default: relation.klass.name.titleize.pluralize)
30
+
31
+ query = Motor::Query.find_by(name: "Export #{model_name}")
32
+
33
+ relation.klass.connection.exec_query(query&.sql_body || relation.to_sql)
34
+ end
27
35
  end
28
36
  end
29
37
 
@@ -67,6 +67,10 @@ module Motor
67
67
  ['ilike', value.sub(LIKE_FILTER_VALUE_REGEXP, '\1%')]
68
68
  when 'ends_with'
69
69
  ['ilike', value.sub(LIKE_FILTER_VALUE_REGEXP, '%\1')]
70
+ when 'eqnull'
71
+ ['eq', nil]
72
+ when 'neqnull'
73
+ ['neq', nil]
70
74
  else
71
75
  [action, value]
72
76
  end
@@ -142,6 +142,8 @@ module Motor
142
142
 
143
143
  return { select_options: enum.keys } if enum
144
144
 
145
+ return { number_format: true } if !column.name.ends_with?('_id') && %i[integer float].include?(column.type)
146
+
145
147
  {}
146
148
  end
147
149
 
@@ -86,10 +86,10 @@ module Motor
86
86
  result.columns.map.with_index do |column_name, index|
87
87
  column_type_class = result.column_types[column_name]
88
88
 
89
- column_type =
90
- if column_type_class
91
- ActiveRecordUtils::Types.find_name_for_type(column_type_class)
92
- else
89
+ column_type = ActiveRecordUtils::Types.find_name_for_type(column_type_class) if column_type_class
90
+
91
+ column_type ||=
92
+ begin
93
93
  not_nil_value = result.rows.reduce(nil) do |acc, row|
94
94
  column = row[index]
95
95
 
@@ -10,26 +10,19 @@ module Motor
10
10
  def call(model, cache_key:)
11
11
  configs = Motor::Configs::LoadFromCache.load_resources(cache_key: cache_key)
12
12
 
13
- return model if configs.blank?
13
+ return model if configs.blank? || sti_model?(model)
14
14
 
15
15
  maybe_fetch_from_cache(
16
16
  model,
17
17
  cache_key.to_s + model.object_id.to_s,
18
- lambda {
19
- resource_config = configs.find { |r| r.name == model.name.underscore }
20
-
21
- if resource_config
22
- build_configured_model(model, resource_config.preferences)
23
- else
24
- define_class_name_method(Class.new(model), model)
25
- end
26
- },
18
+ -> { build_configured_model_from_configs(model, configs) },
27
19
  ->(klass) { configure_reflection_classes(klass, cache_key) }
28
20
  )
29
21
  end
30
22
 
31
23
  def build_configured_model(model, config)
32
24
  klass = Class.new(model)
25
+ klass.inheritance_column = nil if model.superclass.abstract_class
33
26
 
34
27
  define_class_name_method(klass, model)
35
28
 
@@ -199,6 +192,20 @@ module Motor
199
192
  postprocess_block.call(result)
200
193
  end
201
194
  end
195
+
196
+ def build_configured_model_from_configs(model, configs)
197
+ resource_config = configs.find { |r| r.name == model.name.underscore }
198
+
199
+ if resource_config
200
+ build_configured_model(model, resource_config.preferences)
201
+ else
202
+ define_class_name_method(Class.new(model), model)
203
+ end
204
+ end
205
+
206
+ def sti_model?(model)
207
+ !model.superclass.abstract_class && model.columns_hash[model.inheritance_column.to_s]
208
+ end
202
209
  end
203
210
  end
204
211
  end
data/lib/motor/version.rb CHANGED
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Motor
4
- VERSION = '0.2.17'
4
+ VERSION = '0.2.21'
5
5
  end
@@ -2601,9 +2601,9 @@
2601
2601
  "icons/zoom-out.svg.gz": "icons/zoom-out.svg.gz",
2602
2602
  "icons/zoom-question.svg": "icons/zoom-question.svg",
2603
2603
  "icons/zoom-question.svg.gz": "icons/zoom-question.svg.gz",
2604
- "main-25e14f5ae8855e7368e7.css.gz": "main-25e14f5ae8855e7368e7.css.gz",
2605
- "main-25e14f5ae8855e7368e7.js.LICENSE.txt": "main-25e14f5ae8855e7368e7.js.LICENSE.txt",
2606
- "main-25e14f5ae8855e7368e7.js.gz": "main-25e14f5ae8855e7368e7.js.gz",
2607
- "main.css": "main-25e14f5ae8855e7368e7.css",
2608
- "main.js": "main-25e14f5ae8855e7368e7.js"
2604
+ "main-fa2bc70ab29bad641f1a.css.gz": "main-fa2bc70ab29bad641f1a.css.gz",
2605
+ "main-fa2bc70ab29bad641f1a.js.LICENSE.txt": "main-fa2bc70ab29bad641f1a.js.LICENSE.txt",
2606
+ "main-fa2bc70ab29bad641f1a.js.gz": "main-fa2bc70ab29bad641f1a.js.gz",
2607
+ "main.css": "main-fa2bc70ab29bad641f1a.css",
2608
+ "main.js": "main-fa2bc70ab29bad641f1a.js"
2609
2609
  }
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: motor-admin
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.17
4
+ version: 0.2.21
5
5
  platform: ruby
6
6
  authors:
7
7
  - Pete Matsyburka
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2021-11-03 00:00:00.000000000 Z
11
+ date: 2021-11-08 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: activerecord-filter
@@ -1525,8 +1525,8 @@ files:
1525
1525
  - ui/dist/icons/zoom-money.svg.gz
1526
1526
  - ui/dist/icons/zoom-out.svg.gz
1527
1527
  - ui/dist/icons/zoom-question.svg.gz
1528
- - ui/dist/main-25e14f5ae8855e7368e7.css.gz
1529
- - ui/dist/main-25e14f5ae8855e7368e7.js.gz
1528
+ - ui/dist/main-fa2bc70ab29bad641f1a.css.gz
1529
+ - ui/dist/main-fa2bc70ab29bad641f1a.js.gz
1530
1530
  - ui/dist/manifest.json
1531
1531
  homepage:
1532
1532
  licenses: