happyDomain/ui/src/routes/domains/[dn]/import_zone/+page.svelte

61 lines
1.9 KiB
Svelte

<!--
This file is part of the happyDomain (R) project.
Copyright (c) 2022-2024 happyDomain
Authors: Pierre-Olivier Mercier, et al.
This program is offered under a commercial and under the AGPL license.
For commercial licensing, contact us at <contact@happydomain.org>.
For AGPL licensing:
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU Affero General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU Affero General Public License for more details.
You should have received a copy of the GNU Affero General Public License
along with this program. If not, see <https://www.gnu.org/licenses/>.
-->
<script lang="ts">
import { goto } from '$app/navigation';
import {
Alert,
Icon,
Spinner,
} from '@sveltestrap/sveltestrap';
import type { DomainInList } from '$lib/model/domain';
import { retrieveZone } from '$lib/stores/thiszone';
import { t } from '$lib/translations';
export let data: {domain: DomainInList;};
let rz = retrieveZone(data.domain);
rz.then(() => {
goto(`/domains/${encodeURIComponent(data.domain.domain)}`);
}, (e) => { })
</script>
<div class="mt-4 text-center flex-fill">
{#await rz}
<Spinner label={$t('common.spinning')} />
<p>{$t('wait.importing')}</p>
{:then}
<p>{$t('wait.wait')}</p>
{:catch main_error}
<Alert
color="danger"
fade={false}
>
<strong>{$t('errors.domain-import')}</strong>
{main_error}
</Alert>
{/await}
</div>