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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 4bb91ab45ce78d6311390251a678a7d015f38834e702999e5073b8d537bf4342
4
- data.tar.gz: 5ba8c4a46f6c6bdaebb1ce8a35790f7acb14c9b05e05b12cd60bf58521a7a991
3
+ metadata.gz: aac3092349f067eb4327e5b3ccf5bce819d29365bb6a5d8157382cf863b6e14a
4
+ data.tar.gz: 3d475ef799448ee4189642e279448b8f73b15e3a321e4a9c1e225a7d0f988d8e
5
5
  SHA512:
6
- metadata.gz: 9a9082834cd4f9b0de2382f60799c927901bead7775683438a714a6c05815f7f5bec1d758aab4f6cc76af15fbf9f1642f0161ee8183911973dfc931718a21122
7
- data.tar.gz: 6e7754cb9fe3b4c723e1412b3804035a8b62c1e64bf568e5729ba17d68b989b76b33422918c4b09c3966e6107d616280439f7d0e48798f09b3a3ddaa8e10dac7
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.26.3.pre.pr1601)
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.1)
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
- <%= render Avo::Index::Ordering::ButtonsComponent.new resource: @resource, reflection: @reflection, view_type: @view_type %>
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> · &copy; <%= Date.today.year %> AvoHQ · <span title="<%= Avo::App.license.valid ? 'valid' : 'invalid'%> <%= Avo::App.license.id %> license">v<%= Avo::VERSION %></span> · Current.user.id = <%= Current.user&.id %>
2
+ <a href="https://avohq.io/" target="_blank">Avo</a> · &copy; <%= 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>
@@ -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
@@ -1,3 +1,3 @@
1
1
  module Avo
2
- VERSION = "2.26.3.pre.pr1601" unless const_defined?(:VERSION)
2
+ VERSION = "2.27.1" unless const_defined?(:VERSION)
3
3
  end
@@ -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.to_sym] || {field: "text"}
217
+ names_mapping[name.to_sym] || fields_mapping[type&.to_sym] || {field: "text"}
218
218
  end
219
219
 
220
220
  def associations_mapping
@@ -85,6 +85,10 @@ en:
85
85
  resource_created: Record created
86
86
  resource_destroyed: Record destroyed
87
87
  resource_translations:
88
+ team_members:
89
+ one: team member
90
+ other: team memberz
91
+ zero: team memberz
88
92
  user:
89
93
  one: user
90
94
  other: users
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.26.3.pre.pr1601
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-27 00:00:00.000000000 Z
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: 1.3.1
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