Sha256: e80bab3b6c412f9af4c97be0ea4db80203938ed8a17510f95451ab46b5737a16
Contents?: true
Size: 1.76 KB
Versions: 19
Compression:
Stored size: 1.76 KB
Contents
# frozen_string_literal: true module UiBibz::Ui::Core::Forms::Files # Create a FileField # # This element is an extend of UiBibz::Ui::Core::Component. # # ==== Attributes # # * +content+ - Content of element # * +options+ - Options of element # * +html_options+ - Html Options of element # # ==== Options # # You can add HTML attributes using the +html_options+. # You can pass arguments in options attribute: # * +state+ - Symbol # (+:active+, +:disabled+) # # ==== Signatures # # UiBibz::Ui::Core::Forms::Texts::FileField.new(content, options = {}, html_options = {}).render # # UiBibz::Ui::Core::Forms::Texts::FileField.new(options = {}, html_options = {}) do # content # end.render # # ==== Examples # # UiBibz::Ui::Core::Forms::Texts::FileField.new('upload', class: 'test') # # UiBibz::Ui::Core::Forms::Texts::FileField.new(class: 'test') do # #content # end # # ==== Helper # # ui_file_field(options = {}, html_options = {}) do # # content # end # class FileField < UiBibz::Ui::Core::Component # See UiBibz::Ui::Core::Component.initialize # Render html tag def pre_render file_field_tag content, html_options end private def component_html_options super.merge({ multiple: options[:multiple], disabled: disabled?, value: format_value(options[:input_text] || options[:value]) }) end def format_value(value) if value.is_a? ActiveStorage::Attached::One return '' unless value.attached? return value.attachment.blob.filename end value.to_s end def component_html_classes super << 'form-control' end end end
Version data entries
19 entries across 19 versions & 1 rubygems