avo 2.32.3 → 2.32.4

Sign up to get free protection for your applications and to get access to all the features.

Potentially problematic release.


This version of avo might be problematic. Click here for more details.

checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 4d337922f3d015b07ee31573c8ca5f5e9f502d18869fcd3060421eadcd5bbc40
4
- data.tar.gz: e6d5bc826b7a5d440a777a52c7b6f7f80962c2d9ec3d8dad9c2d6805ec2cffb4
3
+ metadata.gz: ca219e472c153396f4f8dd6d4cbe2e44a09d3af4e497585c6dd1d736b25316ba
4
+ data.tar.gz: 261b1d9f24a6ae175b1941163dbe99194f2af8ac21fed1b73efacdb73d7892c5
5
5
  SHA512:
6
- metadata.gz: 5c812e4de2ddc2c35b4ed53d4b2f88a5716853d9b231e996ccebcba0d6c897dd8934074b496948fbb312d8d07339d167a4e645573a95336aee214f965885189f
7
- data.tar.gz: b5644e6aae542712ab75d39745f6fa21b2aab41f50450720a41fc4d06a30b25baf9bbe3968c1b885f3cc591824b325a24350b57274f502a0558c50dbe6eea014
6
+ metadata.gz: c02d665d1bafa6776c3b7066c6d47e78b36ed788b4c89b2908563ce920cbafe60431deeb142394fc446abc38cbb2f8405ff0026d290cba824335a466cd6cd9c6
7
+ data.tar.gz: 2816d0af24529faaae699eb1fbc0f1f62b7c37fddf4edd59f9fb0bbb86e201d4d665e23be3e469576b7df03664659b124ff87a3af434f058c8b5e37fbeecfe19
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- avo (2.32.3)
4
+ avo (2.32.4)
5
5
  actionview (>= 6.0)
6
6
  active_link_to
7
7
  activerecord (>= 6.0)
@@ -53,13 +53,15 @@ class Avo::ActionsComponent < ViewComponent::Base
53
53
 
54
54
  def single_record_path(id)
55
55
  Avo::Services::URIService.parse(@resource.record_path)
56
- .append_paths("actions", id)
56
+ .append_paths("actions")
57
+ .append_query("action_id": id)
57
58
  .to_s
58
59
  end
59
60
 
60
61
  def many_records_path(id)
61
62
  Avo::Services::URIService.parse(@resource.records_path)
62
- .append_paths("actions", id)
63
+ .append_paths("actions")
64
+ .append_query("action_id": id)
63
65
  .to_s
64
66
  end
65
67
  end
@@ -4,7 +4,7 @@
4
4
  <%= js_map(resource_location_markers, **resource_mapkick_options) %>
5
5
  </div>
6
6
  <% if render_table? %>
7
- <div class="overflow-auto<%= table_component_order_class %>">
7
+ <div class="overflow-auto <%= table_component_order_class %>">
8
8
  <%= render(Avo::Index::ResourceTableComponent.new(resources: @resources, resource: @resource, reflection: @reflection, parent_model: @parent_model, parent_resource: @parent_resource, pagy: @pagy, query: @query)) %>
9
9
  </div>
10
10
  <% end %>
@@ -9,7 +9,7 @@
9
9
  >
10
10
  <%= form_with model: @model,
11
11
  scope: 'fields',
12
- url: "#{@resource.records_path}/actions/#{@action.param_id}",
12
+ url: "#{@resource.records_path}/actions",
13
13
  local: true,
14
14
  data: @action.class.form_data_attributes do |form|
15
15
  %>
@@ -20,6 +20,7 @@
20
20
  <div class="flex-1 flex">
21
21
  <%= @action.get_message %>
22
22
  </div>
23
+ <%= hidden_field_tag :action_id, @action.param_id %>
23
24
  <%= form.hidden_field :avo_resource_ids, value: params[:resource_ids], 'data-action-target': 'resourceIds' %>
24
25
  <%= form.hidden_field :avo_selected_query, 'data-action-target': 'selectedAllQuery' %>
25
26
  <% if @action.get_fields.present? %>
data/config/routes.rb CHANGED
@@ -28,8 +28,8 @@ Avo::Engine.routes.draw do
28
28
  delete "/:resource_name/:id/active_storage_attachments/:attachment_name/:attachment_id", to: "attachments#destroy"
29
29
 
30
30
  # Actions
31
- get "/:resource_name(/:id)/actions/:action_id", to: "actions#show"
32
- post "/:resource_name(/:id)/actions/:action_id", to: "actions#handle"
31
+ get "/:resource_name(/:id)/actions/(:action_id)", to: "actions#show"
32
+ post "/:resource_name(/:id)/actions/(:action_id)", to: "actions#handle"
33
33
 
34
34
  # Generate resource routes as below:
35
35
  # resources :posts
@@ -145,7 +145,7 @@ module Avo
145
145
  end
146
146
 
147
147
  def param_id
148
- self.class.to_s.demodulize.underscore.tr "/", "_"
148
+ self.class.to_s
149
149
  end
150
150
 
151
151
  def succeed(text)
@@ -18,7 +18,10 @@ module Avo
18
18
  end
19
19
 
20
20
  def path
21
- Avo::Services::URIService.parse(@resource.record_path).append_paths("actions", action.param_id).to_s
21
+ Avo::Services::URIService.parse(@resource.record_path)
22
+ .append_paths("actions")
23
+ .append_query(action_id: action.param_id)
24
+ .to_s
22
25
  end
23
26
 
24
27
  def label
data/lib/avo/version.rb CHANGED
@@ -1,3 +1,3 @@
1
1
  module Avo
2
- VERSION = "2.32.3" unless const_defined?(:VERSION)
2
+ VERSION = "2.32.4" unless const_defined?(:VERSION)
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: avo
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.32.3
4
+ version: 2.32.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - Adrian Marin
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2023-05-11 00:00:00.000000000 Z
12
+ date: 2023-05-12 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: activerecord