rivet_cms 0.1.0.pre → 0.1.2.pre

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 80cc85ed4a64302837525fa46d4c3dfa9513929ca29318db4cf6136dcb3db358
4
- data.tar.gz: ca6ee6f525a26a5a480d46bfc014dce6fac1636d6da125d8ad59d010d168759a
3
+ metadata.gz: 876703a8ca3148fbd0c7c01cbee963fc854e37c1efbc94375205c7a22d7cc78b
4
+ data.tar.gz: 369344dbf9c17af9ad639509a7cb78121314f1a26f80844ba16bce5b59d6311f
5
5
  SHA512:
6
- metadata.gz: 89e6857b0d727e9c83601f68186fe08344a17b73395372b30ed40b552252ecfecb5cc56e8a39cd0c332373ec4e8466fdb0cd46ee692851d516d8c3a23f91a2c2
7
- data.tar.gz: 7412c588bac4bacf3841f220d55d1c1b5664c19b985f2a86ffe12fb8f7155ec409aa80097b18deeb8d3d4a4b234a2c77058053c675b090427873a6dd83f6a742
6
+ metadata.gz: b19547659ff8ee822a41c7a4e28d4de0e8f9a8767e2576e4334f5bde2245e6b10c7d677fa1ae238ffac55b7d68d0eff0575eef87c26504ccbf9bc5dd4feae965
7
+ data.tar.gz: 8447100f98fa858d23667c2d686c357fa630a08d974a6595c9da4833eb4c2e8313cbcd2453ca5df686eddd6f6c6bd493fb2afd5cf9fea0f0f9282744c254d17d
data/README.md CHANGED
@@ -26,3 +26,9 @@ Contribution directions go here.
26
26
 
27
27
  ## License
