Class: ThemeCheck::ShopifyLiquid::SourceIndex::FilterEntry

Inherits:
BaseEntry
  • Object
show all
Defined in:
lib/theme_check/shopify_liquid/source_index/filter_entry.rb

Constant Summary

Constants inherited from BaseEntry

BaseEntry::SHOPIFY_DEV_ROOT_URL

Instance Attribute Summary

Attributes inherited from BaseEntry

#hash, #return_type

Instance Method Summary collapse

Methods inherited from BaseEntry

#deprecated?, #deprecation_reason, #description, #initialize, #name, #return_type_instance, #summary

Constructor Details

This class inherits a constructor from ThemeCheck::ShopifyLiquid::SourceIndex::BaseEntry

Instance Method Details

#input_typeObject



12
13
14
# File 'lib/theme_check/shopify_liquid/source_index/filter_entry.rb', line 12

def input_type
  @input_type ||= hash['syntax'].split(' | ')[0]
end

#parametersObject



7
8
9
10
# File 'lib/theme_check/shopify_liquid/source_index/filter_entry.rb', line 7

def parameters
  (hash['parameters'] || [])
    .map { |hash| ParameterEntry.new(hash) }
end

#shopify_dev_urlObject



16
17
18
# File 'lib/theme_check/shopify_liquid/source_index/filter_entry.rb', line 16

def shopify_dev_url
  "#{SHOPIFY_DEV_ROOT_URL}/filters/#{hash['name']}"
end