Sha256: 647b9a0b80fea9d091d484712f9673e257d08e8b8a34cda3618a7eda2c459f6a

Contents?: true

Size: 1.41 KB

Versions: 5

Compression:

Stored size: 1.41 KB

Contents

module Extension
  module Models
    class Specification
      include SmartProperties

      module Features
        class Argo
          include SmartProperties

          property! :surface, converts: :to_str
          property! :renderer_package_name, converts: :to_str
          property! :git_template, converts: :to_str
          property! :required_fields, accepts: Array, default: -> { [] }
          property! :required_shop_beta_flags, accepts: Array, default: -> { [] }
          property! :cli_package_name, accepts: String, converts: :to_str, default: ""
        end

        def self.build(feature_set_attributes)
          feature_set_attributes.each_with_object(OpenStruct.new) do |(identifier, feature_attributes), feature_set|
            feature_set[identifier] = ShopifyCli::ResolveConstant
              .call(identifier, namespace: Features)
              .rescue { OpenStruct }
              .then { |c| c.new(**feature_attributes) }
              .unwrap { |error| raise(error) }
          end
        end
      end

      property! :identifier
      property :name, converts: :to_str
      property :graphql_identifier, converts: :to_str
      property! :features, converts: Features.method(:build), default: -> { [] }
      property! :options, converts: ->(options) { OpenStruct.new(options) }, default: -> { OpenStruct.new }

      def graphql_identifier
        super || identifier
      end
    end
  end
end

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
shopify-cli-1.14.0 lib/project_types/extension/models/specification.rb
shopify-cli-1.13.1 lib/project_types/extension/models/specification.rb
shopify-cli-1.13.0 lib/project_types/extension/models/specification.rb
shopify-cli-1.12.0 lib/project_types/extension/models/specification.rb
shopify-cli-1.11.0 lib/project_types/extension/models/specification.rb