Skip to content
Snippets Groups Projects
Unverified Commit adc343d0 authored by Noah Moss's avatar Noah Moss Committed by GitHub
Browse files

XLSX formatting for temporal breakout fields (#22383)

* overrides for certain :unit values

* tests

* fix test & formatting tweaks
parent 9f9f9f05
No related branches found
No related tags found
No related merge requests found
......@@ -3,6 +3,7 @@
[clojure.string :as str]
[dk.ative.docjure.spreadsheet :as spreadsheet]
[java-time :as t]
[metabase.mbql.schema :as mbql.s]
[metabase.public-settings :as public-settings]
[metabase.query-processor.streaming.common :as common]
[metabase.query-processor.streaming.interface :as qp.si]
......@@ -156,55 +157,77 @@
(let [separator (::mb.viz/date-separator format-settings "/")]
(str/replace format-string "/" separator)))
(defn- add-time-format
[format-settings format-string]
(defn- time-format
[format-settings]
(let [base-time-format (condp = (::mb.viz/time-enabled format-settings "minutes")
"minutes"
"h:mm"
"seconds"
"h:mm:ss"
"milliseconds"
"h:mm:ss.000"
;; {::mb.viz/time-enabled nil} indicates that time is explicitly disabled, rather than
;; defaulting to "minutes"
nil
nil)
time-format (when base-time-format
(condp = (::mb.viz/time-style format-settings "h:mm A")
"HH:mm"
(str "h" base-time-format)
;; Deprecated time style which should be already converted to HH:mm when viz settings are
;; normalized, but we'll handle it here too just in case. (#18112)
"k:mm"
(str "h" base-time-format)
"h:mm A"
(str base-time-format " am/pm")
"h A"
"h am/pm"))]
(if time-format
"minutes"
"h:mm"
"seconds"
"h:mm:ss"
"milliseconds"
"h:mm:ss.000"
;; {::mb.viz/time-enabled nil} indicates that time is explicitly disabled, rather than
;; defaulting to "minutes"
nil
nil)]
(when base-time-format
(condp = (::mb.viz/time-style format-settings "h:mm A")
"HH:mm"
(str "h" base-time-format)
;; Deprecated time style which should be already converted to HH:mm when viz settings are
;; normalized, but we'll handle it here too just in case. (#18112)
"k:mm"
(str "h" base-time-format)
"h:mm A"
(str base-time-format " am/pm")
"h A"
"h am/pm"))))
(defn- add-time-format
"Adds the appropriate time setting to a date format string if necessary, producing a datetime format string."
[format-settings unit format-string]
(if (or (not unit) (mbql.s/time-bucketing-units unit))
(if-let [time-format (time-format format-settings)]
(str format-string ", " time-format)
format-string)))
format-string)
format-string))
(def ^:private month-style-overrides
"Overrides for the date-style in a column's viz settings if :unit is :month."
{"m/d/yyyy" "m/yyyy"
"yyyy/m/d" "yyyy/m"
"mmmm d, yyyy" "mmmm, yyyy"})
(defn- date-format
[format-settings unit]
(let [base-style (str/lower-case (::mb.viz/date-style format-settings "mmmm d, yyyy"))
unit-style (case unit
:month (get month-style-overrides base-style)
:year "yyyy"
base-style)]
(->> unit-style
(abbreviate-date-names format-settings)
(replace-date-separators format-settings))))
(defn- datetime-format-string
[format-settings]
(let [merged-settings (merge-global-settings format-settings :type/Temporal)
date-style (::mb.viz/date-style merged-settings "mmmm d, yyyy")]
(->> date-style
str/lower-case
(abbreviate-date-names merged-settings)
(replace-date-separators merged-settings)
(add-time-format merged-settings))))
([format-settings]
(datetime-format-string format-settings nil))
([format-settings unit]
(let [merged-settings (merge-global-settings format-settings :type/Temporal)]
(->> (date-format merged-settings unit)
(add-time-format merged-settings unit)))))
(defn- format-settings->format-strings
"Returns a vector of format strings for a datetime column or number column, corresponding
to the provided format settings."
[format-settings {semantic-type :semantic_type, effective-type :effective_type, :as _col}]
[format-settings {semantic-type :semantic_type, effective-type :effective_type, unit :unit}]
(u/one-or-many
(cond
;; Primary key or foreign key
......@@ -214,7 +237,7 @@
(and (or (some #(contains? datetime-setting-keys %) (keys format-settings))
(isa? semantic-type :type/Temporal))
(isa? effective-type :type/Temporal))
(datetime-format-string format-settings)
(datetime-format-string format-settings unit)
(or (some #(contains? number-setting-keys %) (keys format-settings))
(isa? semantic-type :type/Currency))
......@@ -281,8 +304,8 @@
to format strings."
(memoize
(fn [^Workbook workbook cols col-settings]
(let [data-format (. workbook createDataFormat)
col-styles (column-style-delays workbook data-format col-settings cols)]
(let [data-format (. workbook createDataFormat)
col-styles (column-style-delays workbook data-format col-settings cols)]
(into col-styles
(for [[name-keyword format-string] (seq (default-format-strings))]
{name-keyword (format-string-delay workbook data-format format-string)}))))))
......
This diff is collapsed.
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment