effective_pages 3.13.1 → 3.13.3

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: 16a192b345e3f1e3b2d8dd56be2f185843e3a15d9853741c2ef9a9a28173cde1
4
- data.tar.gz: a3e8fb8d856392c5f6bb9113addc693ab645d0dc04b7e033706ff67db6d2cb30
3
+ metadata.gz: 427237fb7a8b2cd95894a16fa9e445b6d22dffbdfd58355716a2cbc84a48bc04
4
+ data.tar.gz: 5b7071b4ec13da0db203905617c97b19a817ad578dd4f5d2f0bc492a18b7eea4
5
5
  SHA512:
6
- metadata.gz: 5c7adaf3d62e8774c7f6d83b37ce725a9e0d00886d13d467f860f0c724973e2c9e884bab54a80f7d3ce79d16402a5ec6c872b7cf963ac889e63843a75506d0e2
7
- data.tar.gz: d1c93502f727d7225cf6b262c0b35fea80ccabeb7869c2d2fa2a0b67c30c37694b021b9e1ed140cbd9ee0dd281cc85a281bac765f70b5bb78da9cdb0720ad2a1
6
+ metadata.gz: '029b2beb2263b0d50ff7142aae086c9c664ae8d5ce2a849b50d72e81492c1439ab4b1ed30d753efff491431bf248ab10dc8a3af872833a2a7d5d40ec3a1832ef'
7
+ data.tar.gz: cd87d4fbb6e0fe59dcc3d6f43422496191b41aba511cacd05f1e852eddf714ff600bcfa3e375e45f613e9c6fdd01d00539e0a6c2285614e2e527f05c44a4191b
@@ -14,6 +14,10 @@ class EffectivePagesDatatable < Effective::Datatable
14
14
  col :id, visible: false
15
15
  col :updated_at, visible: false
16
16
 
17
+ col :published?, as: :boolean
18
+ col :published_start_at, label: "Published start", visible: false
19
+ col :published_end_at, label: "Published end", visible: false
20
+
17
21
  col :title
18
22
 
19
23
  col :slug do |page|
@@ -21,22 +25,19 @@ class EffectivePagesDatatable < Effective::Datatable
21
25
  end
22
26
 
23
27
  col :draft?, as: :boolean, visible: false
24
- col :published?, as: :boolean
25
- col :published_start_at
26
- col :published_end_at
27
28
 
28
29
  col :layout, visible: false
29
30
  col :tempate, visible: false
30
31
 
31
- col :menu_name
32
- col :menu_title
33
- col :menu_group
32
+ col :menu_name, label: "Menu"
33
+ col :menu_title, visible: false
34
+ col :menu_group, visible: false
34
35
 
35
36
  col :menu_url, visible: false
36
37
  col :menu_parent, search: { collection: admin_menu_parent_collection(), grouped: true }
37
38
  col :menu_position, visible: false
38
39
 
39
- col :page_banner, search: :string
40
+ col :page_banner, search: :string, visible: false
40
41
 
41
42
  col :authenticate_user, visible: false
42
43
  col :roles, visible: false
@@ -1,15 +1,8 @@
1
1
  = effective_form_with(model: [:admin, page], engine: true) do |f|
2
2
  = f.text_field :title
3
3
 
4
- -# acts_as_published
5
- = f.hide_if(:save_as_draft, true) do
6
- .row
7
- .col-md-6
8
- = f.datetime_field :published_start_at, hint: 'The page will be available starting on this date and time. Leave blank to publish immediately.'
9
- .col-md-6
10
- = f.datetime_field :published_end_at, hint: 'The page will no longer be available after this date and time. Leave blank for no end date.', date_linked: false
11
-
12
- = f.check_box :save_as_draft, label: "Save as a draft. It will not appear in a menu and can only be accessed by admin users."
4
+ = acts_as_published_fields(f)
5
+ = acts_as_slugged_fields(f, url: (effective_pages.page_url(f.object) rescue nil))
13
6
 
14
7
  = f.text_field :meta_description,
15
8
  hint: "150 character summary. Appears on Google search results underneath the page title. ",
@@ -25,10 +18,6 @@
25
18
  - else
26
19
  = f.hidden_field :template, value: templates.first
27
20
 
28
- - if f.object.persisted? || f.object.errors.include?(:slug)
29
- - current_url = (effective_pages.page_url(f.object) rescue nil)
30
- = f.text_field :slug, hint: "The slug controls this page's internet address. Be careful, changing the slug will break links that other websites may have to the old address.<br>#{('This page is currently reachable via ' + link_to(current_url.gsub(f.object.slug, '<strong>' + f.object.slug + '</strong>').html_safe, current_url)) if current_url }".html_safe
31
-
32
21
  - if EffectivePages.banners?
33
22
  - if EffectivePages.banners_force_randomize
34
23
  = f.check_box :banner, label: 'Choose a page banner'
@@ -1,4 +1,4 @@
1
- %div{class: "alert alert-warning", role: 'alert'}
1
+ .alert.alert-warning.text-center{role: "alert"}
2
2
  .container
3
3
  .row
4
4
  .col= alert.body
@@ -1,5 +1,3 @@
1
- -# %div.effective-page-segments{'data-spy': 'scroll', 'data-target': "#effective-page-segments-menu", style: 'position: relative; height: 500px; overflow: auto;'}
2
-
3
1
  - page.page_segments.each do |segment|
4
- %div{id: segment.uid}
2
+ .page-segment{id: segment.uid}
5
3
  = segment.body
@@ -1,3 +1,3 @@
1
1
  module EffectivePages
2
- VERSION = '3.13.1'.freeze
2
+ VERSION = '3.13.3'.freeze
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: effective_pages
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.13.1
4
+ version: 3.13.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Code and Effect
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2024-07-31 00:00:00.000000000 Z
11
+ date: 2024-10-15 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rails