summaryrefslogtreecommitdiffstats
path: root/lib/roo/excelx/cell/boolean.rb
blob: 2cdfc22eb62d4115d1434f18fa930d9894adb3e7 (plain) (blame)
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
# frozen_string_literal: true

module Roo
  class Excelx
    class Cell
      class Boolean < Cell::Base
        attr_reader :value, :formula, :format, :cell_value, :coordinate

        attr_reader_with_default default_type: :boolean, cell_type: :boolean

        def initialize(value, formula, style, link, coordinate)
          super(value, formula, nil, style, nil, coordinate)
          @value = link ? Roo::Link.new(link, value) : create_boolean(value)
        end

        def formatted_value
          value ? 'TRUE' : 'FALSE'
        end

        private

        def create_boolean(value)
          # FIXME: Using a boolean will cause methods like Base#to_csv to fail.
          #       Roo is using some method to ignore false/nil values.
          value.to_i == 1
        end
      end
    end
  end
end