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.12.0.pre.alpha.testingwithfas5689 lib/playbook/props/nested_props.rb
playbook_ui-14.12.0.pre.alpha.testingwithfas5686 lib/playbook/props/nested_props.rb
playbook_ui-14.12.0.pre.alpha.play1828updateviteversion5680 lib/playbook/props/nested_props.rb
playbook_ui-14.12.0.pre.alpha.PBNTR456fixedconftoastrailsautoclose5673 lib/playbook/props/nested_props.rb
playbook_ui-14.12.0.pre.alpha.PLAY1602lightboxoverlapnitrobug5655 lib/playbook/props/nested_props.rb
playbook_ui-14.12.0.pre.alpha.PBNTR720railscarddraggable5649 lib/playbook/props/nested_props.rb
playbook_ui-14.12.0.pre.alpha.PLAY1602lightboxoverlapnitrobug5646 lib/playbook/props/nested_props.rb
playbook_ui-14.11.1.pre.alpha.PBNTR440enableglobalpropspbformwith5624 lib/playbook/props/nested_props.rb
playbook_ui-14.12.0 lib/playbook/props/nested_props.rb
playbook_ui-14.12.0.pre.rc.12 lib/playbook/props/nested_props.rb
playbook_ui-14.11.1.pre.alpha.PLAY17445539 lib/playbook/props/nested_props.rb
playbook_ui-14.11.1.pre.alpha.PBNTR798datepickerturbo5537 lib/playbook/props/nested_props.rb
playbook_ui-14.11.1.pre.alpha.pbntr703collapsiblerowsrails5536 lib/playbook/props/nested_props.rb
playbook_ui-14.11.1.pre.alpha.PLAY1751pbcontenttagpt25529 lib/playbook/props/nested_props.rb
playbook_ui-14.11.1.pre.alpha.PBNTR7495495 lib/playbook/props/nested_props.rb
playbook_ui-14.12.0.pre.rc.11 lib/playbook/props/nested_props.rb
playbook_ui-14.12.0.pre.rc.10 lib/playbook/props/nested_props.rb
playbook_ui-14.12.0.pre.rc.9 lib/playbook/props/nested_props.rb
playbook_ui-14.12.0.pre.rc.8 lib/playbook/props/nested_props.rb
playbook_ui-14.12.0.pre.rc.7 lib/playbook/props/nested_props.rb