02957a1b5d
* refactor(backend): 招待機能を改修 * feat(backend): 招待コードのcreate/delete/listエンドポイントを追加 * add(misskey-js): エンドポイントと型を追加 * change(backend): metaでinvite関連の情報も返すように * add(misskey-js): エンドポイントと型を追加 * add(backend): `/endpoints/invite/limit`を追加 * fix: createdByがnullableではなかったのを修正 * fix: relationが取得できていなかった問題を修正 * fix: パラメータを間違えていたのを修正 * feat(client): 招待ページを実装 * change(client): インスタンスメニューの「招待」押した場合に招待ページに飛ぶように変更 * feat: 招待コードをコピーできるように * change(backend): metaに招待コード発行に関する情報を持たせるのをやめる * feat: ロールごとに招待コードの発行上限数などを設定できるように * change(client): 招待コードをコピーしたときにダイアログを出すように * add: 招待に関する管理者用のエンドポイントを追加 * change(backend): モデレーターであれば作成者以外でも招待コードを削除できるように * change(backend): admin/invite/listはオフセットでページネーションするように * feat(client): 招待コードの管理ページを追加 * feat(client): 招待コードのリストをソートできるように * change: `admin/invite/create`のレスポンスを修正 * fix(client): 有効期限を指定できていなかった問題を修正 * refactor: 必要のない箇所を削除 * perf(backend): use limit() instead of take() * change(client): 作成ボタンを見た目を変更 * refactor: 招待コードの生成部分を共通化し、コード内に"01OI"のいずれかの文字を含まないように * fix(client): paginationの仕様が変わっていたので修正 * change(backend): expiresAtパラメータのnullを許容 * change(client): 有効期限を設けないときは日付の入力欄を非表示に * fix: 自身のポリシーよりもインスタンス側のポリシーが優先表示される問題を修正 * fix: n時間のときに「n時間間」となってしまうのを修正 * fix(backend): ポリシーが途中で変更されたときに作成可能数がマイナス表記になってしまうのを修正 * change(client): 招待コードのユーザー名が不明な理由を表示するように * update: CHANGELOG.md * lint * refactor * refactor * tweak ui * 🎨 * 🎨 * add(backend): indexを追加 * change(backend): indexの追加に伴う変更 * change(client): インスタンスメニューの「招待」の場所を変更 * add(frontend): MkInviteCode用のstorybookを追加 * Update misskey-js.api.md * fix(misskey-js): InviteのcreatedByの型が間違っていたのを修正 --------- Co-authored-by: syuilo <Syuilotan@yahoo.co.jp> Co-authored-by: tamaina <tamaina@hotmail.co.jp>
126 lines
3.8 KiB
Vue
126 lines
3.8 KiB
Vue
<template>
|
|
<MkStickyContainer>
|
|
<template #header><XHeader :actions="headerActions" :tabs="headerTabs"/></template>
|
|
<MkSpacer :contentMax="800">
|
|
<div class="_gaps_m">
|
|
<MkFolder :expanded="false">
|
|
<template #icon><i class="ti ti-plus"></i></template>
|
|
<template #label>{{ i18n.ts.createInviteCode }}</template>
|
|
|
|
<div class="_gaps_m">
|
|
<MkSwitch v-model="noExpirationDate">
|
|
<template #label>{{ i18n.ts.noExpirationDate }}</template>
|
|
</MkSwitch>
|
|
<MkInput v-if="!noExpirationDate" v-model="expiresAt" type="datetime-local">
|
|
<template #label>{{ i18n.ts.expirationDate }}</template>
|
|
</MkInput>
|
|
<MkInput v-model="createCount" type="number">
|
|
<template #label>{{ i18n.ts.createCount }}</template>
|
|
</MkInput>
|
|
<MkButton primary rounded @click="createWithOptions">{{ i18n.ts.create }}</MkButton>
|
|
</div>
|
|
</MkFolder>
|
|
|
|
<div :class="$style.inputs">
|
|
<MkSelect v-model="type" :class="$style.input">
|
|
<template #label>{{ i18n.ts.state }}</template>
|
|
<option value="all">{{ i18n.ts.all }}</option>
|
|
<option value="unused">{{ i18n.ts.unused }}</option>
|
|
<option value="used">{{ i18n.ts.used }}</option>
|
|
<option value="expired">{{ i18n.ts.expired }}</option>
|
|
</MkSelect>
|
|
<MkSelect v-model="sort" :class="$style.input">
|
|
<template #label>{{ i18n.ts.sort }}</template>
|
|
<option value="+createdAt">{{ i18n.ts.createdAt }} ({{ i18n.ts.ascendingOrder }})</option>
|
|
<option value="-createdAt">{{ i18n.ts.createdAt }} ({{ i18n.ts.descendingOrder }})</option>
|
|
<option value="+usedAt">{{ i18n.ts.usedAt }} ({{ i18n.ts.ascendingOrder }})</option>
|
|
<option value="-usedAt">{{ i18n.ts.usedAt }} ({{ i18n.ts.descendingOrder }})</option>
|
|
</MkSelect>
|
|
</div>
|
|
<MkPagination ref="pagingComponent" :pagination="pagination">
|
|
<template #default="{ items }">
|
|
<div class="_gaps_s">
|
|
<MkInviteCode v-for="item in items" :key="item.id" :invite="(item as any)" :onDeleted="deleted" moderator/>
|
|
</div>
|
|
</template>
|
|
</MkPagination>
|
|
</div>
|
|
</MkSpacer>
|
|
</MkStickyContainer>
|
|
</template>
|
|
|
|
<script lang="ts" setup>
|
|
import { computed, ref, shallowRef } from 'vue';
|
|
import XHeader from './_header_.vue';
|
|
import { i18n } from '@/i18n';
|
|
import * as os from '@/os';
|
|
import MkButton from '@/components/MkButton.vue';
|
|
import MkFolder from '@/components/MkFolder.vue';
|
|
import MkSelect from '@/components/MkSelect.vue';
|
|
import MkInput from '@/components/MkInput.vue';
|
|
import MkSwitch from '@/components/MkSwitch.vue';
|
|
import MkPagination, { Paging } from '@/components/MkPagination.vue';
|
|
import MkInviteCode from '@/components/MkInviteCode.vue';
|
|
import { definePageMetadata } from '@/scripts/page-metadata';
|
|
|
|
const pagingComponent = shallowRef<InstanceType<typeof MkPagination>>();
|
|
|
|
let type = ref('all');
|
|
let sort = ref('+createdAt');
|
|
|
|
const pagination: Paging = {
|
|
endpoint: 'admin/invite/list' as const,
|
|
limit: 10,
|
|
params: computed(() => ({
|
|
type: type.value,
|
|
sort: sort.value,
|
|
})),
|
|
offsetMode: true,
|
|
};
|
|
|
|
const expiresAt = ref('');
|
|
const noExpirationDate = ref(true);
|
|
const createCount = ref(1);
|
|
|
|
async function createWithOptions() {
|
|
const options = {
|
|
expiresAt: noExpirationDate.value ? null : expiresAt.value,
|
|
count: createCount.value,
|
|
};
|
|
|
|
const tickets = await os.api('admin/invite/create', options);
|
|
os.alert({
|
|
type: 'success',
|
|
title: i18n.ts.inviteCodeCreated,
|
|
text: tickets?.map(x => x.code).join('\n'),
|
|
});
|
|
|
|
tickets?.forEach(ticket => pagingComponent.value?.prepend(ticket));
|
|
}
|
|
|
|
function deleted(id: string) {
|
|
if (pagingComponent.value) {
|
|
pagingComponent.value.items.delete(id);
|
|
}
|
|
}
|
|
|
|
const headerActions = $computed(() => []);
|
|
const headerTabs = $computed(() => []);
|
|
|
|
definePageMetadata({
|
|
title: i18n.ts.invite,
|
|
icon: 'ti ti-user-plus',
|
|
});
|
|
</script>
|
|
|
|
<style lang="scss" module>
|
|
.inputs {
|
|
display: flex;
|
|
gap: 8px;
|
|
flex-wrap: wrap;
|
|
}
|
|
|
|
.input {
|
|
flex: 1;
|
|
}
|
|
</style>
|