forked from mirror/misskey
54 lines
1.0 KiB
Vue
54 lines
1.0 KiB
Vue
<!--
|
|
SPDX-FileCopyrightText: syuilo and other misskey contributors
|
|
SPDX-License-Identifier: AGPL-3.0-only
|
|
-->
|
|
|
|
<template>
|
|
<MkModalWindow
|
|
ref="dialog"
|
|
:width="370"
|
|
:height="400"
|
|
@close="onClose"
|
|
@closed="emit('closed')"
|
|
>
|
|
<template #header>{{ i18n.ts.login }}</template>
|
|
|
|
<MkSpacer :marginMin="20" :marginMax="28">
|
|
<MkSignin :autoSet="autoSet" :message="message" @login="onLogin"/>
|
|
</MkSpacer>
|
|
</MkModalWindow>
|
|
</template>
|
|
|
|
<script lang="ts" setup>
|
|
import { } from 'vue';
|
|
import MkSignin from '@/components/MkSignin.vue';
|
|
import MkModalWindow from '@/components/MkModalWindow.vue';
|
|
import { i18n } from '@/i18n.js';
|
|
|
|
withDefaults(defineProps<{
|
|
autoSet?: boolean;
|
|
message?: string,
|
|
}>(), {
|
|
autoSet: false,
|
|
message: '',
|
|
});
|
|
|
|
const emit = defineEmits<{
|
|
(ev: 'done', v: any): void;
|
|
(ev: 'closed'): void;
|
|
(ev: 'cancelled'): void;
|
|
}>();
|
|
|
|
const dialog = $shallowRef<InstanceType<typeof MkModalWindow>>();
|
|
|
|
function onClose() {
|
|
emit('cancelled');
|
|
if (dialog) dialog.close();
|
|
}
|
|
|
|
function onLogin(res) {
|
|
emit('done', res);
|
|
if (dialog) dialog.close();
|
|
}
|
|
</script>
|