123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990 |
- # Include this mix-in to make a class droppable to Liquid, and adjust
- # its behavior in Liquid by implementing its dedicated Drop class
- # named with a "Drop" suffix.
- module LiquidDroppable
- extend ActiveSupport::Concern
- class Drop < Liquid::Drop
- def initialize(object)
- @object = object
- end
- def to_s
- @object.to_s
- end
- def each
- (public_instance_methods - Drop.public_instance_methods).each { |name|
- yield [name, __send__(name)]
- }
- end
- def as_json
- return {} unless defined?(self.class::METHODS)
- Hash[self.class::METHODS.map { |m| [m, send(m).as_json]}]
- end
- end
- included do
- const_set :Drop,
- if Kernel.const_defined?(drop_name = "#{name}Drop")
- Kernel.const_get(drop_name)
- else
- Kernel.const_set(drop_name, Class.new(Drop))
- end
- end
- def to_liquid
- self.class::Drop.new(self)
- end
- class MatchDataDrop < Drop
- METHODS = %w[pre_match post_match names size]
- METHODS.each { |attr|
- define_method(attr) {
- @object.__send__(attr)
- }
- }
- def to_s
- @object[0]
- end
- def before_method(method)
- @object[method]
- rescue IndexError
- nil
- end
- end
- class ::MatchData
- def to_liquid
- MatchDataDrop.new(self)
- end
- end
- require 'uri'
- class URIDrop < Drop
- METHODS = URI::Generic::COMPONENT
- METHODS.each { |attr|
- define_method(attr) {
- @object.__send__(attr)
- }
- }
- end
- class ::URI::Generic
- def to_liquid
- URIDrop.new(self)
- end
- end
- class ::ActiveRecord::Associations::CollectionProxy
- def to_liquid
- self.to_a.to_liquid
- end
- end
- end
|