bridgetown-core 0.21.4 → 1.0.0.alpha4
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.rubocop.yml +35 -0
- data/Rakefile +5 -5
- data/bin/bridgetown +2 -0
- data/bridgetown-core.gemspec +3 -0
- data/lib/bridgetown-core/cache.rb +3 -5
- data/lib/bridgetown-core/cleaner.rb +2 -10
- data/lib/bridgetown-core/collection.rb +62 -86
- data/lib/bridgetown-core/commands/base.rb +62 -2
- data/lib/bridgetown-core/commands/build.rb +33 -12
- data/lib/bridgetown-core/commands/concerns/actions.rb +2 -2
- data/lib/bridgetown-core/commands/concerns/build_options.rb +3 -10
- data/lib/bridgetown-core/commands/concerns/configuration_overridable.rb +3 -1
- data/lib/bridgetown-core/commands/console.rb +3 -3
- data/lib/bridgetown-core/commands/doctor.rb +13 -11
- data/lib/bridgetown-core/commands/new.rb +14 -6
- data/lib/bridgetown-core/commands/plugins.rb +8 -11
- data/lib/bridgetown-core/commands/serve/servlet.rb +4 -4
- data/lib/bridgetown-core/commands/serve.rb +37 -37
- data/lib/bridgetown-core/commands/start.rb +106 -0
- data/lib/bridgetown-core/commands/webpack/webpack.defaults.js.erb +2 -2
- data/lib/bridgetown-core/commands/webpack.rb +1 -1
- data/lib/bridgetown-core/component.rb +2 -6
- data/lib/bridgetown-core/concerns/liquid_renderable.rb +2 -2
- data/lib/bridgetown-core/concerns/site/configurable.rb +1 -13
- data/lib/bridgetown-core/concerns/site/content.rb +7 -118
- data/lib/bridgetown-core/concerns/site/extensible.rb +3 -4
- data/lib/bridgetown-core/concerns/site/localizable.rb +3 -1
- data/lib/bridgetown-core/concerns/site/processable.rb +8 -20
- data/lib/bridgetown-core/concerns/site/renderable.rb +19 -30
- data/lib/bridgetown-core/concerns/site/ssr.rb +53 -0
- data/lib/bridgetown-core/concerns/site/writable.rb +6 -9
- data/lib/bridgetown-core/configuration.rb +19 -48
- data/lib/bridgetown-core/configurations/minitesting.rb +1 -1
- data/lib/bridgetown-core/configurations/turbo.rb +1 -1
- data/lib/bridgetown-core/converter.rb +1 -0
- data/lib/bridgetown-core/converters/erb_templates.rb +8 -5
- data/lib/bridgetown-core/converters/liquid_templates.rb +5 -2
- data/lib/bridgetown-core/converters/markdown/kramdown_parser.rb +1 -1
- data/lib/bridgetown-core/converters/smartypants.rb +1 -0
- data/lib/bridgetown-core/current.rb +4 -0
- data/lib/bridgetown-core/drops/collection_drop.rb +1 -1
- data/lib/bridgetown-core/drops/drop.rb +4 -4
- data/lib/bridgetown-core/drops/generated_page_drop.rb +23 -0
- data/lib/bridgetown-core/drops/resource_drop.rb +3 -3
- data/lib/bridgetown-core/drops/site_drop.rb +3 -47
- data/lib/bridgetown-core/entry_filter.rb +1 -0
- data/lib/bridgetown-core/filters/url_filters.rb +2 -0
- data/lib/bridgetown-core/filters.rb +11 -12
- data/lib/bridgetown-core/frontmatter_defaults.rb +44 -82
- data/lib/bridgetown-core/{page.rb → generated_page.rb} +34 -60
- data/lib/bridgetown-core/generators/prototype_generator.rb +46 -58
- data/lib/bridgetown-core/helpers.rb +8 -3
- data/lib/bridgetown-core/hooks.rb +2 -2
- data/lib/bridgetown-core/layout.rb +15 -4
- data/lib/bridgetown-core/liquid_renderer.rb +1 -3
- data/lib/bridgetown-core/log_adapter.rb +1 -1
- data/lib/bridgetown-core/log_writer.rb +7 -1
- data/lib/bridgetown-core/model/base.rb +12 -4
- data/lib/bridgetown-core/model/builder_origin.rb +23 -11
- data/lib/bridgetown-core/model/origin.rb +3 -0
- data/lib/bridgetown-core/model/plugin_origin.rb +34 -0
- data/lib/bridgetown-core/model/repo_origin.rb +1 -1
- data/lib/bridgetown-core/plugin_manager.rb +10 -10
- data/lib/bridgetown-core/publisher.rb +1 -1
- data/lib/bridgetown-core/rack/boot.rb +55 -0
- data/lib/bridgetown-core/rack/logger.rb +22 -0
- data/lib/bridgetown-core/rack/roda.rb +66 -0
- data/lib/bridgetown-core/rack/routes.rb +88 -0
- data/lib/bridgetown-core/rack/static_indexes.rb +30 -0
- data/lib/bridgetown-core/reader.rb +16 -48
- data/lib/bridgetown-core/readers/layout_reader.rb +2 -2
- data/lib/bridgetown-core/readers/plugin_content_reader.rb +8 -7
- data/lib/bridgetown-core/renderer.rb +2 -12
- data/lib/bridgetown-core/resource/base.rb +34 -11
- data/lib/bridgetown-core/resource/permalink_processor.rb +23 -12
- data/lib/bridgetown-core/resource/relations.rb +2 -3
- data/lib/bridgetown-core/resource/taxonomy_term.rb +1 -5
- data/lib/bridgetown-core/resource/transformer.rb +8 -6
- data/lib/bridgetown-core/ruby_template_view.rb +6 -8
- data/lib/bridgetown-core/site.rb +4 -8
- data/lib/bridgetown-core/static_file.rb +14 -21
- data/lib/bridgetown-core/tags/find.rb +6 -6
- data/lib/bridgetown-core/tags/highlight.rb +5 -5
- data/lib/bridgetown-core/tags/include.rb +22 -32
- data/lib/bridgetown-core/tags/link.rb +4 -0
- data/lib/bridgetown-core/tags/live_reload_dev_js.rb +13 -0
- data/lib/bridgetown-core/tags/post_url.rb +9 -14
- data/lib/bridgetown-core/tags/render_content.rb +2 -2
- data/lib/bridgetown-core/tasks/bridgetown_tasks.rake +60 -0
- data/lib/bridgetown-core/url.rb +5 -4
- data/lib/bridgetown-core/utils/aux.rb +57 -0
- data/lib/bridgetown-core/utils/ruby_exec.rb +3 -45
- data/lib/bridgetown-core/utils/ruby_front_matter.rb +22 -7
- data/lib/bridgetown-core/utils.rb +44 -11
- data/lib/bridgetown-core/version.rb +2 -2
- data/lib/bridgetown-core/watcher.rb +4 -6
- data/lib/bridgetown-core.rb +16 -23
- data/lib/site_template/Gemfile.erb +6 -2
- data/lib/site_template/README.md +6 -6
- data/lib/site_template/Rakefile +49 -0
- data/lib/site_template/bridgetown.config.yml +2 -3
- data/lib/site_template/config/puma.rb +27 -0
- data/lib/site_template/config.ru +7 -0
- data/lib/site_template/package.json.erb +1 -9
- data/lib/site_template/server/roda_app.rb +22 -0
- data/lib/site_template/server/routes/hello.rb.sample +10 -0
- data/lib/site_template/src/_components/head.liquid +2 -1
- data/lib/site_template/src/_layouts/default.liquid +1 -1
- data/lib/site_template/src/about.md +0 -1
- data/lib/site_template/src/posts.md +2 -3
- metadata +63 -18
- data/lib/bridgetown-core/concerns/data_accessible.rb +0 -20
- data/lib/bridgetown-core/concerns/validatable.rb +0 -56
- data/lib/bridgetown-core/document.rb +0 -437
- data/lib/bridgetown-core/drops/document_drop.rb +0 -80
- data/lib/bridgetown-core/drops/excerpt_drop.rb +0 -19
- data/lib/bridgetown-core/drops/page_drop.rb +0 -18
- data/lib/bridgetown-core/excerpt.rb +0 -200
- data/lib/bridgetown-core/readers/data_reader.rb +0 -89
- data/lib/bridgetown-core/readers/page_reader.rb +0 -26
- data/lib/bridgetown-core/readers/post_reader.rb +0 -109
- data/lib/bridgetown-core/regenerator.rb +0 -202
- data/lib/bridgetown-core/related_posts.rb +0 -55
- data/lib/site_template/config/.keep +0 -0
- data/lib/site_template/start.js +0 -17
- data/lib/site_template/sync.js +0 -35
@@ -1,7 +1,7 @@
|
|
1
1
|
# frozen_string_literal: true
|
2
2
|
|
3
3
|
# Handles Generated Pages
|
4
|
-
Bridgetown::Hooks.register :
|
4
|
+
Bridgetown::Hooks.register :generated_pages, :post_init, reloadable: false do |page|
|
5
5
|
if page.class != Bridgetown::PrototypePage && page.data["prototype"].is_a?(Hash)
|
6
6
|
Bridgetown::PrototypeGenerator.add_matching_template(page)
|
7
7
|
end
|
@@ -38,43 +38,42 @@ module Bridgetown
|
|
38
38
|
# @param site [Bridgetown::Site]
|
39
39
|
def generate(site)
|
40
40
|
@site = site
|
41
|
-
|
42
|
-
page_list = site.uses_resource? ? site.collections.pages.resources : site.pages
|
41
|
+
page_list = site.collections.pages.resources
|
43
42
|
|
44
43
|
prototype_pages = self.class.matching_templates.select do |page|
|
45
44
|
page_list.include?(page)
|
46
45
|
end
|
47
46
|
|
48
|
-
|
49
|
-
ensure_pagination_enabled
|
47
|
+
return unless prototype_pages.length.positive?
|
50
48
|
|
51
|
-
|
52
|
-
|
53
|
-
|
49
|
+
ensure_pagination_enabled
|
50
|
+
|
51
|
+
page_list.reject! do |page|
|
52
|
+
prototype_pages.include? page
|
53
|
+
end
|
54
54
|
|
55
|
-
|
56
|
-
|
57
|
-
|
55
|
+
prototype_pages.each do |prototype_page|
|
56
|
+
search_term = validate_search_term(prototype_page)
|
57
|
+
next if search_term.nil?
|
58
58
|
|
59
|
-
|
60
|
-
|
61
|
-
end
|
59
|
+
terms_matching_pages(search_term).each do |term|
|
60
|
+
generate_new_page_from_prototype(prototype_page, search_term, term)
|
62
61
|
end
|
63
62
|
end
|
64
63
|
end
|
65
64
|
|
66
65
|
def ensure_pagination_enabled
|
67
|
-
|
68
|
-
|
69
|
-
|
70
|
-
|
71
|
-
|
72
|
-
|
66
|
+
return if @site.config.dig(:pagination, :enabled)
|
67
|
+
|
68
|
+
Bridgetown.logger.warn(
|
69
|
+
"Pagination:",
|
70
|
+
"Must be enabled for prototype pages to contain matches"
|
71
|
+
)
|
73
72
|
end
|
74
73
|
|
75
74
|
# Check incoming prototype configuration and normalize options.
|
76
75
|
#
|
77
|
-
# @param prototype_page [Bridgetown::
|
76
|
+
# @param prototype_page [Bridgetown::GeneratedPage, Bridgetown::Resource::Base]
|
78
77
|
#
|
79
78
|
# @return [String, nil]
|
80
79
|
def validate_search_term(prototype_page)
|
@@ -110,11 +109,7 @@ module Bridgetown
|
|
110
109
|
#
|
111
110
|
# @return [Array<String>]
|
112
111
|
def terms_matching_pages(search_term)
|
113
|
-
pages_list =
|
114
|
-
site.collections[@configured_collection].resources
|
115
|
-
else
|
116
|
-
site.collections[@configured_collection].docs
|
117
|
-
end
|
112
|
+
pages_list = site.collections[@configured_collection].resources
|
118
113
|
|
119
114
|
Bridgetown::Paginate::PaginationIndexer.index_documents_by(
|
120
115
|
pages_list, search_term
|
@@ -123,35 +118,29 @@ module Bridgetown
|
|
123
118
|
end
|
124
119
|
|
125
120
|
class PrototypePage < GeneratedPage
|
126
|
-
# @return [Bridgetown::
|
121
|
+
# @return [Bridgetown::GeneratedPage, Bridgetown::Resource::Base]
|
127
122
|
attr_reader :prototyped_page
|
128
123
|
|
129
124
|
# @param prototyped_page [Bridgetown::Page, Bridgetown::Resource::Base]
|
130
125
|
# @param collection [Bridgetown::Collection]
|
131
126
|
# @param search_term [String]
|
132
127
|
# @param term [String]
|
133
|
-
def initialize(prototyped_page, collection, search_term, term)
|
128
|
+
def initialize(prototyped_page, collection, search_term, term) # rubocop:disable Lint/MissingSuper
|
134
129
|
@prototyped_page = prototyped_page
|
135
130
|
@site = prototyped_page.site
|
136
131
|
@url = ""
|
137
132
|
@name = "index.html"
|
138
|
-
@
|
139
|
-
|
140
|
-
|
133
|
+
@ext = ".html"
|
134
|
+
@basename = "index"
|
135
|
+
@dir = Pathname.new(prototyped_page.relative_path).dirname.to_s.sub(%r{^_pages}, "")
|
136
|
+
@path = site.in_source_dir(@dir, @name)
|
141
137
|
|
142
138
|
self.data = Bridgetown::Utils.deep_merge_hashes prototyped_page.data, {}
|
143
139
|
self.content = prototyped_page.content
|
144
140
|
|
145
|
-
# Perform some validation that is also performed in Bridgetown::Page
|
146
|
-
validate_data! prototyped_page.path
|
147
|
-
validate_permalink! prototyped_page.path
|
148
|
-
|
149
|
-
@dir = Pathname.new(prototyped_page.relative_path).dirname.to_s.sub(%r{^_pages}, "")
|
150
|
-
@path = site.in_source_dir(@dir, @name)
|
151
|
-
|
152
141
|
process_prototype_page_data(collection, search_term, term)
|
153
142
|
|
154
|
-
Bridgetown::Hooks.trigger :
|
143
|
+
Bridgetown::Hooks.trigger :generated_pages, :post_init, self
|
155
144
|
end
|
156
145
|
|
157
146
|
def process_prototype_page_data(collection, search_term, term)
|
@@ -171,22 +160,21 @@ module Bridgetown
|
|
171
160
|
slugify_term(term)
|
172
161
|
end
|
173
162
|
|
174
|
-
# rubocop:todo Metrics/AbcSize
|
175
|
-
|
176
|
-
|
177
|
-
|
178
|
-
related_data = site.data[prototyped_page.data["prototype"]["data"]].dig(term)
|
179
|
-
if related_data
|
180
|
-
data["#{search_term}_data"] = related_data
|
181
|
-
data_label = related_data[prototyped_page.data["prototype"]["data_label"]]
|
182
|
-
data["title"] = data["title"].gsub(
|
183
|
-
":prototype-data-label", data_label
|
184
|
-
)
|
185
|
-
end
|
186
|
-
end
|
163
|
+
def process_title_data_placeholder(search_term, term) # rubocop:todo Metrics/AbcSize
|
164
|
+
unless prototyped_page.data["prototype"]["data"] &&
|
165
|
+
data["title"]&.include?(":prototype-data-label")
|
166
|
+
return
|
187
167
|
end
|
168
|
+
|
169
|
+
related_data = site.data[prototyped_page.data["prototype"]["data"]][term]
|
170
|
+
return unless related_data
|
171
|
+
|
172
|
+
data["#{search_term}_data"] = related_data
|
173
|
+
data_label = related_data[prototyped_page.data["prototype"]["data_label"]]
|
174
|
+
data["title"] = data["title"].gsub(
|
175
|
+
":prototype-data-label", data_label
|
176
|
+
)
|
188
177
|
end
|
189
|
-
# rubocop:enable Metrics/AbcSize
|
190
178
|
|
191
179
|
def process_title_simple_placeholders(term)
|
192
180
|
if data["title"]&.include?(":prototype-term-titleize")
|
@@ -195,11 +183,11 @@ module Bridgetown
|
|
195
183
|
)
|
196
184
|
end
|
197
185
|
|
198
|
-
|
199
|
-
|
200
|
-
|
201
|
-
|
202
|
-
|
186
|
+
return unless data["title"]&.include?(":prototype-term")
|
187
|
+
|
188
|
+
data["title"] = data["title"].gsub(
|
189
|
+
":prototype-term", term
|
190
|
+
)
|
203
191
|
end
|
204
192
|
|
205
193
|
def slugify_term(term)
|
@@ -26,6 +26,10 @@ module Bridgetown
|
|
26
26
|
Bridgetown::Utils.parse_webpack_manifest_file(site, asset_type.to_s)
|
27
27
|
end
|
28
28
|
|
29
|
+
def live_reload_dev_js
|
30
|
+
Bridgetown::Utils.live_reload_js(site)
|
31
|
+
end
|
32
|
+
|
29
33
|
# @param pairs [Hash] A hash of key/value pairs.
|
30
34
|
#
|
31
35
|
# @return [String] Space-separated keys where the values are truthy.
|
@@ -52,11 +56,11 @@ module Bridgetown
|
|
52
56
|
# `url` or `relative_url`
|
53
57
|
# @return [String] the permalink URL for the file
|
54
58
|
def url_for(relative_path)
|
55
|
-
if relative_path.respond_to?(:relative_url)
|
59
|
+
if relative_path.respond_to?(:relative_url) # rubocop:disable Style/GuardClause
|
56
60
|
return safe(relative_path.relative_url) # new resource engine
|
57
61
|
elsif relative_path.respond_to?(:url)
|
58
62
|
return safe(relative_url(relative_path.url)) # old legacy engine
|
59
|
-
elsif relative_path.start_with?("/", "http")
|
63
|
+
elsif relative_path.to_s.start_with?("/", "http")
|
60
64
|
return safe(relative_path)
|
61
65
|
end
|
62
66
|
|
@@ -69,7 +73,8 @@ module Bridgetown
|
|
69
73
|
# @raise [ArgumentError] if the file cannot be found
|
70
74
|
def find_relative_url_for_path(relative_path)
|
71
75
|
site.each_site_file do |item|
|
72
|
-
if item.relative_path == relative_path ||
|
76
|
+
if item.relative_path.to_s == relative_path ||
|
77
|
+
item.relative_path.to_s == "/#{relative_path}"
|
73
78
|
return safe(item.respond_to?(:relative_url) ? item.relative_url : relative_url(item))
|
74
79
|
end
|
75
80
|
end
|
@@ -72,14 +72,14 @@ module Bridgetown
|
|
72
72
|
@registry[owner].delete_if { |item| item.block == block }
|
73
73
|
end
|
74
74
|
|
75
|
-
def self.trigger(owner, event, *args)
|
75
|
+
def self.trigger(owner, event, *args) # rubocop:disable Metrics/CyclomaticComplexity
|
76
76
|
# proceed only if there are hooks to call
|
77
77
|
hooks = @registry[owner]&.select { |item| item.event == event }
|
78
78
|
return if hooks.nil? || hooks.empty?
|
79
79
|
|
80
80
|
prioritized_hooks(hooks).each do |hook|
|
81
81
|
if ENV["BRIDGETOWN_LOG_LEVEL"] == "debug"
|
82
|
-
hook_info = args[0]
|
82
|
+
hook_info = args[0].respond_to?(:url) ? args[0].relative_path : hook.block
|
83
83
|
Bridgetown.logger.debug("Triggering hook:", "#{owner}:#{event} for #{hook_info}")
|
84
84
|
end
|
85
85
|
hook.block.call(*args)
|
@@ -2,7 +2,6 @@
|
|
2
2
|
|
3
3
|
module Bridgetown
|
4
4
|
class Layout
|
5
|
-
include DataAccessible
|
6
5
|
include FrontMatterImporter
|
7
6
|
include LiquidRenderable
|
8
7
|
|
@@ -44,9 +43,7 @@ module Bridgetown
|
|
44
43
|
# @param file [String]
|
45
44
|
# @return [String]
|
46
45
|
def self.label_for_file(file)
|
47
|
-
|
48
|
-
# middle extensions into layout label
|
49
|
-
file.split(".")[0..-2].join(".")
|
46
|
+
file.split(".").first
|
50
47
|
end
|
51
48
|
|
52
49
|
# Initialize a new Layout.
|
@@ -93,6 +90,20 @@ module Bridgetown
|
|
93
90
|
end
|
94
91
|
end
|
95
92
|
|
93
|
+
# Returns the contents as a String.
|
94
|
+
def to_s
|
95
|
+
output || content || ""
|
96
|
+
end
|
97
|
+
|
98
|
+
# Accessor for data properties by Liquid.
|
99
|
+
#
|
100
|
+
# property - The String name of the property to retrieve.
|
101
|
+
#
|
102
|
+
# Returns the String value or nil if the property isn't included.
|
103
|
+
def [](property)
|
104
|
+
data[property]
|
105
|
+
end
|
106
|
+
|
96
107
|
# The label of the layout (should match what would used in front matter
|
97
108
|
# references).
|
98
109
|
#
|
@@ -120,7 +120,7 @@ module Bridgetown
|
|
120
120
|
# colon -
|
121
121
|
#
|
122
122
|
# Returns the formatted topic statement
|
123
|
-
def formatted_topic(topic, colon = false)
|
123
|
+
def formatted_topic(topic, colon = false) # rubocop:disable Style/OptionalBooleanParameter
|
124
124
|
"#{topic}#{colon ? ": " : " "}".rjust(20)
|
125
125
|
end
|
126
126
|
|
@@ -2,7 +2,7 @@
|
|
2
2
|
|
3
3
|
module Bridgetown
|
4
4
|
class LogWriter < ::Logger
|
5
|
-
def initialize
|
5
|
+
def initialize # rubocop:disable Lint/MissingSuper
|
6
6
|
@progname = nil
|
7
7
|
@level = DEBUG
|
8
8
|
@default_formatter = Formatter.new
|
@@ -12,6 +12,12 @@ module Bridgetown
|
|
12
12
|
end
|
13
13
|
end
|
14
14
|
|
15
|
+
def enable_prefix
|
16
|
+
@formatter = proc do |_, _, _, msg|
|
17
|
+
"\e[32m[Bridgetown]\e[0m #{msg}"
|
18
|
+
end
|
19
|
+
end
|
20
|
+
|
15
21
|
def add(severity, message = nil, progname = nil)
|
16
22
|
severity ||= UNKNOWN
|
17
23
|
@logdev = logdevice(severity)
|
@@ -46,8 +46,10 @@ module Bridgetown
|
|
46
46
|
end
|
47
47
|
|
48
48
|
class << self
|
49
|
-
def build(collection_name, path, data)
|
50
|
-
data = Bridgetown::Model::BuilderOrigin.new(
|
49
|
+
def build(builder, collection_name, path, data)
|
50
|
+
data = Bridgetown::Model::BuilderOrigin.new(
|
51
|
+
Bridgetown::Model::BuilderOrigin.id_for_builder_path(builder, path)
|
52
|
+
).read do
|
51
53
|
data[:_collection_] = Bridgetown::Current.site.collections[collection_name]
|
52
54
|
data
|
53
55
|
end
|
@@ -79,11 +81,17 @@ module Bridgetown
|
|
79
81
|
Bridgetown::Resource::Base.new(model: self)
|
80
82
|
end
|
81
83
|
|
84
|
+
# @return [Bridgetown::Resource::Base]
|
82
85
|
def as_resource_in_collection
|
83
86
|
collection.resources << to_resource.read!
|
84
87
|
collection.resources.last
|
85
88
|
end
|
86
89
|
|
90
|
+
# @return [Bridgetown::Resource::Base]
|
91
|
+
def render_as_resource
|
92
|
+
to_resource.read!.transform!
|
93
|
+
end
|
94
|
+
|
87
95
|
# override if need be
|
88
96
|
# @return [Bridgetown::Site]
|
89
97
|
def site
|
@@ -114,7 +122,7 @@ module Bridgetown
|
|
114
122
|
attributes.key?(method_name) || method_name.to_s.end_with?("=") || super
|
115
123
|
end
|
116
124
|
|
117
|
-
def method_missing(method_name, *args)
|
125
|
+
def method_missing(method_name, *args)
|
118
126
|
return attributes[method_name] if attributes.key?(method_name)
|
119
127
|
|
120
128
|
key = method_name.to_s
|
@@ -126,7 +134,7 @@ module Bridgetown
|
|
126
134
|
end
|
127
135
|
|
128
136
|
Bridgetown.logger.warn "key `#{method_name}' not found in attributes for" \
|
129
|
-
" #{attributes[:id].presence ||
|
137
|
+
" #{attributes[:id].presence || "new #{self.class}"}"
|
130
138
|
nil
|
131
139
|
end
|
132
140
|
|
@@ -2,29 +2,29 @@
|
|
2
2
|
|
3
3
|
module Bridgetown
|
4
4
|
module Model
|
5
|
-
# Abstract Superclass
|
6
5
|
class BuilderOrigin < Origin
|
7
6
|
# @return [Pathname]
|
8
7
|
attr_reader :relative_path
|
9
8
|
|
10
|
-
# Override in subclass
|
11
9
|
def self.handle_scheme?(scheme)
|
12
10
|
scheme == "builder"
|
13
11
|
end
|
14
12
|
|
13
|
+
def self.id_for_builder_path(builder, path)
|
14
|
+
"builder://#{builder.class.name.gsub("::", ".")}/#{path}"
|
15
|
+
end
|
16
|
+
|
15
17
|
def initialize(id)
|
16
|
-
|
17
|
-
@relative_path = Pathname.new(
|
18
|
+
super
|
19
|
+
@relative_path = Pathname.new(url.path.delete_prefix("/"))
|
20
|
+
end
|
21
|
+
|
22
|
+
def url
|
23
|
+
@url ||= URI.parse(id)
|
18
24
|
end
|
19
25
|
|
20
26
|
def read
|
21
|
-
@data =
|
22
|
-
yield
|
23
|
-
elsif defined?(SiteBuilder) && SiteBuilder.respond_to?(:data_for_id)
|
24
|
-
SiteBuilder.data_for_id(id)
|
25
|
-
else
|
26
|
-
raise "No builder exists which can read #{id}"
|
27
|
-
end
|
27
|
+
@data = block_given? ? yield : read_data_from_builder
|
28
28
|
@data[:_id_] = id
|
29
29
|
@data[:_origin_] = self
|
30
30
|
@relative_path = Pathname.new(@data[:_relative_path_]) if @data[:_relative_path_]
|
@@ -35,6 +35,18 @@ module Bridgetown
|
|
35
35
|
def exists?
|
36
36
|
false
|
37
37
|
end
|
38
|
+
|
39
|
+
def read_data_from_builder
|
40
|
+
builder = Kernel.const_get(url.host.gsub(".", "::"))
|
41
|
+
raise NameError unless builder.instance_methods.include?(:resource_data_for_id)
|
42
|
+
|
43
|
+
builder.new.resource_data_for_id(id) || raise(NameError)
|
44
|
+
rescue NameError
|
45
|
+
raise(
|
46
|
+
Bridgetown::Errors::FatalException,
|
47
|
+
"Builder not found which can read #{id}"
|
48
|
+
)
|
49
|
+
end
|
38
50
|
end
|
39
51
|
end
|
40
52
|
end
|
@@ -1,5 +1,7 @@
|
|
1
1
|
# frozen_string_literal: true
|
2
2
|
|
3
|
+
# See bottom of file for specific origin requires...
|
4
|
+
|
3
5
|
module Bridgetown
|
4
6
|
module Model
|
5
7
|
# Abstract Superclass
|
@@ -36,3 +38,4 @@ end
|
|
36
38
|
|
37
39
|
require "bridgetown-core/model/builder_origin"
|
38
40
|
require "bridgetown-core/model/repo_origin"
|
41
|
+
require "bridgetown-core/model/plugin_origin"
|
@@ -0,0 +1,34 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
module Bridgetown
|
4
|
+
module Model
|
5
|
+
class PluginOrigin < RepoOrigin
|
6
|
+
class << self
|
7
|
+
def handle_scheme?(scheme)
|
8
|
+
scheme == "plugin"
|
9
|
+
end
|
10
|
+
end
|
11
|
+
|
12
|
+
def manifest
|
13
|
+
@manifest ||= begin
|
14
|
+
manifest_origin = Addressable::URI.unescape(url.path.delete_prefix("/")).split("/").first
|
15
|
+
Bridgetown::PluginManager.source_manifests.find do |manifest|
|
16
|
+
manifest.origin.to_s == manifest_origin
|
17
|
+
end.tap do |manifest|
|
18
|
+
raise "Unable to locate a source manifest for #{manifest_origin}" unless manifest
|
19
|
+
end
|
20
|
+
end
|
21
|
+
end
|
22
|
+
|
23
|
+
def relative_path
|
24
|
+
@relative_path ||= Pathname.new(
|
25
|
+
Addressable::URI.unescape(url.path.delete_prefix("/")).split("/")[1..-1].join("/")
|
26
|
+
)
|
27
|
+
end
|
28
|
+
|
29
|
+
def original_path
|
30
|
+
@original_path ||= relative_path.expand_path(manifest.content)
|
31
|
+
end
|
32
|
+
end
|
33
|
+
end
|
34
|
+
end
|
@@ -104,7 +104,7 @@ module Bridgetown
|
|
104
104
|
|
105
105
|
# check matching version number is see if it's already installed
|
106
106
|
if package_json["dependencies"]
|
107
|
-
current_version = package_json["dependencies"]
|
107
|
+
current_version = package_json["dependencies"][yarn_dependency.first]
|
108
108
|
package_requires_updating?(current_version, yarn_dependency.last)
|
109
109
|
else
|
110
110
|
true
|
@@ -112,7 +112,7 @@ module Bridgetown
|
|
112
112
|
end
|
113
113
|
|
114
114
|
def self.package_requires_updating?(current_version, dep_version)
|
115
|
-
current_version.nil? || current_version != dep_version && !current_version.include?("/")
|
115
|
+
current_version.nil? || (current_version != dep_version && !current_version.include?("/"))
|
116
116
|
end
|
117
117
|
|
118
118
|
# Require all .rb files
|
@@ -160,7 +160,6 @@ module Bridgetown
|
|
160
160
|
end
|
161
161
|
end
|
162
162
|
|
163
|
-
# rubocop:disable Metrics/AbcSize
|
164
163
|
def setup_component_loaders
|
165
164
|
unless @component_loaders.keys.empty?
|
166
165
|
@component_loaders.each do |_path, loader|
|
@@ -173,16 +172,17 @@ module Bridgetown
|
|
173
172
|
# source components _before_ we load any from plugins
|
174
173
|
site.components_load_paths.reverse_each do |load_path|
|
175
174
|
next unless Dir.exist? load_path
|
176
|
-
next if Zeitwerk::Registry.loaders.find { |loader| loader.manages?(load_path) }
|
177
175
|
|
178
|
-
|
179
|
-
|
180
|
-
|
181
|
-
|
182
|
-
|
176
|
+
begin
|
177
|
+
@component_loaders[load_path] = Zeitwerk::Loader.new
|
178
|
+
@component_loaders[load_path].push_dir(load_path)
|
179
|
+
@component_loaders[load_path].enable_reloading if load_path.start_with?(site.root_dir)
|
180
|
+
@component_loaders[load_path].ignore(File.join(load_path, "**", "*.js.rb"))
|
181
|
+
@component_loaders[load_path].setup
|
182
|
+
rescue Zeitwerk::Error # rubocop:disable Lint/SuppressedException
|
183
|
+
end
|
183
184
|
end
|
184
185
|
end
|
185
|
-
# rubocop:enable Metrics/AbcSize
|
186
186
|
|
187
187
|
def reload_component_loaders
|
188
188
|
@component_loaders.each do |path, loader|
|
@@ -15,7 +15,7 @@ module Bridgetown
|
|
15
15
|
return false unless thing.respond_to?(:date)
|
16
16
|
|
17
17
|
future_allowed =
|
18
|
-
thing.respond_to?(:collection) && thing.collection.metadata.future || @site.config.future
|
18
|
+
(thing.respond_to?(:collection) && thing.collection.metadata.future) || @site.config.future
|
19
19
|
thing_time = thing.date.is_a?(Date) ? thing.date.to_time.to_i : thing.date.to_i
|
20
20
|
!future_allowed && thing_time > @site.time.to_i
|
21
21
|
end
|
@@ -0,0 +1,55 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
require "zeitwerk"
|
4
|
+
require "roda"
|
5
|
+
require "json"
|
6
|
+
require "roda/plugins/public"
|
7
|
+
|
8
|
+
Bridgetown::Current.preloaded_configuration ||= Bridgetown.configuration
|
9
|
+
|
10
|
+
require_relative "logger"
|
11
|
+
require_relative "roda"
|
12
|
+
require_relative "routes"
|
13
|
+
require_relative "static_indexes"
|
14
|
+
|
15
|
+
module Bridgetown
|
16
|
+
module Rack
|
17
|
+
def self.boot
|
18
|
+
autoload_server_folder(root: Dir.pwd)
|
19
|
+
RodaApp.opts[:bridgetown_preloaded_config] = Bridgetown::Current.preloaded_configuration
|
20
|
+
rescue Roda::RodaError => e
|
21
|
+
if e.message.include?("sessions plugin :secret option")
|
22
|
+
raise Bridgetown::Errors::InvalidConfigurationError,
|
23
|
+
"The Roda sessions plugin can't find a valid secret. Run `bin/bridgetown secret'" \
|
24
|
+
" and put the key in a ENV var you can use to configure the session in `roda_app.rb'"
|
25
|
+
end
|
26
|
+
|
27
|
+
raise e
|
28
|
+
end
|
29
|
+
|
30
|
+
def self.autoload_server_folder(root:)
|
31
|
+
server_folder = File.join(root, "server")
|
32
|
+
loader = Zeitwerk::Loader.new
|
33
|
+
loader.push_dir server_folder
|
34
|
+
loader.enable_reloading unless ENV["BRIDGETOWN_ENV"] == "production"
|
35
|
+
loader.setup
|
36
|
+
loader.eager_load
|
37
|
+
loader.do_not_eager_load(File.join(server_folder, "roda_app.rb"))
|
38
|
+
|
39
|
+
unless ENV["BRIDGETOWN_ENV"] == "production"
|
40
|
+
begin
|
41
|
+
Listen.to(server_folder) do |_modified, _added, _removed|
|
42
|
+
loader.reload
|
43
|
+
loader.eager_load
|
44
|
+
Bridgetown::Rack::Routes.reload_subclasses
|
45
|
+
end.start
|
46
|
+
# interrupt isn't handled well by the listener
|
47
|
+
rescue ThreadError # rubocop:disable Lint/SuppressedException
|
48
|
+
end
|
49
|
+
end
|
50
|
+
rescue Zeitwerk::Error
|
51
|
+
# We assume if there's an error it's because Zeitwerk already registered this folder,
|
52
|
+
# so it's fine to swallow the error
|
53
|
+
end
|
54
|
+
end
|
55
|
+
end
|
@@ -0,0 +1,22 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
require "logger"
|
4
|
+
|
5
|
+
module Bridgetown
|
6
|
+
module Rack
|
7
|
+
class Logger < Logger
|
8
|
+
def self.message_with_prefix(msg)
|
9
|
+
return if msg.include?("/_bridgetown/live_reload")
|
10
|
+
|
11
|
+
"\e[35m[Server]\e[0m #{msg}"
|
12
|
+
end
|
13
|
+
|
14
|
+
def initialize(*)
|
15
|
+
super
|
16
|
+
@formatter = proc do |_, _, _, msg|
|
17
|
+
self.class.message_with_prefix(msg)
|
18
|
+
end
|
19
|
+
end
|
20
|
+
end
|
21
|
+
end
|
22
|
+
end
|