aboutsummaryrefslogtreecommitdiffstats
path: root/lib/roo/excelx/cell/time.rb
diff options
context:
space:
mode:
Diffstat (limited to 'lib/roo/excelx/cell/time.rb')
-rw-r--r--lib/roo/excelx/cell/time.rb43
1 files changed, 43 insertions, 0 deletions
diff --git a/lib/roo/excelx/cell/time.rb b/lib/roo/excelx/cell/time.rb
new file mode 100644
index 0000000..d661ab8
--- /dev/null
+++ b/lib/roo/excelx/cell/time.rb
@@ -0,0 +1,43 @@
+require 'date'
+
+module Roo
+ class Excelx
+ class Cell
+ class Time < Roo::Excelx::Cell::DateTime
+ attr_reader :value, :formula, :format, :cell_value, :link, :coordinate
+
+ def initialize(value, formula, excelx_type, style, link, base_date, coordinate)
+ # NOTE: Pass all arguments to DateTime super class.
+ super
+ @type = :time
+ @format = excelx_type.last
+ @datetime = create_datetime(base_date, value)
+ @value = link? ? Roo::Link.new(link, value) : (value.to_f * 86_400).to_i
+ end
+
+ def formatted_value
+ formatter = @format.gsub(/#{TIME_FORMATS.keys.join('|')}/, TIME_FORMATS)
+ @datetime.strftime(formatter)
+ end
+
+ alias_method :to_s, :formatted_value
+
+ private
+
+ # def create_datetime(base_date, value)
+ # date = base_date + value.to_f.round(6)
+ # datetime_string = date.strftime('%Y-%m-%d %H:%M:%S.%N')
+ # t = round_datetime(datetime_string)
+ #
+ # ::DateTime.civil(t.year, t.month, t.day, t.hour, t.min, t.sec)
+ # end
+
+ # def round_datetime(datetime_string)
+ # /(?<yyyy>\d+)-(?<mm>\d+)-(?<dd>\d+) (?<hh>\d+):(?<mi>\d+):(?<ss>\d+.\d+)/ =~ datetime_string
+ #
+ # ::Time.new(yyyy.to_i, mm.to_i, dd.to_i, hh.to_i, mi.to_i, ss.to_r).round(0)
+ # end
+ end
+ end
+ end
+end