mirror of
https://git.joinsharkey.org/Sharkey/Sharkey.git
synced 2024-11-15 13:53:09 +02:00
406b4bdbe7
* refactor(frontend): 非推奨となったReactivity Transformを使わないように * refactor: 不要な括弧を除去 * fix: 不要なアノテーションを除去 * fix: Refの配列をrefしている部分の対応 * refactor: 不要な括弧を除去 * fix: lint * refactor: Ref、ShallowRef、ComputedRefの変数の宣言をletからconstに置換 * fix: type error * chore: drop reactivity transform from eslint configuration * refactor: remove unnecessary import * fix: 対応漏れ
60 lines
1.5 KiB
Vue
60 lines
1.5 KiB
Vue
<!--
|
|
SPDX-FileCopyrightText: syuilo and other misskey contributors
|
|
SPDX-License-Identifier: AGPL-3.0-only
|
|
-->
|
|
|
|
<template>
|
|
<MkStickyContainer>
|
|
<template #header><MkPageHeader :actions="headerActions" :tabs="headerTabs"/></template>
|
|
<MkSpacer v-if="token" :contentMax="700" :marginMin="16" :marginMax="32">
|
|
<div class="_gaps_m">
|
|
<MkInput v-model="password" type="password">
|
|
<template #prefix><i class="ti ti-lock"></i></template>
|
|
<template #label>{{ i18n.ts.newPassword }}</template>
|
|
</MkInput>
|
|
|
|
<MkButton primary @click="save">{{ i18n.ts.save }}</MkButton>
|
|
</div>
|
|
</MkSpacer>
|
|
</MkStickyContainer>
|
|
</template>
|
|
|
|
<script lang="ts" setup>
|
|
import { defineAsyncComponent, onMounted, ref, computed } from 'vue';
|
|
import MkInput from '@/components/MkInput.vue';
|
|
import MkButton from '@/components/MkButton.vue';
|
|
import * as os from '@/os.js';
|
|
import { i18n } from '@/i18n.js';
|
|
import { mainRouter } from '@/router.js';
|
|
import { definePageMetadata } from '@/scripts/page-metadata.js';
|
|
|
|
const props = defineProps<{
|
|
token?: string;
|
|
}>();
|
|
|
|
const password = ref('');
|
|
|
|
async function save() {
|
|
await os.apiWithDialog('reset-password', {
|
|
token: props.token,
|
|
password: password.value,
|
|
});
|
|
mainRouter.push('/');
|
|
}
|
|
|
|
onMounted(() => {
|
|
if (props.token == null) {
|
|
os.popup(defineAsyncComponent(() => import('@/components/MkForgotPassword.vue')), {}, {}, 'closed');
|
|
mainRouter.push('/');
|
|
}
|
|
});
|
|
|
|
const headerActions = computed(() => []);
|
|
|
|
const headerTabs = computed(() => []);
|
|
|
|
definePageMetadata({
|
|
title: i18n.ts.resetPassword,
|
|
icon: 'ti ti-lock',
|
|
});
|
|
</script>
|