Skip to content

Instantly share code, notes, and snippets.

@marcus-at-localhost
Created February 10, 2023 08:09
Show Gist options
  • Save marcus-at-localhost/21022d6116542499461f1f686f9bb6de to your computer and use it in GitHub Desktop.
Save marcus-at-localhost/21022d6116542499461f1f686f9bb6de to your computer and use it in GitHub Desktop.
Timezones.md

Timezones

Two approaches to deal with timezones server- and client side.

  1. Save timestamp in GMT, use JavaScript to get user timezone from browser settings and display dynamicall on website (see code samples)
  2. Save timestamp in GMT, use JavaScript to detect user timezone from browser and store it. Also show a dropdown with all timezones for the user to choose from. Then use that to render DateTime on the server.

#js #date #datetime #intl #alpinejs

// get array of timezone strings
// @see https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Intl/supportedValuesOf
const tz = Intl.supportedValuesOf('timeZone');
// => ['Africa/Abidjan', 'Africa/Accra', 'Africa/Addis_Ababa']
// @see https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Intl/DateTimeFormat/resolvedOptions
const currentTz = Intl.DateTimeFormat().resolvedOptions().timeZone;
// => 'Europe/Berlin'

Detect timezone

<input
  id="timezone"
  name="datetime[timezone]"
  value="Etc/UTC"
  x-data="{timeFormat: Intl.DateTimeFormat().resolvedOptions()}"
  :value="timeFormat.timeZone"
  readonly
>

Display DateTime with timezone

<time
	datetime="{{ $kirby->user()->LastLogin()->value() }}"
	x-data="{date: new Date($el.getAttribute('datetime'))}"
	x-text="new Intl.DateTimeFormat('{{ $kirby->language() }}', {
			dateStyle: 'long',
			timeStyle: 'long'
		}).format(date)"
>
	{{ $kirby->user()->LastLogin()->value() }}
</time>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment