trusty-cms 7.0.23 → 7.0.24
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/Gemfile.lock +1 -1
- data/README.md +15 -6
- data/app/helpers/admin/url_helper.rb +16 -12
- data/lib/trusty_cms/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 3380e3eea06aeafbcf42ad8bcfbeb6d7aab6b62289265fbc81b74430c4a9c0c0
|
4
|
+
data.tar.gz: c6cac4b877f787958f03862fe734754a08d6f15173579c32c4ec82f6dae90a12
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 353a1a00a9298e3eeec76e1cc0c5785c0be100cc72ac1cba77ed04a23ddefa3e288a606fd2201c54a9fc12dcc8e00ed5216013c773a167e0bf478e10ed283d61
|
7
|
+
data.tar.gz: cbf06b90eb40e47bca28107fc9a3b67dd2c5ab9a8117add664271962730fb04d6eda6631c0408d30e980672c0ac0cb34cff26035d41cfe338e677b29869447a3
|
data/Gemfile.lock
CHANGED
data/README.md
CHANGED
@@ -77,13 +77,17 @@ Steps:
|
|
77
77
|
|
78
78
|
rspec
|
79
79
|
|
80
|
-
### Page Type Routes Setup
|
81
|
-
|
80
|
+
### Custom Page Type Routes Setup
|
81
|
+
Additional configuration is required to ensure correct URL generation in the admin interface — specifically for the "Edit Page" dropdown and the "Save and View Draft" functionality.
|
82
82
|
|
83
|
-
To enable this, create the following initializer
|
83
|
+
To enable this, create the following initializer: `config/initializers/page_type_routes.rb`
|
84
|
+
|
85
|
+
In this file, define a `CUSTOM_PAGE_TYPE_ROUTES` hash constant that maps custom Page model class names to the corresponding route segments defined in your `config/routes.rb` file. For example, the BlogPage model maps to the route `get 'blog/:slug'`, so its route segment is `'blog'`.
|
86
|
+
|
87
|
+
For custom Page models that rely on default routing behavior, define a `DEFAULT_PAGE_TYPE_ROUTES` array listing their class names. TrustyCMS will use these mappings to correctly build page URLs for use in the admin UI.
|
84
88
|
|
85
89
|
```ruby
|
86
|
-
|
90
|
+
CUSTOM_PAGE_TYPE_ROUTES = {
|
87
91
|
BlogPage: 'blog',
|
88
92
|
DonationPage: 'donate',
|
89
93
|
ExhibitionPage: 'exhibit',
|
@@ -93,9 +97,14 @@ PAGE_TYPE_ROUTES = {
|
|
93
97
|
ProductionPage: 'production',
|
94
98
|
VenuePage: 'venues',
|
95
99
|
}.freeze
|
96
|
-
```
|
97
100
|
|
98
|
-
|
101
|
+
DEFAULT_PAGE_TYPE_ROUTES = %w[
|
102
|
+
ConstituencyPage
|
103
|
+
FacilityPage
|
104
|
+
FileNotFoundPage
|
105
|
+
RailsPage
|
106
|
+
].freeze
|
107
|
+
```
|
99
108
|
|
100
109
|
### Page Status Refresh Setup
|
101
110
|
|
@@ -1,13 +1,18 @@
|
|
1
1
|
module Admin::UrlHelper
|
2
2
|
require 'uri'
|
3
3
|
|
4
|
+
def generate_page_url(url, page)
|
5
|
+
base_url = extract_base_url(url)
|
6
|
+
build_url(base_url, page)
|
7
|
+
end
|
8
|
+
|
4
9
|
def build_url(base_url, page)
|
5
|
-
|
6
|
-
|
7
|
-
|
8
|
-
|
9
|
-
|
10
|
-
|
10
|
+
return "#{base_url}#{page.path}" if default_route?(page)
|
11
|
+
|
12
|
+
path = lookup_page_path(page)
|
13
|
+
return nil unless path
|
14
|
+
|
15
|
+
"#{base_url}/#{path}/#{page.slug}"
|
11
16
|
end
|
12
17
|
|
13
18
|
def extract_base_url(url)
|
@@ -19,15 +24,14 @@ module Admin::UrlHelper
|
|
19
24
|
"#{scheme}://#{host}"
|
20
25
|
end
|
21
26
|
|
22
|
-
def
|
23
|
-
|
24
|
-
|
27
|
+
def default_route?(page)
|
28
|
+
page_class_name = page.class.name
|
29
|
+
page_class_name == 'Page' || (defined?(DEFAULT_PAGE_TYPE_ROUTES) && DEFAULT_PAGE_TYPE_ROUTES.include?(page_class_name))
|
25
30
|
end
|
26
31
|
|
27
32
|
def lookup_page_path(page)
|
28
|
-
|
29
|
-
return nil unless defined?(PAGE_TYPE_ROUTES) && PAGE_TYPE_ROUTES.is_a?(Hash)
|
33
|
+
return nil unless defined?(CUSTOM_PAGE_TYPE_ROUTES) && CUSTOM_PAGE_TYPE_ROUTES.is_a?(Hash)
|
30
34
|
|
31
|
-
|
35
|
+
CUSTOM_PAGE_TYPE_ROUTES[page.class.name.to_sym]
|
32
36
|
end
|
33
37
|
end
|
data/lib/trusty_cms/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: trusty-cms
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 7.0.
|
4
|
+
version: 7.0.24
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- TrustyCms CMS dev team
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2025-03-
|
11
|
+
date: 2025-03-31 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: activestorage-validator
|