Class: Jekyll::Drops::DocumentDrop

Inherits:
Drop
  • Object
show all
Extended by:
Forwardable
Defined in:
lib/jekyll/drops/document_drop.rb

Direct Known Subclasses

ExcerptDrop

Constant Summary collapse

NESTED_OBJECT_FIELD_BLACKLIST =
%w{
  content output excerpt next previous
}.freeze

Constants inherited from Drop

Jekyll::Drops::Drop::NON_CONTENT_METHODS

Instance Method Summary collapse

Methods inherited from Drop

#[], #[]=, #content_methods, #each, #each_key, #initialize, #inspect, #key?, #keys, #merge, #merge!, mutable, mutable?, #to_h, #to_json

Constructor Details

This class inherits a constructor from Jekyll::Drops::Drop

Instance Method Details

#collapse_document(doc) ⇒ Object

Generate a Hash which breaks the recursive chain. Certain fields which are normally available are omitted.

Returns a Hash with only non-recursive fields present.



50
51
52
53
54
# File 'lib/jekyll/drops/document_drop.rb', line 50

def collapse_document(doc)
  doc.keys.each_with_object({}) do |(key, _), result|
    result[key] = doc[key] unless NESTED_OBJECT_FIELD_BLACKLIST.include?(key)
  end
end

#collectionObject



17
18
19
# File 'lib/jekyll/drops/document_drop.rb', line 17

def collection
  @obj.collection.label
end

#excerptObject



21
22
23
# File 'lib/jekyll/drops/document_drop.rb', line 21

def excerpt
  fallback_data['excerpt'].to_s
end

#hash_for_json(state = nil) ⇒ Object

Generate a Hash for use in generating JSON. This is useful if fields need to be cleared before the JSON can generate.

Returns a Hash ready for JSON generation.



37
38
39
40
41
42
43
44
# File 'lib/jekyll/drops/document_drop.rb', line 37

def hash_for_json(state = nil)
  to_h.tap do |hash|
    if state && state.depth >= 2
      hash["previous"] = collapse_document(hash["previous"]) if hash["previous"]
      hash["next"]     = collapse_document(hash["next"]) if hash["next"]
    end
  end
end

#nextObject



29
30
31
# File 'lib/jekyll/drops/document_drop.rb', line 29

def next
  @obj.next_doc.to_liquid
end

#previousObject



25
26
27
# File 'lib/jekyll/drops/document_drop.rb', line 25

def previous
  @obj.previous_doc.to_liquid
end