Class: Brief::Document
Defined Under Namespace
Modules: FrontMatter, Rendering, Templating
Classes: ContentExtractor, Section, Structure
Instance Attribute Summary collapse
Class Method Summary
collapse
Instance Method Summary
collapse
Methods included from Templating
#generate_content
#data=, #frontmatter_line_count
Methods included from Rendering
#script_contents, #script_preamble, #to_html, #unwrapped_html
Constructor Details
#initialize(path, options = {}) ⇒ Document
Returns a new instance of Document.
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
# File 'lib/brief/document.rb', line 12
def initialize(path, options = {})
if path.respond_to?(:key?) && options.empty?
@frontmatter = path.to_mash
else
@path = Pathname(path)
end
@options = options.to_mash
if @path && self.path.exist?
@raw_content = self.path.read
load_frontmatter
elsif options[:contents]
@raw_content = options[:contents]
end
end
|
Dynamic Method Handling
This class handles dynamic methods through the method_missing method
#method_missing(meth, *args, &block) ⇒ Object
282
283
284
285
286
287
288
|
# File 'lib/brief/document.rb', line 282
def method_missing(meth, *args, &block)
if data.respond_to?(meth)
data.send(meth, *args, &block)
else
super
end
end
|
Instance Attribute Details
#content ⇒ Object
Returns the value of attribute content.
10
11
12
|
# File 'lib/brief/document.rb', line 10
def content
@content
end
|
#frontmatter ⇒ Object
Returns the value of attribute frontmatter.
10
11
12
|
# File 'lib/brief/document.rb', line 10
def frontmatter
@frontmatter
end
|
#options ⇒ Object
Returns the value of attribute options.
10
11
12
|
# File 'lib/brief/document.rb', line 10
def options
@options
end
|
#path ⇒ Object
Returns the value of attribute path.
10
11
12
|
# File 'lib/brief/document.rb', line 10
def path
@path
end
|
#raw_content ⇒ Object
Returns the value of attribute raw_content.
10
11
12
|
# File 'lib/brief/document.rb', line 10
def raw_content
@raw_content
end
|
Class Method Details
.from_contents(content, frontmatter, &block) ⇒ Object
7
8
|
# File 'lib/brief/document.rb', line 7
def self.from_contents(content, frontmatter, &block)
end
|
Instance Method Details
#at(*args, &block) ⇒ Object
Returns a Nokogiri::HTML::Element
177
178
179
|
# File 'lib/brief/document.rb', line 177
def at(*args, &block)
parser.send(:at, *args, &block)
end
|
#briefcase ⇒ Object
120
121
122
|
# File 'lib/brief/document.rb', line 120
def briefcase
(@briefcase_root && Brief.cases[@briefcase_root]) || Brief.case
end
|
#combined_data_and_content ⇒ Object
101
102
103
104
|
# File 'lib/brief/document.rb', line 101
def combined_data_and_content
return content if data.nil? || data.empty?
frontmatter.to_hash.to_yaml + "---\n\n#{ content }"
end
|
#content_hash ⇒ Object
45
46
47
|
# File 'lib/brief/document.rb', line 45
def content_hash
Digest::MD5.hexdigest(@content.to_s)
end
|
#content_stale? ⇒ Boolean
53
54
55
|
# File 'lib/brief/document.rb', line 53
def content_stale?
content_hash != file_hash
end
|
#css(*args, &block) ⇒ Object
Shortcut for querying the rendered HTML by css selectors.
This will allow for model data attributes to be pulled from the document contents.
Returns a Nokogiri::HTML::Element
172
173
174
|
# File 'lib/brief/document.rb', line 172
def css(*args, &block)
parser.send(:css, *args, &block)
end
|
#data ⇒ Object
106
107
108
|
# File 'lib/brief/document.rb', line 106
def data
frontmatter
end
|
#document ⇒ Object
29
30
31
|
# File 'lib/brief/document.rb', line 29
def document
self
end
|
#document_type ⇒ Object
236
237
238
|
# File 'lib/brief/document.rb', line 236
def document_type
options.fetch(:type) { document_type! }
end
|
#document_type! ⇒ Object
240
241
242
243
244
|
# File 'lib/brief/document.rb', line 240
def document_type!
existing = data && data.type
return existing if existing
parent_folder_name.try(:singularize)
end
|
#exist? ⇒ Boolean
217
218
219
|
# File 'lib/brief/document.rb', line 217
def exist?
path && path.exist?
end
|
#extension ⇒ Object
203
204
205
|
# File 'lib/brief/document.rb', line 203
def extension
path.extname
end
|
181
182
183
184
185
186
187
188
189
190
191
192
193
|
# File 'lib/brief/document.rb', line 181
def (*args)
options = args.
args = options.delete(:args) if options.is_a?(Hash) && options.key?(:args)
case
when options.empty? && args.length == 1 && args.first.is_a?(String)
results = css(args.first)
results = results.first if results.length > 1 && args.first.match(/:first-of-type/)
results.try(:text).to_s
else
binding.pry
end
end
|
#file_hash ⇒ Object
49
50
51
|
# File 'lib/brief/document.rb', line 49
def file_hash
Digest::MD5.hexdigest(path.read.to_s)
end
|
#fragment ⇒ Object
274
275
276
|
# File 'lib/brief/document.rb', line 274
def fragment
@fragment ||= Nokogiri::HTML.fragment(to_raw_html)
end
|
#has_sections? ⇒ Boolean
124
125
126
|
# File 'lib/brief/document.rb', line 124
def has_sections?
model_class.section_mappings.length > 0
end
|
#in_briefcase(briefcase) ⇒ Object
110
111
112
113
114
115
116
117
118
|
# File 'lib/brief/document.rb', line 110
def in_briefcase(briefcase)
@briefcase_root = briefcase.root
unless Brief::Util.ensure_child_path(briefcase.docs_path, path)
raise 'Invalid document path'
end
self
end
|
#inspect ⇒ Object
37
38
39
|
# File 'lib/brief/document.rb', line 37
def inspect
"#{ model_class }.at_path(#{relative_path})"
end
|
#model_attributes ⇒ Object
207
208
209
210
211
|
# File 'lib/brief/document.rb', line 207
def model_attributes
(data || {}).to_hash
.merge(path: path, document: self)
.reverse_merge(type: document_type)
end
|
#model_class ⇒ Object
221
222
223
224
225
226
227
228
229
230
231
232
233
234
|
# File 'lib/brief/document.rb', line 221
def model_class
case
when @model_class
@model_class
when briefcase
briefcase.model_class_for(self)
when data && data.type
Brief::Model.for_type(data.type)
when parent_folder_name.length > 0
Brief::Model.for_folder_name(parent_folder_name)
else
raise 'Could not determine the model class to use for this document. Specify the type, or put it in a folder that maps to the correct type.'
end
end
|
#model_instance_registered? ⇒ Boolean
Each model class tracks the instances of the models created and ensures that there is a 1-1 relationship between a document path and the model.
253
254
255
256
257
|
# File 'lib/brief/document.rb', line 253
def model_instance_registered?
model_class && model_class.models.any? do |model|
model.path == path
end
end
|
#parent_folder_name ⇒ Object
246
247
248
|
# File 'lib/brief/document.rb', line 246
def parent_folder_name
path.parent.basename.to_s.downcase
end
|
#parser ⇒ Object
267
268
269
270
271
272
|
# File 'lib/brief/document.rb', line 267
def parser
@parser ||= begin
structure.prescan
structure.create_wrappers
end
end
|
#raw=(val) ⇒ Object
57
58
59
60
61
62
|
# File 'lib/brief/document.rb', line 57
def raw= val
@raw_set = true
@raw_content = val
@raw_content
end
|
#refresh! ⇒ Object
79
80
81
82
83
84
85
86
87
88
|
# File 'lib/brief/document.rb', line 79
def refresh!
@content = nil
@raw_content = path.read
@frontmatter = nil
@raw_frontmatter = nil
@refreshing = true
@content_hash = nil
load_frontmatter
true
end
|
#relative_path ⇒ Object
41
42
43
|
# File 'lib/brief/document.rb', line 41
def relative_path
briefcase.present? ? path.relative_path_from(briefcase.docs_path) : path
end
|
#relative_path_identifier ⇒ Object
195
196
197
198
199
200
201
|
# File 'lib/brief/document.rb', line 195
def relative_path_identifier
if Brief.case
path.relative_path_from(Brief.case.root)
else
path.to_s
end
end
|
#respond_to?(method) ⇒ Boolean
259
260
261
|
# File 'lib/brief/document.rb', line 259
def respond_to?(method)
super || (data && data.respond_to?(method)) || (data && data.key?(method))
end
|
#save ⇒ Object
68
69
70
71
72
73
74
75
76
77
|
# File 'lib/brief/document.rb', line 68
def save
if set_raw?
file_contents = raw_content
else
file_contents = combined_data_and_content
end
path.open('w') {|fh| fh.write(file_contents) }
refresh!
end
|
#save! ⇒ Object
90
91
92
93
94
95
96
97
98
99
|
# File 'lib/brief/document.rb', line 90
def save!
if set_raw?
file_contents = raw_content
else
file_contents = combined_data_and_content
end
path.open('w+') {|fh| fh.write(file_contents) }
refresh!
end
|
#section_headings ⇒ Object
128
129
130
|
# File 'lib/brief/document.rb', line 128
def section_headings
sections.keys
end
|
#sections ⇒ Object
141
142
143
144
145
146
147
148
149
150
151
152
|
# File 'lib/brief/document.rb', line 141
def sections
mappings = model_class.section_mappings
@sections = {}.to_mash
mappings.each do |name, mapping|
fragment = css("section[data-heading='#{name}']").first
@sections[name.parameterize.downcase.underscore] = Brief::Document::Section.new(name, fragment, mapping)
end
@sections
end
|
#sections_data ⇒ Object
132
133
134
135
136
137
138
139
|
# File 'lib/brief/document.rb', line 132
def sections_data
section_headings.reduce({}) do |memo, heading|
section = sections.send(heading)
items = section.items rescue nil
memo[heading] = items if items
memo
end
end
|
#set_raw? ⇒ Boolean
64
65
66
|
# File 'lib/brief/document.rb', line 64
def set_raw?
!!@raw_set
end
|
#structure ⇒ Object
263
264
265
|
# File 'lib/brief/document.rb', line 263
def structure
@structure_analyzer ||= Brief::Document::Structure.new(fragment, raw_content.lines.to_a)
end
|
#to_model ⇒ Object
213
214
215
|
# File 'lib/brief/document.rb', line 213
def to_model
model_class.try(:new, model_attributes)
end
|
#to_s ⇒ Object
33
34
35
|
# File 'lib/brief/document.rb', line 33
def to_s
"#{ model_class }.at_path(#{relative_path})"
end
|
#type ⇒ Object
278
279
280
|
# File 'lib/brief/document.rb', line 278
def type
document_type
end
|