time_tracking_formatter.rb 702 字节
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30
module Gitlab
  module TimeTrackingFormatter
    extend self

    def parse(string)
      with_custom_config do
        ChronicDuration.parse(string, default_unit: 'hours') rescue nil
      end
    end

    def output(seconds)
      with_custom_config do
        ChronicDuration.output(seconds, format: :short, limit_to_hours: false, weeks: true) rescue nil
      end
    end

    def with_custom_config
      # We may want to configure it through project settings in a future version.
      ChronicDuration.hours_per_day = 8
      ChronicDuration.days_per_week = 5

      result = yield

      ChronicDuration.hours_per_day = 24
      ChronicDuration.days_per_week = 7

      result
    end
  end
end