iceshrimp-legacy/packages/client/src/pages/settings/migration.vue

72 lines
1.9 KiB
Vue
Raw Normal View History

<template>
2023-04-08 02:01:42 +02:00
<div class="_formRoot">
<FormSection>
<template #label>{{ i18n.ts.moveTo }}</template>
<FormInput v-model="moveToAccount" class="_formBlock">
<template #prefix
><i class="ph-airplane-takeoff ph-bold ph-lg"></i
></template>
<template #label>{{ i18n.ts.moveToLabel }}</template>
<template #caption>{{ i18n.ts.moveAccountDescription }}</template>
2023-04-08 02:01:42 +02:00
</FormInput>
<FormButton primary danger @click="move(moveToAccount)">
{{ i18n.ts.moveAccount }}
</FormButton>
</FormSection>
2023-04-08 02:01:42 +02:00
<FormSection>
<template #label>{{ i18n.ts.moveFrom }}</template>
<FormInput v-model="accountAlias" class="_formBlock">
<template #prefix
><i class="ph-airplane-landing ph-bold ph-lg"></i
></template>
<template #label>{{ i18n.ts.moveFromLabel }}</template>
<template #caption>{{ i18n.ts.moveFromDescription }}</template>
2023-04-08 02:01:42 +02:00
</FormInput>
<FormButton
class="button"
inline
primary
@click="save(accountAlias.toString())"
>
<i class="ph-floppy-disk-back ph-bold ph-lg"></i>
{{ i18n.ts.save }}
</FormButton>
</FormSection>
</div>
</template>
<script lang="ts" setup>
2023-04-08 02:01:42 +02:00
import FormSection from "@/components/form/section.vue";
import FormInput from "@/components/form/input.vue";
import FormButton from "@/components/MkButton.vue";
import * as os from "@/os";
import { i18n } from "@/i18n";
import { definePageMetadata } from "@/scripts/page-metadata";
2023-04-08 02:01:42 +02:00
let moveToAccount = $ref("");
let accountAlias = $ref("");
2022-12-12 02:33:45 +01:00
async function save(account): Promise<void> {
2023-04-08 02:01:42 +02:00
os.apiWithDialog("i/known-as", {
2022-12-12 02:33:45 +01:00
alsoKnownAs: account,
2022-12-12 01:42:40 +01:00
});
}
2022-12-12 02:33:45 +01:00
async function move(account): Promise<void> {
2022-12-12 02:28:11 +01:00
const confirm = await os.confirm({
2023-04-08 02:01:42 +02:00
type: "warning",
text: i18n.t("migrationConfirm", { account: account.toString() }),
2022-12-12 02:28:11 +01:00
});
if (confirm.canceled) return;
2023-04-08 02:01:42 +02:00
os.apiWithDialog("i/move", {
2022-12-12 02:33:45 +01:00
moveToAccount: account,
});
}
definePageMetadata({
title: i18n.ts.security,
2023-04-08 02:01:42 +02:00
icon: "ph-lock ph-bold ph-lg",
});
</script>