katalyst-tables 2.1.1 → 2.1.2
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +1 -1
- data/app/components/concerns/katalyst/tables/turbo_replaceable.rb +4 -4
- data/app/components/katalyst/tables/pagy_nav_component.rb +3 -1
- data/app/models/concerns/katalyst/tables/collection/pagination.rb +3 -3
- data/app/models/concerns/katalyst/tables/collection/sorting.rb +0 -2
- data/lib/katalyst/tables/backend.rb +5 -0
- data/lib/katalyst/tables/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: ddd6b87989959fe3bea80d3d061984ace8fbaa918033ae6d40f1fb41fa752a4f
|
4
|
+
data.tar.gz: c1fcff810e0c6e76ae8ae8df7a92f26d0badd1601b6fd091748249eaeebdc262
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 39a50df893890ed53a0d54acc7ab5d23a0292c9e98ec82b4e6286325713e115d718cfcdaf8caf6c0b2ce211ec20ea514eb53b5dc275dfe04bf253ee00d094aa5
|
7
|
+
data.tar.gz: 919db4197193d5c4d2be8ea6c15642ff309819757c32ae6cb99266412029e0d250156220584442d048b97a40bcc9c5cce7660d141ac9fb157d12d8468b6fd268
|
data/README.md
CHANGED
@@ -281,8 +281,8 @@ def index
|
|
281
281
|
table = Katalyst::Turbo::TableComponent.new(collection:, id: "people")
|
282
282
|
|
283
283
|
respond_to do |format|
|
284
|
+
format.turbo_stream { render table } if self_referred?
|
284
285
|
format.html { render locals: { table: table } }
|
285
|
-
format.turbo_stream { render table }
|
286
286
|
end
|
287
287
|
end
|
288
288
|
```
|
@@ -47,10 +47,10 @@ module Katalyst
|
|
47
47
|
component_class.alias_method(:vc_render_template_for, :render_template_for)
|
48
48
|
component_class.class_eval <<-RUBY, __FILE__, __LINE__ + 1
|
49
49
|
def render_template_for(variant = nil)
|
50
|
-
|
51
|
-
|
52
|
-
|
53
|
-
|
50
|
+
if turbo? && response.media_type.eql?("text/vnd.turbo-stream.html")
|
51
|
+
turbo_stream.replace(id, vc_render_template_for(variant))
|
52
|
+
else
|
53
|
+
vc_render_template_for(variant)
|
54
54
|
end
|
55
55
|
end
|
56
56
|
RUBY
|
@@ -3,7 +3,9 @@
|
|
3
3
|
module Katalyst
|
4
4
|
module Tables
|
5
5
|
class PagyNavComponent < ViewComponent::Base # :nodoc:
|
6
|
-
|
6
|
+
# Pagy is not a required gem unless you're using pagination
|
7
|
+
# Expect to see NoMethodError failures if pagy is not available
|
8
|
+
"Pagy::Frontend".safe_constantize&.tap { |pagy| include(pagy) }
|
7
9
|
|
8
10
|
attr_reader :pagy_options
|
9
11
|
|
@@ -1,7 +1,5 @@
|
|
1
1
|
# frozen_string_literal: true
|
2
2
|
|
3
|
-
require "pagy/backend"
|
4
|
-
|
5
3
|
module Katalyst
|
6
4
|
module Tables
|
7
5
|
module Collection
|
@@ -41,7 +39,9 @@ module Katalyst
|
|
41
39
|
end
|
42
40
|
|
43
41
|
class Paginate # :nodoc:
|
44
|
-
|
42
|
+
# Pagy is not a required gem unless you're using pagination
|
43
|
+
# Expect to see NoMethodError failures if pagy is not available
|
44
|
+
"Pagy::Backend".safe_constantize&.tap { |pagy| include(pagy) }
|
45
45
|
|
46
46
|
def initialize(app)
|
47
47
|
@app = app
|
@@ -27,6 +27,11 @@ module Katalyst
|
|
27
27
|
.apply(collection)
|
28
28
|
end
|
29
29
|
|
30
|
+
def self_referred?
|
31
|
+
request.referer.present? && URI.parse(request.referer).path == request.path
|
32
|
+
end
|
33
|
+
alias self_refered? self_referred?
|
34
|
+
|
30
35
|
included do
|
31
36
|
class_attribute :_default_table_component, instance_accessor: false
|
32
37
|
end
|