2023-10-19 22:02:01 +00:00
|
|
|
<template>
|
|
|
|
<MkFolder :expanded="false">
|
|
|
|
<template #icon><i class="ph-user ph-bold ph-lg"></i></template>
|
|
|
|
<template #label>{{ i18n.ts.user }}: {{ user.username }}</template>
|
|
|
|
|
|
|
|
<div class="_gaps_s" :class="$style.root">
|
|
|
|
<div :class="$style.items">
|
|
|
|
<div>
|
|
|
|
<div :class="$style.label">{{ i18n.ts.createdAt }}</div>
|
|
|
|
<div><MkTime :time="user.createdAt" mode="absolute"/></div>
|
|
|
|
</div>
|
|
|
|
<div v-if="email">
|
|
|
|
<div :class="$style.label">{{ i18n.ts.emailAddress }}</div>
|
|
|
|
<div>{{ email }}</div>
|
|
|
|
</div>
|
|
|
|
<div>
|
|
|
|
<div :class="$style.label">Reason</div>
|
|
|
|
<div>{{ reason }}</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div :class="$style.buttons">
|
2023-10-19 22:13:21 +00:00
|
|
|
<MkButton inline success @click="approveAccount()">{{ i18n.ts.approveAccount }}</MkButton>
|
|
|
|
<MkButton inline danger @click="deleteAccount()">{{ i18n.ts.denyAccount }}</MkButton>
|
2023-10-19 22:02:01 +00:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</MkFolder>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script lang="ts" setup>
|
|
|
|
import * as Misskey from 'misskey-js';
|
|
|
|
import MkFolder from '@/components/MkFolder.vue';
|
|
|
|
import MkButton from '@/components/MkButton.vue';
|
|
|
|
import { i18n } from '@/i18n.js';
|
|
|
|
import * as os from '@/os.js';
|
|
|
|
|
|
|
|
const props = defineProps<{
|
|
|
|
user: Misskey.entities.User;
|
|
|
|
}>();
|
|
|
|
|
|
|
|
let reason = $ref('');
|
|
|
|
let email = $ref('');
|
|
|
|
|
|
|
|
function getReason() {
|
|
|
|
return os.api('admin/show-user', {
|
|
|
|
userId: props.user.id,
|
|
|
|
}).then(info => {
|
|
|
|
reason = info?.signupReason;
|
|
|
|
email = info?.email;
|
|
|
|
});
|
|
|
|
}
|
2023-10-31 18:57:52 +00:00
|
|
|
|
2023-10-19 22:02:01 +00:00
|
|
|
getReason();
|
|
|
|
|
|
|
|
const emits = defineEmits<{
|
|
|
|
(event: 'deleted', value: string): void;
|
|
|
|
}>();
|
|
|
|
|
2023-10-19 22:13:21 +00:00
|
|
|
async function deleteAccount() {
|
2023-10-19 22:02:01 +00:00
|
|
|
const confirm = await os.confirm({
|
|
|
|
type: 'warning',
|
|
|
|
text: i18n.ts.deleteAccountConfirm,
|
|
|
|
});
|
|
|
|
if (confirm.canceled) return;
|
|
|
|
|
|
|
|
const typed = await os.inputText({
|
2023-10-19 22:13:21 +00:00
|
|
|
text: i18n.t('typeToConfirm', { x: props.user.username }),
|
2023-10-19 22:02:01 +00:00
|
|
|
});
|
|
|
|
if (typed.canceled) return;
|
|
|
|
|
2023-10-19 22:13:21 +00:00
|
|
|
if (typed.result === props.user.username) {
|
2023-10-19 22:02:01 +00:00
|
|
|
await os.apiWithDialog('admin/delete-account', {
|
2023-10-19 22:13:21 +00:00
|
|
|
userId: props.user.id,
|
2023-10-19 22:02:01 +00:00
|
|
|
});
|
2023-10-19 22:13:21 +00:00
|
|
|
emits('deleted', props.user.id);
|
2023-10-19 22:02:01 +00:00
|
|
|
} else {
|
|
|
|
os.alert({
|
|
|
|
type: 'error',
|
|
|
|
text: 'input not match',
|
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-10-19 22:13:21 +00:00
|
|
|
async function approveAccount() {
|
2023-10-19 22:02:01 +00:00
|
|
|
const confirm = await os.confirm({
|
|
|
|
type: 'warning',
|
|
|
|
text: i18n.ts.approveConfirm,
|
|
|
|
});
|
|
|
|
if (confirm.canceled) return;
|
2023-10-19 22:13:21 +00:00
|
|
|
await os.api('admin/approve-user', { userId: props.user.id });
|
|
|
|
emits('deleted', props.user.id);
|
2023-10-19 22:02:01 +00:00
|
|
|
}
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<style lang="scss" module>
|
|
|
|
.root {
|
|
|
|
text-align: left;
|
|
|
|
}
|
|
|
|
|
|
|
|
.items {
|
|
|
|
display: grid;
|
|
|
|
grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
|
|
|
|
grid-gap: 12px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.label {
|
|
|
|
font-size: 0.85em;
|
|
|
|
padding: 0 0 8px 0;
|
|
|
|
user-select: none;
|
|
|
|
opacity: 0.7;
|
|
|
|
}
|
|
|
|
.buttons {
|
|
|
|
display: flex;
|
|
|
|
gap: 8px;
|
|
|
|
}
|
2023-10-19 22:13:21 +00:00
|
|
|
</style>
|