forked from nekoplanet/misskey
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
add: approval section in control panel
- Loading branch information
1 parent
d222c79
commit 37a1418
Showing
6 changed files
with
198 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,114 @@ | ||
<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"> | ||
<MkButton inline success @click="approveAccount(user)">{{ i18n.ts.approveAccount }}</MkButton> | ||
<MkButton inline danger @click="deleteAccount(user)">{{ i18n.ts.denyAccount }}</MkButton> | ||
</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; | ||
}); | ||
} | ||
getReason(); | ||
const emits = defineEmits<{ | ||
(event: 'deleted', value: string): void; | ||
}>(); | ||
async function deleteAccount(user) { | ||
const confirm = await os.confirm({ | ||
type: 'warning', | ||
text: i18n.ts.deleteAccountConfirm, | ||
}); | ||
if (confirm.canceled) return; | ||
const typed = await os.inputText({ | ||
text: i18n.t('typeToConfirm', { x: user?.username }), | ||
}); | ||
if (typed.canceled) return; | ||
if (typed.result === user?.username) { | ||
await os.apiWithDialog('admin/delete-account', { | ||
userId: user.id, | ||
}); | ||
emits('deleted', user.id); | ||
} else { | ||
os.alert({ | ||
type: 'error', | ||
text: 'input not match', | ||
}); | ||
} | ||
} | ||
async function approveAccount(user) { | ||
const confirm = await os.confirm({ | ||
type: 'warning', | ||
text: i18n.ts.approveConfirm, | ||
}); | ||
if (confirm.canceled) return; | ||
await os.api('admin/approve-user', { userId: user.id }); | ||
emits('deleted', user.id); | ||
} | ||
</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; | ||
} | ||
</style> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,72 @@ | ||
<!-- | ||
SPDX-FileCopyrightText: syuilo and other misskey contributors | ||
SPDX-License-Identifier: AGPL-3.0-only | ||
--> | ||
|
||
<template> | ||
<div> | ||
<MkStickyContainer> | ||
<template #header><XHeader :actions="headerActions" :tabs="headerTabs"/></template> | ||
<MkSpacer :contentMax="900"> | ||
<div class="_gaps_m"> | ||
<MkPagination ref="paginationComponent" :pagination="pagination"> | ||
<template #default="{ items }"> | ||
<div class="_gaps_s"> | ||
<SkApprovalUser v-for="item in items" :key="item.id" :user="(item as any)" :onDeleted="deleted"/> | ||
</div> | ||
</template> | ||
</MkPagination> | ||
</div> | ||
</MkSpacer> | ||
</MkStickyContainer> | ||
</div> | ||
</template> | ||
|
||
<script lang="ts" setup> | ||
import { computed, shallowRef } from 'vue'; | ||
import XHeader from './_header_.vue'; | ||
import MkPagination from '@/components/MkPagination.vue'; | ||
import SkApprovalUser from '@/components/SkApprovalUser.vue'; | ||
import { i18n } from '@/i18n.js'; | ||
import { definePageMetadata } from '@/scripts/page-metadata.js'; | ||
|
||
let paginationComponent = shallowRef<InstanceType<typeof MkPagination>>(); | ||
|
||
const pagination = { | ||
endpoint: 'admin/show-users' as const, | ||
limit: 10, | ||
params: computed(() => ({ | ||
sort: '+createdAt', | ||
state: 'approved', | ||
origin: 'local', | ||
})), | ||
offsetMode: true, | ||
}; | ||
|
||
function deleted(id: string) { | ||
if (paginationComponent.value) { | ||
paginationComponent.value.items.delete(id); | ||
} | ||
} | ||
|
||
const headerActions = $computed(() => []); | ||
|
||
const headerTabs = $computed(() => []); | ||
|
||
definePageMetadata(computed(() => ({ | ||
title: i18n.ts.approvals, | ||
icon: 'ph-chalkboard-teacher ph-bold pg-lg', | ||
}))); | ||
</script> | ||
|
||
<style lang="scss" module> | ||
.inputs { | ||
display: flex; | ||
gap: 8px; | ||
flex-wrap: wrap; | ||
} | ||
|
||
.input { | ||
flex: 1; | ||
} | ||
</style> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters