justinfrench/formtastic

View on GitHub
lib/formtastic/inputs/time_zone_input.rb

Summary

Maintainability
A
0 mins
Test Coverage
# frozen_string_literal: true
module Formtastic
  module Inputs

    # Outputs a `<label>` with a `<select>` containing a series of time zones (using Rails' own
    # `time_zone_select` helper), wrapped in the standard `<li>` wrapper.

    # This is the default input choice for attributes matching /time_zone/, but can be applied to
    # any text-like input with `:as => :time_zone`.
    #
    # @example Full form context and output
    #
    #   <%= semantic_form_for(@user) do |f| %>
    #     <%= f.inputs do %>
    #       <%= f.input :time_zone, :as => :time_zone %>
    #     <% end %>
    #   <% end %>
    #
    #   <form...>
    #     <fieldset>
    #       <ol>
    #         <li class="time_zone">
    #           <label for="user_time_zone">Time zone</label>
    #           <input type="text" id="user_time_zone" name="user[time_zone]">
    #         </li>
    #       </ol>
    #     </fieldset>
    #   </form>
    #
    # @see Formtastic::Helpers::InputsHelper#input InputsHelper#input for full documentation of all possible options.
    #
    # The priority_zones option:
    #   Since this input actually uses Rails' `time_zone_select` helper, the :priority_zones
    #   option needs to be an array of ActiveSupport::TimeZone objects.
    #
    #   And you can configure default value using
    #
    #   ```
    #     Formtastic::FormBuilder.priority_time_zones = [timezone1, timezone2]
    #   ```
    #
    #   See http://apidock.com/rails/ActionView/Helpers/FormOptionsHelper/time_zone_select for more information.
    #
    class TimeZoneInput
      include Base

      def to_html
        input_wrapping do
          label_html <<
          builder.time_zone_select(method, priority_zones, input_options, input_html_options)
        end
      end

      def priority_zones
        options[:priority_zones] || Formtastic::FormBuilder.priority_time_zones
      end
    end
  end
end