tramway-admin 2.1.3.1 → 3.0.1

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: aeabc39d2bc0ce9ea3504bf578a0016a46e6278cbb27cdfbe8f393bf68f482fd
4
- data.tar.gz: 6d65c6e3b06f0b6ef86a285a7dad3bbd713eaa7cecb72d0440be493f8381eb88
3
+ metadata.gz: 02b3fd52b732d4e15e693c4cc89aad5e2f631cdeadea0856eedcfdfefa0089c0
4
+ data.tar.gz: fdd63869e0e5a63280fce0902e80d23f2f77430c7c1de04d040cb8dba3e38c17
5
5
  SHA512:
6
- metadata.gz: 900820722317c55bcc7cafb5a64632d75af778e91a6009b7edcc6dbf8a19ba6a6c5a21bbc18af6037f71e8a839d844fec7a244b4e0964758dea0b8f47cbdff98
7
- data.tar.gz: 36830caf1c44bba27810e610cda58030470511dd2c8c854ff0e10ce7a9fc6d5b5aa47e4cc70686e6ced584743d934abda6cae0d3956e2d1f3f8f02226f858b6f
6
+ metadata.gz: ab4de60de6b8b1b52f515f234d58dc42d15ab56a6417dce6d25e21c3446d10b684faf34cab7a873d3c29470b5b77187723834e963a4d943b757839514dfdec00
7
+ data.tar.gz: '086e0b2ab7575f43e07b4a1925faf826a4d9014cbc2eb61cec7c3c275154f5fb29608ca77136b1f051be9ecee30169c7f99f4f8f9d8ec5dbc3576e15a6d25128'
data/README.md CHANGED
@@ -192,6 +192,9 @@ en:
192
192
  class Admin::YourModelForm < Tramway::Core::ApplicationForm
193
193
  properties :title, :description, :text, :date, :logo
194
194
 
195
+ association :associated
196
+ association :another_polymorphic_associated
197
+
195
198
  def initialize(object)
196
199
  super(object).tap do
197
200
  form_properties title: :string,
@@ -199,6 +202,8 @@ class Admin::YourModelForm < Tramway::Core::ApplicationForm
199
202
  description: :ckeditor,
200
203
  date: :date_picker,
201
204
  text: :text,
205
+ associated: :association,
206
+ another_polymorphic_association: :polymorphic_association,
202
207
  birth_date: {
203
208
  type: :default,
204
209
  input_options: {
@@ -210,6 +215,22 @@ class Admin::YourModelForm < Tramway::Core::ApplicationForm
210
215
  end
211
216
  ```
212
217
 
218
+ **NOTE**
219
+ If you want fill inputs of this form, just send query params
220
+
221
+ ```
222
+ params = {
223
+ your_model: {
224
+ logo: '/file/url',
225
+ description: 'some text',
226
+ text: 'some another text',
227
+ associated_id: 5,
228
+ another_polymorphic_associated: 56,
229
+ another_polymorphic_associated_type: 'AnotherModel'
230
+ }
231
+ }
232
+ ```
233
+
213
234
  #### 10. Add inheritance to YourModel
214
235
 
215
236
  *app/models/your_model.rb*
@@ -465,7 +486,7 @@ To add notification to application, you need just set queries in initializers.
465
486
  # Example from tramway-event gem (you also can push context variables here)
466
487
 
467
488
  ::Tramway::Admin.set_notificable_queries new_participants: -> (current_user) do
468
- ::Tramway::Event::Participant.active.where(participation_state: :requested).send "#{current_user}_scope", current_user.id
489
+ ::Tramway::Event::Participant.where(participation_state: :requested).send "#{current_user}_scope", current_user.id
469
490
  end
470
491
  ```
471
492
 
@@ -541,7 +562,8 @@ class YourModelDecorator < Tramway::Core::ApplicationDecorator
541
562
  inner: lambda do # inner HTML you want to see in the button
542
563
  fa_icon 'file-excel'
543
564
  end,
544
- color: :success # bootstrap button color
565
+ color: :success, # bootstrap button color
566
+ method: :get # HTTP method. get method is a default. Available: :post, :patch: delete
545
567
  }
546
568
  ]
