mirror of
https://github.com/immich-app/immich.git
synced 2025-05-24 01:12:58 -04:00
refactor(web): disable login confirm modal (#18261)
This commit is contained in:
parent
dccbe0b3ed
commit
ce90a2ec1a
@ -6,7 +6,8 @@
|
|||||||
import SettingSelect from '$lib/components/shared-components/settings/setting-select.svelte';
|
import SettingSelect from '$lib/components/shared-components/settings/setting-select.svelte';
|
||||||
import SettingSwitch from '$lib/components/shared-components/settings/setting-switch.svelte';
|
import SettingSwitch from '$lib/components/shared-components/settings/setting-switch.svelte';
|
||||||
import { SettingInputFieldType } from '$lib/constants';
|
import { SettingInputFieldType } from '$lib/constants';
|
||||||
import ConfirmModal from '$lib/modals/ConfirmModal.svelte';
|
import { modalManager } from '$lib/managers/modal-manager.svelte';
|
||||||
|
import AuthDisableLoginConfirmModal from '$lib/modals/AuthDisableLoginConfirmModal.svelte';
|
||||||
import { OAuthTokenEndpointAuthMethod, type SystemConfigDto } from '@immich/sdk';
|
import { OAuthTokenEndpointAuthMethod, type SystemConfigDto } from '@immich/sdk';
|
||||||
import { isEqual } from 'lodash-es';
|
import { isEqual } from 'lodash-es';
|
||||||
import { t } from 'svelte-i18n';
|
import { t } from 'svelte-i18n';
|
||||||
@ -24,8 +25,6 @@
|
|||||||
|
|
||||||
let { savedConfig, defaultConfig, config = $bindable(), disabled = false, onReset, onSave }: Props = $props();
|
let { savedConfig, defaultConfig, config = $bindable(), disabled = false, onReset, onSave }: Props = $props();
|
||||||
|
|
||||||
let isConfirmOpen = $state(false);
|
|
||||||
|
|
||||||
const handleToggleOverride = () => {
|
const handleToggleOverride = () => {
|
||||||
// click runs before bind
|
// click runs before bind
|
||||||
const previouslyEnabled = config.oauth.mobileOverrideEnabled;
|
const previouslyEnabled = config.oauth.mobileOverrideEnabled;
|
||||||
@ -34,45 +33,19 @@
|
|||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
const handleSave = (skipConfirm: boolean) => {
|
const handleSave = async (skipConfirm: boolean) => {
|
||||||
const allMethodsDisabled = !config.oauth.enabled && !config.passwordLogin.enabled;
|
const allMethodsDisabled = !config.oauth.enabled && !config.passwordLogin.enabled;
|
||||||
if (allMethodsDisabled && !skipConfirm) {
|
if (allMethodsDisabled && !skipConfirm) {
|
||||||
isConfirmOpen = true;
|
const isConfirmed = await modalManager.show(AuthDisableLoginConfirmModal, {});
|
||||||
return;
|
if (!isConfirmed) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
isConfirmOpen = false;
|
|
||||||
onSave({ passwordLogin: config.passwordLogin, oauth: config.oauth });
|
onSave({ passwordLogin: config.passwordLogin, oauth: config.oauth });
|
||||||
};
|
};
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
{#if isConfirmOpen}
|
|
||||||
<ConfirmModal
|
|
||||||
title={$t('admin.disable_login')}
|
|
||||||
onClose={(confirmed) => (confirmed ? handleSave(true) : (isConfirmOpen = false))}
|
|
||||||
>
|
|
||||||
{#snippet promptSnippet()}
|
|
||||||
<div class="flex flex-col gap-4">
|
|
||||||
<p>{$t('admin.authentication_settings_disable_all')}</p>
|
|
||||||
<p>
|
|
||||||
<FormatMessage key="admin.authentication_settings_reenable">
|
|
||||||
{#snippet children({ message })}
|
|
||||||
<a
|
|
||||||
href="https://immich.app/docs/administration/server-commands"
|
|
||||||
rel="noreferrer"
|
|
||||||
target="_blank"
|
|
||||||
class="underline"
|
|
||||||
>
|
|
||||||
{message}
|
|
||||||
</a>
|
|
||||||
{/snippet}
|
|
||||||
</FormatMessage>
|
|
||||||
</p>
|
|
||||||
</div>
|
|
||||||
{/snippet}
|
|
||||||
</ConfirmModal>
|
|
||||||
{/if}
|
|
||||||
|
|
||||||
<div>
|
<div>
|
||||||
<div in:fade={{ duration: 500 }}>
|
<div in:fade={{ duration: 500 }}>
|
||||||
<form autocomplete="off" onsubmit={(e) => e.preventDefault()}>
|
<form autocomplete="off" onsubmit={(e) => e.preventDefault()}>
|
||||||
|
44
web/src/lib/modals/AuthDisableLoginConfirmModal.svelte
Normal file
44
web/src/lib/modals/AuthDisableLoginConfirmModal.svelte
Normal file
@ -0,0 +1,44 @@
|
|||||||
|
<script lang="ts">
|
||||||
|
import FormatMessage from '$lib/components/i18n/format-message.svelte';
|
||||||
|
import { Button, Modal, ModalBody, ModalFooter } from '@immich/ui';
|
||||||
|
import { mdiCancel } from '@mdi/js';
|
||||||
|
import { t } from 'svelte-i18n';
|
||||||
|
|
||||||
|
interface Props {
|
||||||
|
onClose: (confirmed?: boolean) => void;
|
||||||
|
}
|
||||||
|
|
||||||
|
let { onClose }: Props = $props();
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<Modal title={$t('admin.disable_login')} icon={mdiCancel} size="small" {onClose}>
|
||||||
|
<ModalBody>
|
||||||
|
<div class="flex flex-col gap-4 text-center">
|
||||||
|
<p>{$t('admin.authentication_settings_disable_all')}</p>
|
||||||
|
<p>
|
||||||
|
<FormatMessage key="admin.authentication_settings_reenable">
|
||||||
|
{#snippet children({ message })}
|
||||||
|
<a
|
||||||
|
href="https://immich.app/docs/administration/server-commands"
|
||||||
|
rel="noreferrer"
|
||||||
|
target="_blank"
|
||||||
|
class="underline"
|
||||||
|
>
|
||||||
|
{message}
|
||||||
|
</a>
|
||||||
|
{/snippet}
|
||||||
|
</FormatMessage>
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
</ModalBody>
|
||||||
|
<ModalFooter>
|
||||||
|
<div class="flex gap-3 w-full">
|
||||||
|
<Button shape="round" color="secondary" fullWidth onclick={() => onClose(false)}>
|
||||||
|
{$t('cancel')}
|
||||||
|
</Button>
|
||||||
|
<Button shape="round" color="danger" fullWidth onclick={() => onClose(true)}>
|
||||||
|
{$t('confirm')}
|
||||||
|
</Button>
|
||||||
|
</div>
|
||||||
|
</ModalFooter>
|
||||||
|
</Modal>
|
Loading…
x
Reference in New Issue
Block a user