Sha256: 892a9c7b258f84f5e60be63d0fa99a2ade6122db755cda3fa4b617024cd15b93

Contents?: true

Size: 1.32 KB

Versions: 247

Compression:

Stored size: 1.32 KB

Contents

# frozen_string_literal: true

module Playbook
  module PbFormsHelper
    # Renders a pb form with ::Playbook::Forms::Builder, that can render
    # Playbook kits in the most railsie way.
    #
    # I.e.:
    #
    #   pb_form_with model: @user do |f|
    #     f.text_field :name
    #   end
    #
    # The form can also validate the fields, and trigger the validation automatically:
    #
    # I.e.:
    #
    #   pb_form_with model: @user, validate: true do |f|
    #     f.text_field :name, required: true
    #   end
    #
    # @param data [Hash] hash of data attributes
    # @param validate [Boolean] whether validation should be triggered or not
    # @see [#form_with] for other options
    def pb_form_with(data: {}, validate: false, loading: false, **kwargs, &block)
      data = data.merge("pb-form-validation" => validate)
      classname = ["pb-form", kwargs[:class]].join(" ")
      classname += " pb_form_loading" if loading
      options = kwargs.merge(
        class: classname,
        data: data,
        builder: ::Playbook::Forms::Builder
      )

      content_for(:pb_js, javascript_tag(<<~JS))
        window.addEventListener("DOMContentLoaded", function() { PbFormValidation.start() })
        window.addEventListener("DOMContentLoaded", () => formHelper())
      JS

      form_with(**options, &block)
    end
  end
end

Version data entries

247 entries across 247 versions & 1 rubygems

Version Path
playbook_ui-14.12.0.pre.alpha.advancedtablealignmentfixes5693 lib/playbook/pb_forms_helper.rb
playbook_ui-14.12.0.pre.alpha.testingwithfas5689 lib/playbook/pb_forms_helper.rb
playbook_ui-14.12.0.pre.alpha.testingwithfas5686 lib/playbook/pb_forms_helper.rb
playbook_ui-14.12.0.pre.alpha.play1828updateviteversion5680 lib/playbook/pb_forms_helper.rb
playbook_ui-14.12.0.pre.alpha.PBNTR456fixedconftoastrailsautoclose5673 lib/playbook/pb_forms_helper.rb
playbook_ui-14.12.0.pre.alpha.PLAY1602lightboxoverlapnitrobug5655 lib/playbook/pb_forms_helper.rb
playbook_ui-14.12.0.pre.alpha.PBNTR720railscarddraggable5649 lib/playbook/pb_forms_helper.rb
playbook_ui-14.12.0.pre.alpha.PLAY1602lightboxoverlapnitrobug5646 lib/playbook/pb_forms_helper.rb
playbook_ui-14.12.0 lib/playbook/pb_forms_helper.rb
playbook_ui-14.12.0.pre.rc.12 lib/playbook/pb_forms_helper.rb
playbook_ui-14.11.1.pre.alpha.PLAY17445539 lib/playbook/pb_forms_helper.rb
playbook_ui-14.11.1.pre.alpha.PBNTR798datepickerturbo5537 lib/playbook/pb_forms_helper.rb
playbook_ui-14.11.1.pre.alpha.pbntr703collapsiblerowsrails5536 lib/playbook/pb_forms_helper.rb
playbook_ui-14.11.1.pre.alpha.PLAY1751pbcontenttagpt25529 lib/playbook/pb_forms_helper.rb
playbook_ui-14.11.1.pre.alpha.PBNTR7495495 lib/playbook/pb_forms_helper.rb
playbook_ui-14.12.0.pre.rc.11 lib/playbook/pb_forms_helper.rb
playbook_ui-14.12.0.pre.rc.10 lib/playbook/pb_forms_helper.rb
playbook_ui-14.12.0.pre.rc.9 lib/playbook/pb_forms_helper.rb
playbook_ui-14.12.0.pre.rc.8 lib/playbook/pb_forms_helper.rb
playbook_ui-14.12.0.pre.rc.7 lib/playbook/pb_forms_helper.rb