2023-06-30 13:36:02 +02:00
|
|
|
<script lang="ts">
|
2023-11-09 16:30:26 +01:00
|
|
|
import { UIEventSource } from "../../../Logic/UIEventSource"
|
|
|
|
import LanguageUtils from "../../../Utils/LanguageUtils"
|
|
|
|
import { createEventDispatcher, onDestroy } from "svelte"
|
|
|
|
import ValidatedInput from "../ValidatedInput.svelte"
|
2023-06-30 13:36:02 +02:00
|
|
|
|
2023-11-09 16:30:26 +01:00
|
|
|
export let value: UIEventSource<Record<string, string>> = new UIEventSource<
|
|
|
|
Record<string, string>
|
|
|
|
>({})
|
2023-06-30 13:36:02 +02:00
|
|
|
|
2023-10-20 19:04:55 +02:00
|
|
|
export let args: string[] = []
|
2023-11-09 16:30:26 +01:00
|
|
|
|
2023-10-24 22:01:10 +02:00
|
|
|
let prefix = args[0] ?? ""
|
|
|
|
let postfix = args[1] ?? ""
|
2023-06-30 13:36:02 +02:00
|
|
|
|
2023-10-24 22:01:10 +02:00
|
|
|
let translations: UIEventSource<Record<string, string>> = value
|
2023-06-30 13:36:02 +02:00
|
|
|
|
2023-11-09 16:30:26 +01:00
|
|
|
const allLanguages: string[] = LanguageUtils.usedLanguagesSorted
|
|
|
|
let currentLang = new UIEventSource("en")
|
|
|
|
const currentVal = new UIEventSource<string>("")
|
2023-09-15 01:16:33 +02:00
|
|
|
let dispatch = createEventDispatcher<{ submit }>()
|
2023-06-30 13:36:02 +02:00
|
|
|
|
|
|
|
function update() {
|
2023-11-09 16:30:26 +01:00
|
|
|
const v = currentVal.data
|
|
|
|
const l = currentLang.data
|
2024-02-20 13:33:38 +01:00
|
|
|
if (<any>translations.data === "" || translations.data === undefined) {
|
2023-10-24 22:01:10 +02:00
|
|
|
translations.data = {}
|
|
|
|
}
|
2023-06-30 13:36:02 +02:00
|
|
|
if (translations.data[l] === v) {
|
2023-11-09 16:30:26 +01:00
|
|
|
return
|
2023-06-30 13:36:02 +02:00
|
|
|
}
|
2023-11-09 16:30:26 +01:00
|
|
|
translations.data[l] = v
|
|
|
|
translations.ping()
|
2023-06-30 13:36:02 +02:00
|
|
|
}
|
|
|
|
|
2023-11-09 16:30:26 +01:00
|
|
|
onDestroy(
|
|
|
|
currentLang.addCallbackAndRunD((currentLang) => {
|
|
|
|
if (!translations.data) {
|
|
|
|
translations.data = {}
|
|
|
|
}
|
|
|
|
translations.data[currentLang] = translations.data[currentLang] ?? ""
|
|
|
|
currentVal.setData(translations.data[currentLang])
|
|
|
|
})
|
|
|
|
)
|
2023-06-30 13:36:02 +02:00
|
|
|
|
2023-11-09 16:30:26 +01:00
|
|
|
onDestroy(
|
2024-01-24 23:45:20 +01:00
|
|
|
currentVal.addCallbackAndRunD(() => {
|
2023-11-09 16:30:26 +01:00
|
|
|
update()
|
|
|
|
})
|
|
|
|
)
|
2023-06-30 13:36:02 +02:00
|
|
|
</script>
|
2023-11-09 16:30:26 +01:00
|
|
|
|
|
|
|
<div class="interactive m-1 mt-2 flex space-x-1 font-bold">
|
2023-10-20 19:04:55 +02:00
|
|
|
<span>
|
2023-11-09 16:30:26 +01:00
|
|
|
{prefix}
|
2023-10-20 19:04:55 +02:00
|
|
|
</span>
|
2023-06-30 13:36:02 +02:00
|
|
|
<select bind:value={$currentLang}>
|
|
|
|
{#each allLanguages as language}
|
|
|
|
<option value={language}>
|
|
|
|
{language}
|
|
|
|
</option>
|
|
|
|
{/each}
|
|
|
|
</select>
|
2023-11-09 16:30:26 +01:00
|
|
|
<ValidatedInput
|
|
|
|
type="string"
|
|
|
|
cls="w-full"
|
|
|
|
value={currentVal}
|
|
|
|
on:submit={() => dispatch("submit")}
|
|
|
|
/>
|
2023-10-20 19:04:55 +02:00
|
|
|
<span>
|
2023-11-09 16:30:26 +01:00
|
|
|
{postfix}
|
2023-10-20 19:04:55 +02:00
|
|
|
</span>
|
2023-06-30 13:36:02 +02:00
|
|
|
</div>
|