Sha256: f55a065c5cc56fd8f961eeae2fbf58a792ce01be5689c280cd0434935b664b46

Contents?: true

Size: 1.21 KB

Versions: 18

Compression:

Stored size: 1.21 KB

Contents

# frozen_string_literal: true

# 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

18 entries across 18 versions & 1 rubygems

Version Path
lhs-19.4.0 lib/lhs/item.rb
lhs-19.3.1 lib/lhs/item.rb
lhs-19.3.0 lib/lhs/item.rb
lhs-19.2.0 lib/lhs/item.rb
lhs-19.1.0 lib/lhs/item.rb
lhs-19.0.2 lib/lhs/item.rb
lhs-19.0.1 lib/lhs/item.rb
lhs-19.0.0 lib/lhs/item.rb
lhs-19.0.0.pre.endpoint.1 lib/lhs/item.rb
lhs-18.0.3 lib/lhs/item.rb
lhs-18.0.2 lib/lhs/item.rb
lhs-18.0.1 lib/lhs/item.rb
lhs-18.0.0 lib/lhs/item.rb
lhs-17.0.1 lib/lhs/item.rb
lhs-17.0.1.pre1 lib/lhs/item.rb
lhs-18.0.0.pre.pre1 lib/lhs/item.rb
lhs-17.0.0 lib/lhs/item.rb
lhs-16.1.6 lib/lhs/item.rb