mirror of
https://github.com/kremalicious/umami.git
synced 2024-11-15 17:55:08 +01:00
19 lines
498 B
JavaScript
19 lines
498 B
JavaScript
import { useState, useCallback } from 'react';
|
|
import { getTimezone } from 'lib/date';
|
|
import { getItem, setItem } from 'next-basics';
|
|
import { TIMEZONE_CONFIG } from 'lib/constants';
|
|
|
|
export default function useTimezone() {
|
|
const [timezone, setTimezone] = useState(getItem(TIMEZONE_CONFIG) || getTimezone());
|
|
|
|
const saveTimezone = useCallback(
|
|
value => {
|
|
setItem(TIMEZONE_CONFIG, value);
|
|
setTimezone(value);
|
|
},
|
|
[setTimezone],
|
|
);
|
|
|
|
return [timezone, saveTimezone];
|
|
}
|