547
569
  }
@@ -21,7 +21,7 @@ module Tramway
21
21
  protected
22
22
 
23
23
  def check_available!
24
- raise 'Tramway::Admin - Model or Form is not available' if !model_given? && !form_given?
24
+ raise 'Tramway::Admin - Model or Form is not available. Looks like current user does not have access to change this model. Update your tramway initializer file' if !model_given? && !form_given?
25
25
  end
26
26
 
27
27
  def check_available_scope!
@@ -30,7 +30,7 @@ module Tramway
30
30
 
31
31
  def collections_counts
32
32
  @counts = decorator_class.collections.reduce({}) do |hash, collection|
33
- records = model_class.active.send(collection)
33
+ records = model_class.send(collection)
34
34
  records = records.send "#{current_admin.role}_scope", current_admin.id
35
35
  records = records.ransack(params[:filter]).result if params[:filter].present?
36
36
  params[:list_filters]&.each do |filter, value|
@@ -3,7 +3,7 @@
3
3
  class Tramway::Admin::RecordsController < ::Tramway::Admin::ApplicationController
4
4
  def index
5
5
  scope = params[:scope].present? ? params[:scope] : :all
6
- records = model_class.active.order(id: :desc).send scope
6
+ records = model_class.order(id: :desc).send scope
7
7
  records = records.full_text_search params[:search] if params[:search].present?
8
8
  if params[:filter].present?
9
9
  if params[:filter].is_a? String
@@ -30,7 +30,7 @@ class Tramway::Admin::RecordsController < ::Tramway::Admin::ApplicationControlle
30
30
  end
31
31
 
32
32
  def show
33
- @record = decorator_class.decorate model_class.active.find params[:id]
33
+ @record = decorator_class.decorate model_class.find params[:id]
34
34
  end
35
35
 
36
36
  def new
@@ -47,11 +47,11 @@ class Tramway::Admin::RecordsController < ::Tramway::Admin::ApplicationControlle
47
47
  end
48
48
 
49
49
  def edit
50
- @record_form = admin_form_class.new model_class.active.find params[:id]
50
+ @record_form = admin_form_class.new model_class.find params[:id]
51
51
  end
52
52
 
53
53
  def update
54
- @record_form = admin_form_class.new model_class.active.find params[:id]
54
+ @record_form = admin_form_class.new model_class.find params[:id]
55
55
  if params[:record][:aasm_event].present?
56
56
  if @record_form.model.send("may_#{params[:record][:aasm_event]}?")
57
57
  @record_form.model.send("#{params[:record][:aasm_event]}!")
@@ -67,8 +67,8 @@ class Tramway::Admin::RecordsController < ::Tramway::Admin::ApplicationControlle
67
67
  end
68
68
 
69
69
  def destroy
70
- record = model_class.active.find params[:id]
71
- record.remove!
70
+ record = model_class.find params[:id]
71
+ record.destroy
72
72
  redirect_to params[:redirect].present? ? params[:redirect] : records_path
73
73
  end
74
74
  end
@@ -10,7 +10,7 @@ class Tramway::Admin::SessionsController < ::Tramway::Admin::ApplicationControll
10
10
  end
11
11
 
12
12
  def create
13
- @session_form = ::Tramway::Auth::SessionForm.new ::Tramway::User::User.active.find_or_initialize_by email: params[:user][:email]
13
+ @session_form = ::Tramway::Auth::SessionForm.new ::Tramway::User::User.find_or_initialize_by email: params[:user][:email]
14
14
  if @session_form.validate params[:user]
15
15
  admin_sign_in @session_form.model
16
16
  redirect_to Tramway::Admin::Engine.routes.url_helpers.root_path
@@ -3,8 +3,8 @@
3
3
  module Tramway::Admin
4
4
  class SingletonsController < ApplicationController
5
5
  def show