28
28
  The gem is available as open source under the terms of the [MIT License](https://opensource.org/licenses/MIT).
29
+
30
+ ## Acknowledgments
31
+
32
+ This project includes code adapted from or inspired by:
33
+
34
+ - [Spree Commerce](https://github.com/spree/spree) - Route handling pattern for extensible engines (MIT License)
data/config/routes.rb CHANGED
@@ -1,56 +1,58 @@
1
- RivetCms::Engine.register_routes do
2
- get '/', to: "dashboard#index", as: :dashboard
1
+ RivetCms::Engine.routes.draw do
2
+ RivetCms::Routes.add_routes do
3
+ get '/', to: "dashboard#index"
3
4
 
4
- # Content Type Management
5
- resources :content_types, path: 'content-types' do
6
- resources :fields, except: [:show] do
7
- collection do
8
- post :update_positions
9
- end
10
- member do
11
- patch :update_width
5
+ # Content Type Management
6
+ resources :content_types, path: 'content-types' do
7
+ resources :fields, except: [:show] do
8
+ collection do
9
+ post :update_positions
10
+ end
11
+ member do
12
+ patch :update_width
13
+ end
12
14
  end
15
+ resources :contents
13
16
  end
14
- resources :contents
15
- end
16
17
 
17
- # Component Management
18
- resources :components do
19
- resources :fields, except: [:show] do
20
- collection do
21
- post :update_positions
18
+ # Component Management
19
+ resources :components do
20
+ resources :fields, except: [:show] do
21
+ collection do
22
+ post :update_positions
23
+ end
22
24
  end
23
25
  end
24
- end
25
26
 
26
- # API Documentation
27
- namespace :api do
28
- resource :docs, only: [:show]
29
- end
27
+ # API Documentation
28
+ namespace :api do
29
+ resource :docs, only: [:show]
30
+ end
30
31
 
31
- # Helper method to check if content type exists and matches the collection/single type
32
- content_type_exists = ->(slug, is_collection) {
33
- RivetCMS::ContentType.exists?(slug: slug, is_single: !is_collection)
34
- }
32
+ # Helper method to check if content type exists and matches the collection/single type
33
+ content_type_exists = ->(slug, is_collection) {
34
+ RivetCMS::ContentType.exists?(slug: slug, is_single: !is_collection)
35
+ }
35
36
 
36
- # API routes with versioning
37
- namespace :api do
38
- namespace :v1 do
39
- # Dynamic routes for content types
40
- get ':slug', to: 'content#index', constraints: ->(req) { content_type_exists.call(req.params[:slug], true) }
41
- post ':slug', to: 'content#create', constraints: ->(req) { content_type_exists.call(req.params[:slug], true) }
42
- get ':slug/:id', to: 'content#show', constraints: ->(req) { content_type_exists.call(req.params[:slug], true) }
43
- put ':slug/:id', to: 'content#update', constraints: ->(req) { content_type_exists.call(req.params[:slug], true) }
44
- patch ':slug/:id', to: 'content#update', constraints: ->(req) { content_type_exists.call(req.params[:slug], true) }
45
- delete ':slug/:id', to: 'content#destroy', constraints: ->(req) { content_type_exists.call(req.params[:slug], true) }
37
+ # API routes with versioning
38
+ namespace :api do
39
+ namespace :v1 do
40
+ # Dynamic routes for content types
41
+ get ':slug', to: 'content#index', constraints: ->(req) { content_type_exists.call(req.params[:slug], true) }
42
+ post ':slug', to: 'content#create', constraints: ->(req) { content_type_exists.call(req.params[:slug], true) }
43
+ get ':slug/:id', to: 'content#show', constraints: ->(req) { content_type_exists.call(req.params[:slug], true) }
44
+ put ':slug/:id', to: 'content#update', constraints: ->(req) { content_type_exists.call(req.params[:slug], true) }
45
+ patch ':slug/:id', to: 'content#update', constraints: ->(req) { content_type_exists.call(req.params[:slug], true) }
46
+ delete ':slug/:id', to: 'content#destroy', constraints: ->(req) { content_type_exists.call(req.params[:slug], true) }
46
47
 
47
- # Routes for single type content
48
- get ':slug', to: 'single#show', constraints: ->(req) { content_type_exists.call(req.params[:slug], false) }
49
- put ':slug', to: 'single#update', constraints: ->(req) { content_type_exists.call(req.params[:slug], false) }
50
- patch ':slug', to: 'single#update', constraints: ->(req) { content_type_exists.call(req.params[:slug], false) }
51
- post ':slug', to: 'single#update', constraints: ->(req) { content_type_exists.call(req.params[:slug], false) }
48
+ # Routes for single type content
49
+ get ':slug', to: 'single#show', constraints: ->(req) { content_type_exists.call(req.params[:slug], false) }
50
+ put ':slug', to: 'single#update', constraints: ->(req) { content_type_exists.call(req.params[:slug], false) }
51
+ patch ':slug', to: 'single#update', constraints: ->(req) { content_type_exists.call(req.params[:slug], false) }
52
+ post ':slug', to: 'single#update', constraints: ->(req) { content_type_exists.call(req.params[:slug], false) }
53
+ end
52
54
  end
53
55
  end
54
- end
55
56
 
56
- RivetCms::Engine.draw_routes
57
+ RivetCms::Routes.draw_routes
58
+ end
@@ -4,6 +4,7 @@ require "prefixed_ids"
4
4
  require "kaminari"
5
5
  require "turbo-rails"
6
6
  require "stimulus-rails"
7
+ require "rivet_cms/routes"
7
8
 
8
9
  module RivetCms
9
10
  class Engine < ::Rails::Engine
@@ -21,35 +22,16 @@ module RivetCms
21
22
  g.factory_bot dir: 'spec/factories'
22
23
  end
23
24
 
24
- class << self
25
- # Accessor for the routes storage
26
- def routes_storage
27
- # Use a class-level instance variable with a default empty array
28
- @routes_storage ||= []
29
- end
30
-
31
- # Register route definitions to be drawn later
32
- # @param block [Proc] A block containing route definitions
33
- def register_routes(&block)
34
- routes_storage << block # Add the block to the storage
35
- end
36
-
37
- # Draw all registered routes into the engine's RouteSet
38
- def draw_routes
39
- # Capture the routes in a local variable before entering the block
40
- stored_routes = routes_storage
25
+ def self.add_routes(&block)
26
+ RivetCms::Routes.add_routes(&block)
27
+ end
41
28
 
42
- # Use the engine's routes.draw method to provide the proper routing context
43
- routes.draw do
44
- # Iterate over the captured routes
45
- stored_routes.each do |route_block|
46
- instance_eval(&route_block)
47
- end
48
- end
29
+ def self.append_routes(&block)
30
+ RivetCms::Routes.append_routes(&block)
31
+ end
49
32
 
50
- # Clear the routes to prevent re-drawing if called again
51
- routes_storage.clear
52
- end
33
+ def self.draw_routes(&block)
34
+ RivetCms::Routes.draw_routes(&block)
53
35
  end
54
36
  end
55
37
  end
@@ -0,0 +1,49 @@
1
+ # Route handling pattern adapted from Spree Commerce
2
+ # https://github.com/spree/spree/blob/839866a32845009d8a1fdf21cb7201e99f6ff49c/core/lib/spree/core/routes.rb
3
+ # License: MIT - https://github.com/spree/spree/blob/main/LICENSE.md
4
+
5
+ module RivetCms
6
+ module Routes
7
+ def self.draw_routes(&block)
8
+ @rivet_routes ||= []
9
+ @append_routes ||= []
10
+
11
+ # Evaluate an immediate block if given
12
+ eval_block(block) if block_given?
13
+
14
+ # Evaluate stored main routes
15
+ @rivet_routes.each { |route_block| eval_block(&route_block) }
16
+
17
+ # Evaluate appended routes
18
+ @append_routes.each { |route_block| eval_block(&route_block) }
19
+
20
+ # Clear routes to avoid duplication on subsequent calls
21
+ @rivet_routes = []
22
+ @append_routes = []
23
+ end
24
+
25
+ def self.add_routes(&block)
26
+ @rivet_routes ||= []
27
+ store_route(@rivet_routes, &block)
28
+ end
29
+
30
+ def self.append_routes(&block)
31
+ @append_routes ||= []
32
+ store_route(@append_routes, &block)
33
+ end
34
+
35
+ private
36
+
37
+ # Helper method for safely storing a route block in the given collection.
38
+ def self.store_route(collection, &block)
39
+ collection << block unless collection.include?(block)
40
+ end
41
+
42
+ # Evaluate a block within the context of the engine's routes.
43
+ def self.eval_block(&block)
44
+ RivetCms::Engine.routes.draw do
45
+ instance_exec(&block)
46
+ end
47
+ end
48
+ end
49
+ end
@@ -1,3 +1,3 @@
1
1
  module RivetCms
2
- VERSION = "0.1.0.pre"
2
+ VERSION = "0.1.2.pre"
3
3
  end
data/lib/rivet_cms.rb CHANGED
@@ -1,7 +1,10 @@
1
1
  require "rivet_cms/version"
2
+ require "rivet_cms/routes"
2
3
  require "rivet_cms/engine"
3
4
 
4
5
  module RivetCms
6
+ class Error < StandardError; end
7
+
5
8
  class << self
6
9
  def configuration
7
10
  @configuration ||= Configuration.new
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rivet_cms
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0.pre
4
+ version: 0.1.2.pre
5
5
  platform: ruby
6
6
  authors:
7
7
  - Nathan Williams
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2025-03-28 00:00:00.000000000 Z
11
+ date: 2025-03-29 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rails
@@ -199,6 +199,7 @@ files:
199
199
  - db/migrate/20250317194359_create_core_tables.rb
200
200
  - lib/rivet_cms.rb
201
201
  - lib/rivet_cms/engine.rb
202
+ - lib/rivet_cms/routes.rb
202
203
  - lib/rivet_cms/version.rb
203
204
  - lib/tasks/rivet_cms_tasks.rake
204
205
  homepage: https://github.com/narch/rivet_cms