2020-07-20 12:39:43 +02:00
|
|
|
import { UIEventSource } from "../UIEventSource";
|
2020-07-20 23:43:42 +02:00
|
|
|
import ParkingType from "../../Customizations/Questions/bike/ParkingType";
|
2020-07-20 12:39:43 +02:00
|
|
|
|
|
|
|
|
|
|
|
const LANGUAGE_KEY = 'language'
|
|
|
|
|
|
|
|
export default class Locale {
|
2020-07-20 23:43:42 +02:00
|
|
|
const
|
2020-07-20 12:39:43 +02:00
|
|
|
public static language: UIEventSource<string> = new UIEventSource(Locale.getInitialLanguage())
|
|
|
|
|
|
|
|
public static init() {
|
|
|
|
Locale.language.addCallback(data => {
|
|
|
|
localStorage.setItem(LANGUAGE_KEY, data)
|
2020-07-20 23:43:42 +02:00
|
|
|
if (window.confirm('In order to change the displayed language, the page needs to be reloaded. Reload now?')) {
|
|
|
|
location.reload()
|
|
|
|
}
|
2020-07-20 12:39:43 +02:00
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
private static getInitialLanguage() {
|
2020-07-20 23:43:42 +02:00
|
|
|
return localStorage.getItem(LANGUAGE_KEY) || 'en'
|
2020-07-20 12:39:43 +02:00
|
|
|
}
|
|
|
|
}
|