mirror of
https://github.com/immich-app/immich.git
synced 2025-06-07 23:57:00 -04:00
* First test * Added translation using Weblate (French) * Translated using Weblate (German) Currently translated at 100.0% (4 of 4 strings) Translation: immich/web Translate-URL: http://familie-mach.net/projects/immich/web/de/ * Translated using Weblate (French) Currently translated at 100.0% (4 of 4 strings) Translation: immich/web Translate-URL: http://familie-mach.net/projects/immich/web/fr/ * Further testing * Further testing * Translated using Weblate (German) Currently translated at 100.0% (18 of 18 strings) Translation: immich/web Translate-URL: http://familie-mach.net/projects/immich/web/de/ * Further work * Update string file. * More strings * Automatically changed strings * Add automatically translated german file for testing purposes * Fix merge-face-selector component * Make server stats strings uppercase * Fix uppercase string * Fix some strings in jobs-panel * Fix lower and uppercase strings. Add a few additional string. Fix a few unnecessary replacements * Update german test translations * Fix typo in locales file * Change string keys * Extract more strings * Extract and replace some more strings * Update testtranslationfile * Change translation keys * Fix rebase errors * Fix one more rebase error * Remove german translation file * Co-authored-by: Daniel Dietzler <danieldietzler@users.noreply.github.com> * chore: clean up translations * chore: add new line * fix formatting * chore: fixes * fix: loading and tests --------- Co-authored-by: root <root@Blacki> Co-authored-by: admin <admin@example.com> Co-authored-by: Jason Rasmussen <jrasm91@gmail.com> Co-authored-by: Daniel Dietzler <mail@ddietzler.dev>
82 lines
2.2 KiB
Svelte
82 lines
2.2 KiB
Svelte
<script lang="ts">
|
|
import { createEventDispatcher } from 'svelte';
|
|
import { DateTime } from 'luxon';
|
|
import ConfirmDialog from './dialog/confirm-dialog.svelte';
|
|
import Combobox from './combobox.svelte';
|
|
import DateInput from '../elements/date-input.svelte';
|
|
import { t } from 'svelte-i18n';
|
|
|
|
export let initialDate: DateTime = DateTime.now();
|
|
|
|
type ZoneOption = {
|
|
/**
|
|
* Timezone name
|
|
*
|
|
* e.g. Europe/Berlin
|
|
*/
|
|
label: string;
|
|
|
|
/**
|
|
* Timezone offset
|
|
*
|
|
* e.g. UTC+01:00
|
|
*/
|
|
value: string;
|
|
};
|
|
|
|
const timezones: ZoneOption[] = Intl.supportedValuesOf('timeZone').map((zone: string) => ({
|
|
label: zone + ` (${DateTime.local({ zone }).toFormat('ZZ')})`,
|
|
value: 'UTC' + DateTime.local({ zone }).toFormat('ZZ'),
|
|
}));
|
|
|
|
const initialOption = timezones.find((item) => item.value === 'UTC' + initialDate.toFormat('ZZ'));
|
|
|
|
let selectedOption = initialOption && {
|
|
label: initialOption?.label || '',
|
|
value: initialOption?.value || '',
|
|
};
|
|
|
|
let selectedDate = initialDate.toFormat("yyyy-MM-dd'T'HH:mm");
|
|
|
|
// Keep local time if not it's really confusing
|
|
$: date = DateTime.fromISO(selectedDate).setZone(selectedOption?.value, { keepLocalTime: true });
|
|
|
|
const dispatch = createEventDispatcher<{
|
|
cancel: void;
|
|
confirm: string;
|
|
}>();
|
|
|
|
const handleCancel = () => dispatch('cancel');
|
|
|
|
const handleConfirm = () => {
|
|
const value = date.toISO();
|
|
if (value) {
|
|
dispatch('confirm', value);
|
|
}
|
|
};
|
|
</script>
|
|
|
|
<ConfirmDialog
|
|
confirmColor="primary"
|
|
title={$t('edit_date_and_time')}
|
|
prompt="Please select a new date:"
|
|
disabled={!date.isValid}
|
|
onConfirm={handleConfirm}
|
|
onCancel={handleCancel}
|
|
>
|
|
<div class="flex flex-col text-md px-4 text-center gap-2" slot="prompt">
|
|
<div class="flex flex-col">
|
|
<label for="datetime">{$t('date_and_time')}</label>
|
|
<DateInput
|
|
class="immich-form-input text-sm my-4 w-full"
|
|
id="datetime"
|
|
type="datetime-local"
|
|
bind:value={selectedDate}
|
|
/>
|
|
</div>
|
|
<div class="flex flex-col w-full mt-2">
|
|
<Combobox bind:selectedOption label={$t('timezone')} options={timezones} placeholder={$t('search_timezone')} />
|
|
</div>
|
|
</div>
|
|
</ConfirmDialog>
|