Dixsie Wolmers | fcda200 | 2020-07-29 14:18:44 -0500 | [diff] [blame] | 1 | import { format } from 'date-fns-tz'; |
2 | |||||
3 | const LocalTimezoneLabelMixin = { | ||||
4 | methods: { | ||||
5 | localOffset() { | ||||
6 | const timezone = Intl.DateTimeFormat().resolvedOptions().timeZone; | ||||
7 | const shortTz = this.$options.filters.shortTimeZone(new Date()); | ||||
8 | const pattern = `'${shortTz}' O`; | ||||
9 | return format(new Date(), pattern, { timezone }).replace('GMT', 'UTC'); | ||||
10 | } | ||||
11 | } | ||||
12 | }; | ||||
13 | |||||
14 | export default LocalTimezoneLabelMixin; |