6
- if model_class.active.first.present?
7
- @singleton = decorator_class.decorate model_class.active.first
6
+ if model_class.first.present?
7
+ @singleton = decorator_class.decorate model_class.first
8
8
  else
9
9
  @singleton_form = admin_form_class.new model_class.new
10
10
  render :new
@@ -13,7 +13,7 @@ module Tramway::Admin
13
13
  end
14
14
 
15
15
  def edit
16
- @singleton_form = admin_form_class.new model_class.active.first
16
+ @singleton_form = admin_form_class.new model_class.first
17
17
  end
18
18
 
19
19
  def create
@@ -26,7 +26,7 @@ module Tramway::Admin
26
26
  end
27
27
 
28
28
  def update
29
- @singleton_form = admin_form_class.new model_class.active.first
29
+ @singleton_form = admin_form_class.new model_class.first
30
30
  if @singleton_form.submit params[:singleton]
31
31
  redirect_to params[:redirect] || singleton_path(model: params[:model])
32
32
  else
@@ -20,7 +20,7 @@
20
20
  %td.actions
21
21
  .row
22
22
  &nbsp;&nbsp;&nbsp;
23
- = link_to fa_icon('pencil-alt'), edit_current_model_record_path(record.id), class: 'btn btn-warning btn-xs'
23
+ = link_to fa_icon('pencil-alt'), edit_current_model_record_path(record.id, redirect: current_model_records_path(record.id)), class: 'btn btn-warning btn-xs'
24
24
  &nbsp;&nbsp;
25
25
  = delete_button url: current_model_record_path(record.id), form_options: { class: :smart_button }, button_options: { class: 'btn btn-xs btn-danger' } do
26
26
  = fa_icon 'trash-alt'
@@ -8,7 +8,7 @@
8
8
  = hidden_field_tag :model, params[:model]
9
9
  = hidden_field_tag :scope, params[:scope]
10
10
  = hidden_field_tag :filter, (params[:filter].is_a?(ActionController::Parameters) ? params[:filter].permit!.to_h.to_json : params[:filter])
11
- - decorator_class(model_class).list_filters.each_slice(3) do |slice|
11
+ - decorator_class(model_class).list_filters&.each_slice(3) do |slice|
12
12
  .row-fluid.filters
13
13
  - slice.each do |filter|
14
14
  - case filter[1][:type]
@@ -2,6 +2,6 @@
2
2
 
3
3
  module Tramway
4
4
  module Admin
5
- VERSION = '2.1.3.1'
5
+ VERSION = '3.0.1'
6
6
  end
7
7
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: tramway-admin
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.1.3.1
4
+ version: 3.0.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Pavel Kalashnikov
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2021-08-21 00:00:00.000000000 Z
11
+ date: 2022-01-13 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: tramway-core
@@ -70,20 +70,20 @@ dependencies:
70
70
  name: copyright_mafa
71
71
  requirement: !ruby/object:Gem::Requirement
72
72
  requirements:
73
- - - "~>"
73
+ - - ">="
74
74
  - !ruby/object:Gem::Version
75
75
  version: 0.1.2
76
- - - ">="
76
+ - - "~>"
77
77
  - !ruby/object:Gem::Version
78
78
  version: 0.1.2
79
79
  type: :runtime
80
80
  prerelease: false
81
81
  version_requirements: !ruby/object:Gem::Requirement
82
82
  requirements:
83
- - - "~>"
83
+ - - ">="
84
84
  - !ruby/object:Gem::Version
85
85
  version: 0.1.2
86
- - - ">="
86
+ - - "~>"
87
87
  - !ruby/object:Gem::Version
88
88
  version: 0.1.2
89
89
  - !ruby/object:Gem::Dependency
@@ -330,7 +330,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
330
330
  - !ruby/object:Gem::Version
331
331
  version: '0'
332
332
  requirements: []
333
- rubygems_version: 3.1.6
333
+ rubygems_version: 3.0.3.1
334
334
  signing_key:
335
335
  specification_version: 4
336
336
  summary: Engine for admin