Class: Jekyll::Drops::Drop
- Inherits:
-
Liquid::Drop
- Object
- Liquid::Drop
- Jekyll::Drops::Drop
- Includes:
- Enumerable
- Defined in:
- lib/jekyll/drops/drop.rb
Direct Known Subclasses
CollectionDrop, DocumentDrop, SiteDrop, UnifiedPayloadDrop, UrlDrop
Constant Summary collapse
- NON_CONTENT_METHODS =
[:fallback_data, :collapse_document].freeze
Class Method Summary collapse
-
.mutable(is_mutable = nil) ⇒ Object
Get or set whether the drop class is mutable.
- .mutable? ⇒ Boolean
Instance Method Summary collapse
-
#[](key) ⇒ Object
Access a method in the Drop or a field in the underlying hash data.
-
#[]=(key, val) ⇒ Object
Set a field in the Drop.
-
#content_methods ⇒ Object
Generates a list of strings which correspond to content getter methods.
- #each(&block) ⇒ Object
-
#each_key(&block) ⇒ Object
Collects all the keys and passes each to the block in turn.
-
#hash_for_json(state = nil) ⇒ Object
Generate a Hash for use in generating JSON.
-
#initialize(obj) ⇒ Drop
constructor
Create a new Drop.
-
#inspect ⇒ Object
Inspect the drop’s keys and values through a JSON representation of its keys and values.
-
#key?(key) ⇒ Boolean
Check if key exists in Drop.
-
#keys ⇒ Object
Generates a list of keys with user content as their values.
- #merge(other, &block) ⇒ Object
- #merge!(other) ⇒ Object
-
#to_h ⇒ Object
(also: #to_hash)
Generate a Hash representation of the Drop by resolving each key’s value.
-
#to_json(state = nil) ⇒ Object
Generate a JSON representation of the Drop.
Constructor Details
#initialize(obj) ⇒ Drop
Create a new Drop
obj - the Jekyll Site, Collection, or Document required by the drop.
Returns nothing
35 36 37 38 |
# File 'lib/jekyll/drops/drop.rb', line 35 def initialize(obj) @obj = obj @mutations = {} # only if mutable: true end |
Class Method Details
.mutable(is_mutable = nil) ⇒ Object
Get or set whether the drop class is mutable. Mutability determines whether or not pre-defined fields may be overwritten.
is_mutable - Boolean set mutability of the class (default: nil)
Returns the mutability of the class
17 18 19 20 21 22 23 |
# File 'lib/jekyll/drops/drop.rb', line 17 def self.mutable(is_mutable = nil) if is_mutable @is_mutable = is_mutable else @is_mutable = false end end |
.mutable? ⇒ Boolean
25 26 27 |
# File 'lib/jekyll/drops/drop.rb', line 25 def self.mutable? @is_mutable end |
Instance Method Details
#[](key) ⇒ Object
Access a method in the Drop or a field in the underlying hash data. If mutable, checks the mutations first. Then checks the methods, and finally check the underlying hash (e.g. document front matter) if all the previous places didn’t match.
key - the string key whose value to fetch
Returns the value for the given key, or nil if none exists
48 49 50 51 52 53 54 55 56 |
# File 'lib/jekyll/drops/drop.rb', line 48 def [](key) if self.class.mutable? && @mutations.key?(key) @mutations[key] elsif self.class.invokable? key public_send key else fallback_data[key] end end |
#[]=(key, val) ⇒ Object
Set a field in the Drop. If mutable, sets in the mutations and returns. If not mutable, checks first if it’s trying to override a Drop method and raises a DropMutationException if so. If not mutable and the key is not a method on the Drop, then it sets the key to the value in the underlying hash (e.g. document front matter)
key - the String key whose value to set val - the Object to set the key’s value to
Returns the value the key was set to unless the Drop is not mutable and the key matches a method in which case it raises a DropMutationException.
71 72 73 74 75 76 77 78 79 80 81 82 83 |
# File 'lib/jekyll/drops/drop.rb', line 71 def []=(key, val) if respond_to?("#{key}=") public_send("#{key}=", val) elsif respond_to? key if self.class.mutable? @mutations[key] = val else raise Errors::DropMutationException, "Key #{key} cannot be set in the drop." end else fallback_data[key] = val end end |
#content_methods ⇒ Object
Generates a list of strings which correspond to content getter methods.
Returns an Array of strings which represent method-specific keys.
89 90 91 92 93 94 95 |
# File 'lib/jekyll/drops/drop.rb', line 89 def content_methods @content_methods ||= ( self.class.instance_methods - Jekyll::Drops::Drop.instance_methods - NON_CONTENT_METHODS ).map(&:to_s).reject do |method| method.end_with?("=") end end |
#each(&block) ⇒ Object
168 169 170 171 172 |
# File 'lib/jekyll/drops/drop.rb', line 168 def each(&block) each_key.each do |key| yield key, self[key] end end |
#each_key(&block) ⇒ Object
Collects all the keys and passes each to the block in turn.
block - a block which accepts one argument, the key
Returns nothing.
164 165 166 |
# File 'lib/jekyll/drops/drop.rb', line 164 def each_key(&block) keys.each(&block) 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.
147 148 149 |
# File 'lib/jekyll/drops/drop.rb', line 147 def hash_for_json(state = nil) to_h end |
#inspect ⇒ Object
Inspect the drop’s keys and values through a JSON representation of its keys and values.
Returns a pretty generation of the hash representation of the Drop.
138 139 140 141 |
# File 'lib/jekyll/drops/drop.rb', line 138 def inspect require 'json' JSON.pretty_generate to_h end |
#key?(key) ⇒ Boolean
Check if key exists in Drop
key - the string key whose value to fetch
Returns true if the given key is present
102 103 104 105 106 107 108 |
# File 'lib/jekyll/drops/drop.rb', line 102 def key?(key) if self.class.mutable && @mutations.key?(key) true else respond_to?(key) || fallback_data.key?(key) end end |
#keys ⇒ Object
Generates a list of keys with user content as their values. This gathers up the Drop methods and keys of the mutations and underlying data hashes and performs a set union to ensure a list of unique keys for the Drop.
Returns an Array of unique keys for content for the Drop.
116 117 118 119 120 |
# File 'lib/jekyll/drops/drop.rb', line 116 def keys (content_methods | @mutations.keys | fallback_data.keys).flatten end |
#merge(other, &block) ⇒ Object
174 175 176 177 178 179 180 181 182 |
# File 'lib/jekyll/drops/drop.rb', line 174 def merge(other, &block) self.dup.tap do |me| if block.nil? me.merge!(other) else me.merge!(other, block) end end end |
#merge!(other) ⇒ Object
184 185 186 187 188 189 190 191 192 193 194 195 196 197 |
# File 'lib/jekyll/drops/drop.rb', line 184 def merge!(other) other.each_key do |key| if block_given? self[key] = yield key, self[key], other[key] else if Utils.mergable?(self[key]) && Utils.mergable?(other[key]) self[key] = Utils.deep_merge_hashes(self[key], other[key]) next end self[key] = other[key] unless other[key].nil? end end end |
#to_h ⇒ Object Also known as: to_hash
Generate a Hash representation of the Drop by resolving each key’s value. It includes Drop methods, mutations, and the underlying object’s data. See the documentation for Drop#keys for more.
Returns a Hash with all the keys and values resolved.
127 128 129 130 131 |
# File 'lib/jekyll/drops/drop.rb', line 127 def to_h keys.each_with_object({}) do |(key, _), result| result[key] = self[key] end end |
#to_json(state = nil) ⇒ Object
Generate a JSON representation of the Drop.
Returns a JSON representation of the Drop in a String.
154 155 156 157 |
# File 'lib/jekyll/drops/drop.rb', line 154 def to_json(state = nil) require 'json' JSON.generate(hash_for_json(state), state) end |