Sha256: b021a015174b6d216fb74ce544dcb9dd51241d52a0ebe99830d3479e31a1b483

Contents?: true

Size: 1.65 KB

Versions: 7

Compression:

Stored size: 1.65 KB

Contents

# frozen_string_literal: true

module Primer
  # Use Primer::TimeAgoComponent to display a time relative to how long ago it was. This component requires JavaScript.
  class TimeAgoComponent < Primer::Component
    status :beta

    # @example Default
    #   <%= render(Primer::TimeAgoComponent.new(time: Time.at(628232400))) %>
    #
    # @param time [Time] The time to be formatted
    # @param micro [Boolean] If true then the text will be formatted in "micro" mode, using as few characters as possible
    # @param system_arguments [Hash] <%= link_to_system_arguments_docs %>
    def initialize(time:, micro: false, **system_arguments)
      @system_arguments = system_arguments
      @system_arguments[:datetime] = time.utc.iso8601
      @system_arguments[:classes] = class_names("no-wrap", @system_arguments[:classes])
      @system_arguments[:tag] = "time-ago"
      @system_arguments[:format] = "micro" if micro
      @time = time
      @micro = micro
    end

    def call
      render(Primer::BaseComponent.new(**@system_arguments)) { time_in_words }
    end

    private

    def time_in_words
      return @time.in_time_zone.strftime("%b %-d, %Y") unless @micro

      seconds_ago = Time.current - @time

      if seconds_ago < 1.minute
        "1m"
      elsif seconds_ago >= 1.minute && seconds_ago < 1.hour
        "#{(seconds_ago / 60).floor}m"
      elsif seconds_ago >= 1.hour && seconds_ago < 1.day
        "#{(seconds_ago / 60 / 60).floor}h"
      elsif seconds_ago >= 1.day && seconds_ago < 1.year
        "#{(seconds_ago / 60 / 60 / 24).floor}d"
      elsif seconds_ago >= 1.year
        "#{(seconds_ago / 60 / 60 / 24 / 365).floor}y"
      end
    end
  end
end

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
primer_view_components-0.0.38 app/components/primer/time_ago_component.rb
primer_view_components-0.0.37 app/components/primer/time_ago_component.rb
primer_view_components-0.0.36 app/components/primer/time_ago_component.rb
primer_view_components-0.0.35 app/components/primer/time_ago_component.rb
primer_view_components-0.0.34 app/components/primer/time_ago_component.rb
primer_view_components-0.0.33 app/components/primer/time_ago_component.rb
primer_view_components-0.0.32 app/components/primer/time_ago_component.rb