avo 2.26.3.pre.pr1601 → 2.27.1
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 +4 -4
- data/Gemfile.lock +2 -2
- data/app/components/avo/index/ordering/buttons_component.html.erb +1 -1
- data/app/components/avo/index/resource_controls_component.html.erb +4 -1
- data/app/components/avo/index/resource_controls_component.rb +6 -0
- data/app/views/avo/partials/_footer.html.erb +1 -1
- data/app/views/layouts/avo/application.html.erb +1 -1
- data/config/i18n-tasks.yml +1 -0
- data/lib/avo/tab.rb +8 -1
- data/lib/avo/version.rb +1 -1
- data/lib/generators/avo/resource_generator.rb +1 -1
- data/lib/generators/avo/templates/locales/avo.en.yml +4 -0
- metadata +4 -5
- data/config/master.key +0 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: aac3092349f067eb4327e5b3ccf5bce819d29365bb6a5d8157382cf863b6e14a
|
4
|
+
data.tar.gz: 3d475ef799448ee4189642e279448b8f73b15e3a321e4a9c1e225a7d0f988d8e
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 9852e6779654ff6dd30309e5966d4476c10da02ac3dfc34c4696c0cd82dce28aca92ffbfb8e0567ddc3c5ab9b7fc1094f13dbd3daec0f3c7e140d05b9f120c38
|
7
|
+
data.tar.gz: dda61e467b8f6e907b9711695d6ea940ffddfe9b8dc9b27a3d192d9914b35d700ecd6785ff6fa1db5bbddf99e257f9adb828ad3aad3402021ff127942841431c
|
data/Gemfile.lock
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
PATH
|
2
2
|
remote: .
|
3
3
|
specs:
|
4
|
-
avo (2.
|
4
|
+
avo (2.27.1)
|
5
5
|
actionview (>= 6.0)
|
6
6
|
active_link_to
|
7
7
|
activerecord (>= 6.0)
|
@@ -273,7 +273,7 @@ GEM
|
|
273
273
|
nokogiri (1.14.2-x86_64-linux)
|
274
274
|
racc (~> 1.4)
|
275
275
|
orm_adapter (0.5.0)
|
276
|
-
pagy (6.0.
|
276
|
+
pagy (6.0.2)
|
277
277
|
parallel (1.22.1)
|
278
278
|
parser (3.2.0.0)
|
279
279
|
ast (~> 2.4.1)
|
@@ -1,4 +1,4 @@
|
|
1
|
-
<div class="flex items-center justify-center">
|
1
|
+
<div class="flex items-center justify-center" data-component="<%= self.class.to_s.underscore %>">
|
2
2
|
<% if display_inline? %>
|
3
3
|
<div class="flex max-w-xs rounded">
|
4
4
|
<%= render Avo::Index::Ordering::ButtonComponent.new resource: @resource, reflection: @reflection, direction: :higher, svg: 'arrow-up' %>
|
@@ -1,6 +1,9 @@
|
|
1
1
|
<div class="space-x-2 flex flex-row justify-around w-full">
|
2
2
|
<% button_classes = "text-gray-600 h-6 hover:text-gray-600" %>
|
3
|
-
|
3
|
+
|
4
|
+
<% if can_reorder? %>
|
5
|
+
<%= render Avo::Index::Ordering::ButtonsComponent.new resource: @resource, reflection: @reflection, view_type: @view_type %>
|
6
|
+
<% end %>
|
4
7
|
|
5
8
|
<% if can_view? %>
|
6
9
|
<%= link_to helpers.svg('eye', class: button_classes),
|
@@ -31,6 +31,12 @@ class Avo::Index::ResourceControlsComponent < Avo::ResourceComponent
|
|
31
31
|
@resource.authorization.authorize_action(:show, raise_exception: false)
|
32
32
|
end
|
33
33
|
|
34
|
+
def can_reorder?
|
35
|
+
return authorize_association_for(:reorder) if @reflection.present?
|
36
|
+
|
37
|
+
@resource.authorization.authorize_action(:reorder, raise_exception: false)
|
38
|
+
end
|
39
|
+
|
34
40
|
def show_path
|
35
41
|
args = {}
|
36
42
|
|
@@ -1,3 +1,3 @@
|
|
1
1
|
<div class="text-center text-sm text-gray-700 <%= 'print:hidden' if Avo.configuration.hide_layout_when_printing %>">
|
2
|
-
<a href="https://avohq.io/" target="_blank">Avo</a> · © <%= Date.today.year %> AvoHQ · <span title="<%= Avo::App.license.valid ? 'valid' : 'invalid'%> <%= Avo::App.license.id %> license">v<%= Avo::VERSION %></span>
|
2
|
+
<a href="https://avohq.io/" target="_blank">Avo</a> · © <%= Date.today.year %> AvoHQ · <span title="<%= Avo::App.license.valid ? 'valid' : 'invalid'%> <%= Avo::App.license.id %> license">v<%= Avo::VERSION %></span>
|
3
3
|
</div>
|
@@ -36,7 +36,7 @@
|
|
36
36
|
<div class="content p-4 lg:p-6 flex-1 flex flex-col justify-between items-stretch <%= @container_classes %>">
|
37
37
|
<%= render partial: "avo/partials/custom_tools_alert" %>
|
38
38
|
<div class="flex flex-1 flex-col justify-between items-stretch space-y-8">
|
39
|
-
<%= yield %>
|
39
|
+
<%= yield.force_encoding('UTF-8') %>
|
40
40
|
<%= render partial: "avo/partials/footer" %>
|
41
41
|
</div>
|
42
42
|
</div>
|
data/config/i18n-tasks.yml
CHANGED
@@ -117,6 +117,7 @@ ignore_missing:
|
|
117
117
|
- 'avo.field_translations.people'
|
118
118
|
- 'avo.number_of_items'
|
119
119
|
- 'avo.resource_translations.user'
|
120
|
+
- 'avo.resource_translations.team_members'
|
120
121
|
- 'avo.x_items_more'
|
121
122
|
|
122
123
|
# - 'errors.messages.{accepted,blank,invalid,too_short,too_long}'
|
data/lib/avo/tab.rb
CHANGED
@@ -6,7 +6,6 @@ class Avo::Tab
|
|
6
6
|
class_attribute :item_type, default: :tab
|
7
7
|
delegate :items, :add_item, to: :items_holder
|
8
8
|
|
9
|
-
attr_reader :name
|
10
9
|
attr_reader :view
|
11
10
|
attr_accessor :description
|
12
11
|
attr_accessor :items_holder
|
@@ -28,6 +27,14 @@ class Avo::Tab
|
|
28
27
|
except_on args[:except_on] if args[:except_on].present?
|
29
28
|
end
|
30
29
|
|
30
|
+
def name
|
31
|
+
if @name.respond_to?(:call)
|
32
|
+
Avo::Hosts::BaseHost.new(block: @name).handle
|
33
|
+
else
|
34
|
+
@name
|
35
|
+
end
|
36
|
+
end
|
37
|
+
|
31
38
|
def hydrate(view: nil)
|
32
39
|
@view = view
|
33
40
|
|
data/lib/avo/version.rb
CHANGED
@@ -214,7 +214,7 @@ module Generators
|
|
214
214
|
end
|
215
215
|
|
216
216
|
def field(name, type)
|
217
|
-
names_mapping[name.to_sym] || fields_mapping[type
|
217
|
+
names_mapping[name.to_sym] || fields_mapping[type&.to_sym] || {field: "text"}
|
218
218
|
end
|
219
219
|
|
220
220
|
def associations_mapping
|
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.
|
4
|
+
version: 2.27.1
|
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-02-
|
12
|
+
date: 2023-02-28 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: activerecord
|
@@ -1696,7 +1696,6 @@ files:
|
|
1696
1696
|
- config/credentials.yml.enc
|
1697
1697
|
- config/i18n-tasks.yml
|
1698
1698
|
- config/initializers/pagy.rb
|
1699
|
-
- config/master.key
|
1700
1699
|
- config/routes.rb
|
1701
1700
|
- config/spring.rb
|
1702
1701
|
- db/factories.rb
|
@@ -1952,9 +1951,9 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
1952
1951
|
version: 2.6.0
|
1953
1952
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
1954
1953
|
requirements:
|
1955
|
-
- - "
|
1954
|
+
- - ">="
|
1956
1955
|
- !ruby/object:Gem::Version
|
1957
|
-
version:
|
1956
|
+
version: '0'
|
1958
1957
|
requirements: []
|
1959
1958
|
rubygems_version: 3.3.3
|
1960
1959
|
signing_key:
|
data/config/master.key
DELETED
@@ -1 +0,0 @@
|
|
1
|
-
2aeb23d82b909d9c6b5abb62f7058c2a
|