Sha256: 7ae87cee3e2952fd45f7c9b1e7309bd9326f0e1365d8f851b2a001e07e463f0a

Contents?: true

Size: 509 Bytes

Versions: 1141

Compression:

Stored size: 509 Bytes

Contents

# frozen_string_literal: true

module Playbook
  module Props
    class NestedProps < Playbook::Props::Base
      def initialize(nested_kit:, **kwargs)
        super(**kwargs)
        @nested_kit = nested_kit
      end

      def validate(values)
        return true if values.nil?

        @nested_kit.props.each do |prop_key, definition|
          definition.validate! definition.value(values[prop_key])
        end
        true
      rescue Playbook::Props::Error
        false
      end
    end
  end
end

Version data entries

1,141 entries across 1,141 versions & 1 rubygems

Version Path
playbook_ui-14.11.1.pre.alpha.PLAY1750pbcontenttagkitbutton5340 lib/playbook/props/nested_props.rb
playbook_ui-14.11.1.pre.alpha.PLAY1750pbcontenttagkitbutton5339 lib/playbook/props/nested_props.rb
playbook_ui-14.12.0.pre.rc.3 lib/playbook/props/nested_props.rb
playbook_ui-14.12.0.pre.rc.2 lib/playbook/props/nested_props.rb
playbook_ui-14.12.0.pre.rc.1 lib/playbook/props/nested_props.rb
playbook_ui-14.12.0.pre.rc.0 lib/playbook/props/nested_props.rb
playbook_ui-14.10.0.pre.alpha.PLAY1774timelinelabelstepspacing5315 lib/playbook/props/nested_props.rb
playbook_ui-14.10.0.pre.alpha.PLAY1774timelinelabelstepspacing5314 lib/playbook/props/nested_props.rb
playbook_ui-14.10.0.pre.alpha.PLAY1750pbcontenttagkitbutton5308 lib/playbook/props/nested_props.rb
playbook_ui-14.11.1 lib/playbook/props/nested_props.rb
playbook_ui-14.11.0.pre.rc.17 lib/playbook/props/nested_props.rb
playbook_ui-14.11.0 lib/playbook/props/nested_props.rb
playbook_ui-14.11.0.pre.rc.16 lib/playbook/props/nested_props.rb
playbook_ui-14.10.0.pre.alpha.play16825301 lib/playbook/props/nested_props.rb
playbook_ui-14.11.0.pre.rc.15 lib/playbook/props/nested_props.rb
playbook_ui-14.11.0.pre.rc.14 lib/playbook/props/nested_props.rb
playbook_ui-14.11.0.pre.rc.13 lib/playbook/props/nested_props.rb
playbook_ui-14.11.0.pre.rc.12 lib/playbook/props/nested_props.rb
playbook_ui-14.10.0.pre.alpha.PLAY1774timelinelabelstepspacing5274 lib/playbook/props/nested_props.rb
playbook_ui-14.10.0.pre.alpha.play1465attempt25272 lib/playbook/props/nested_props.rb