Sha256: 39a6ddd4e1d6376a055def48a24ac21fa3d92b530eacb41c5c583fa3671ce8a2

Contents?: true

Size: 1.18 KB

Versions: 19

Compression:

Stored size: 1.18 KB

Contents

# An item is a concrete record.
# It can be part of another proxy like collection.
class LHS::Item < LHS::Proxy

  autoload :Destroy,
    'lhs/concerns/item/destroy'
  autoload :Save,
    'lhs/concerns/item/save'
  autoload :Update,
    'lhs/concerns/item/update'
  autoload :Validation,
    'lhs/concerns/item/validation'

  include Create
  include Destroy
  include Save
  include Update
  include Validation

  delegate :map, :present?, :blank?, :empty?, to: :_raw, allow_nil: true
  delegate :_raw, to: :_data

  def collection?
    false
  end

  def item?
    true
  end

  def respond_to?(sym, include_all = false)
    if sym == :to_ary
      false
    else
      super(sym, include_all)
    end
  end

  protected

  def method_missing(name, *args, &_block)
    return set(name, args.try(&:first)) if name.to_s[/=$/]
    get(name, *args)
  end

  def respond_to_missing?(name, _include_all = false)
    # We accept every message that does not belong to set of keywords
    !BLACKLISTED_KEYWORDS.include?(name.to_s)
  end

  def unwrap_nested_item
    return _data unless _record.item_key
    nested_data = _data.dig(*_record.item_key)
    return _data unless nested_data
    nested_data
  end
end

Version data entries

19 entries across 19 versions & 1 rubygems

Version Path
lhs-16.1.5 lib/lhs/item.rb
lhs-16.1.4 lib/lhs/item.rb
lhs-16.1.3 lib/lhs/item.rb
lhs-16.1.2 lib/lhs/item.rb
lhs-16.1.1 lib/lhs/item.rb
lhs-16.1.0 lib/lhs/item.rb
lhs-16.0.1 lib/lhs/item.rb
lhs-16.0.0 lib/lhs/item.rb
lhs-15.7.0 lib/lhs/item.rb
lhs-15.6.1 lib/lhs/item.rb
lhs-15.6.0 lib/lhs/item.rb
lhs-15.5.1 lib/lhs/item.rb
lhs-15.5.0 lib/lhs/item.rb
lhs-15.4.1 lib/lhs/item.rb
lhs-15.4.0 lib/lhs/item.rb
lhs-15.4.0.pre.hasone.1 lib/lhs/item.rb
lhs-15.3.3 lib/lhs/item.rb
lhs-15.3.3.pre.fixoptions.1 lib/lhs/item.rb
lhs-15.3.2 lib/lhs/item.rb