Sha256: 76c6e5460cc2c3ab49f46525a43e96e73e1ec0201fabeb1e60d4a2f84386f9f5
Contents?: true
Size: 766 Bytes
Versions: 1
Compression:
Stored size: 766 Bytes
Contents
# frozen_string_literal: true using Katalyst::HtmlAttributes::HasHtmlAttributes module Katalyst module Tables module Body # Formats the value as a money value # # The value is expected to be in cents. # Adds a class to the cell to allow for custom styling class CurrencyComponent < BodyCellComponent def initialize(table, record, attribute, options: {}, **html_attributes) super(table, record, attribute, **html_attributes) @options = options end def rendered_value value.present? ? number_to_currency(value / 100.0, @options) : "" end def default_html_attributes super.merge_html(class: "type-currency") end end end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
katalyst-tables-3.0.0.beta1 | app/components/katalyst/tables/body/currency_component.rb |