Sha256: 0dd342f73ab1378369f19cb0eb3a4e32fc0ff0b2e69674418381f8974a1a1eb2
Contents?: true
Size: 1.08 KB
Versions: 2
Compression:
Stored size: 1.08 KB
Contents
# frozen_string_literal: true module Yattho module Forms # :nodoc: class CheckBox < BaseComponent delegate :builder, :form, to: :@input def initialize(input:) @input = input @input.add_label_classes("FormControl-label") @input.add_input_classes("FormControl-checkbox") return unless @input.scheme == :array @input.input_arguments[:multiple] = true @input.label_arguments[:value] = checked_value end def nested_form_arguments return @nested_form_arguments if defined?(@nested_form_arguments) @nested_form_arguments = { hidden: @input.hidden?, **@input.nested_form_arguments } @nested_form_arguments[:class] = class_names( @nested_form_arguments[:class], @nested_form_arguments.delete(:classes), "ml-4" ) @nested_form_arguments end private def checked_value @input.value || "1" end def unchecked_value return if @input.scheme == :array @input.unchecked_value || "0" end end end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
yattho_view_components-0.1.1 | lib/yattho/forms/check_box.rb |
yattho_view_components-0.0.1 | lib/yattho/forms/check_box.rb |