Sha256: f11f0b2804acc8293f0ff79502b55744f3e5595860e4db52c0289d94ec8f96dc

Contents?: true

Size: 999 Bytes

Versions: 3

Compression:

Stored size: 999 Bytes

Contents

module Parliament
  module Grom
    module Decorator
      module Helpers
        # Namespace for date helper methods
        module DateHelper
          # Format start_date and end_date into a readable string
          #
          # @param [String] date_format a string that represents the format we want to use for the date
          #
          # @example Format a node with an end_date with the date format YYYY-MM-DD
          #   "grom_node_instance.date_range('%Y-%m-%d)" #=> "2010-01-01 to 2015-01-01"
          #
          # @return [String] formatted date range
          def date_range(date_format: '%-d %-B %Y')
            return I18n.t('date_unavailable') if start_date.nil?
            if end_date
              "#{I18n.l(start_date, format: date_format)} #{I18n.t('to')} #{I18n.l(end_date, format: date_format)}"
            else
              "#{I18n.l(start_date, format: date_format)} #{I18n.t('to_present')}"
            end
          end
        end
      end
    end
  end
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
parliament-grom-decorators-1.0.2 lib/parliament/grom/decorator/helpers/date_helper.rb
parliament-grom-decorators-1.0.0 lib/parliament/grom/decorator/helpers/date_helper.rb
parliament-grom-decorators-1.0.0.pre.pre lib/parliament/grom/decorator/helpers/date_helper.rb