% stimulus_controller = 'fields--date' form ||= current_fields_form options ||= {} user_tz = ActiveSupport::TimeZone.find_tzinfo(current_user.time_zone).name current_team_time_zone = if current_user&.respond_to?(:current_team) current_team.time_zone else "UTC" end team_tz = ActiveSupport::TimeZone.find_tzinfo(current_team_time_zone)&.name # data options data_options ||= {} data_options[:id] ||= form.field_id(method) data_options[:class] = "hidden" data_options[:value] = form.object.send(method)&.in_time_zone(current_time_zone)&.iso8601 data_options = data_options.merge({ data: {"#{stimulus_controller}-target": 'field' }}) # localized display options options[:id] ||= "#{form.field_id(method)}_display" options[:class] = "form-control single-daterange w-full border-slate-300 dark:bg-slate-800 dark:border-slate-900 #{options[:class]}".strip raw_value = form.object.send(method)&.in_time_zone(current_user.time_zone || current_team_time_zone || "UTC") options[:value] = raw_value && I18n.l(raw_value, format: :date_and_time_field) options = options.merge({ data: {"#{stimulus_controller}-target": 'displayField' }}) other_options ||= {} %> <%= render 'shared/fields/field', form: form, method: method, options: options, other_options: other_options do %> <% content_for :field do %>