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: 対応漏れ
139 lines
3.1 KiB
Vue
139 lines
3.1 KiB
Vue
<!--
|
|
SPDX-FileCopyrightText: syuilo and other misskey contributors
|
|
SPDX-License-Identifier: AGPL-3.0-only
|
|
-->
|
|
|
|
<template>
|
|
<MkContainer :showHeader="widgetProps.showHeader" class="mkw-userList">
|
|
<template #icon><i class="ti ti-users"></i></template>
|
|
<template #header>{{ list ? list.name : i18n.ts._widgets.userList }}</template>
|
|
<template #func="{ buttonStyleClass }"><button class="_button" :class="buttonStyleClass" @click="configure()"><i class="ti ti-settings"></i></button></template>
|
|
|
|
<div :class="$style.root">
|
|
<div v-if="widgetProps.listId == null" class="init">
|
|
<MkButton primary @click="chooseList">{{ i18n.ts._widgets._userList.chooseList }}</MkButton>
|
|
</div>
|
|
<MkLoading v-else-if="fetching"/>
|
|
<div v-else class="users">
|
|
<span v-for="user in users" :key="user.id" class="user">
|
|
<MkAvatar :user="user" class="avatar" indicator link preview/>
|
|
</span>
|
|
</div>
|
|
</div>
|
|
</MkContainer>
|
|
</template>
|
|
|
|
<script lang="ts" setup>
|
|
import { ref } from 'vue';
|
|
import { useWidgetPropsManager, Widget, WidgetComponentEmits, WidgetComponentExpose, WidgetComponentProps } from './widget.js';
|
|
import { GetFormResultType } from '@/scripts/form.js';
|
|
import MkContainer from '@/components/MkContainer.vue';
|
|
import * as os from '@/os.js';
|
|
import { useInterval } from '@/scripts/use-interval.js';
|
|
import { i18n } from '@/i18n.js';
|
|
import MkButton from '@/components/MkButton.vue';
|
|
|
|
const name = 'userList';
|
|
|
|
const widgetPropsDef = {
|
|
showHeader: {
|
|
type: 'boolean' as const,
|
|
default: true,
|
|
},
|
|
listId: {
|
|
type: 'string' as const,
|
|
default: null,
|
|
hidden: true,
|
|
},
|
|
};
|
|
|
|
type WidgetProps = GetFormResultType<typeof widgetPropsDef>;
|
|
|
|
const props = defineProps<WidgetComponentProps<WidgetProps>>();
|
|
const emit = defineEmits<WidgetComponentEmits<WidgetProps>>();
|
|
|
|
const { widgetProps, configure, save } = useWidgetPropsManager(name,
|
|
widgetPropsDef,
|
|
props,
|
|
emit,
|
|
);
|
|
|
|
const list = ref();
|
|
const users = ref([]);
|
|
const fetching = ref(true);
|
|
|
|
async function chooseList() {
|
|
const lists = await os.api('users/lists/list');
|
|
const { canceled, result: list } = await os.select({
|
|
title: i18n.ts.selectList,
|
|
items: lists.map(x => ({
|
|
value: x, text: x.name,
|
|
})),
|
|
default: widgetProps.listId,
|
|
});
|
|
if (canceled) return;
|
|
|
|
widgetProps.listId = list.id;
|
|
save();
|
|
fetch();
|
|
}
|
|
|
|
const fetch = () => {
|
|
if (widgetProps.listId == null) {
|
|
fetching.value = false;
|
|
return;
|
|
}
|
|
|
|
os.api('users/lists/show', {
|
|
listId: widgetProps.listId,
|
|
}).then(_list => {
|
|
list.value = _list;
|
|
os.api('users/show', {
|
|
userIds: list.value.userIds,
|
|
}).then(_users => {
|
|
users.value = _users;
|
|
fetching.value = false;
|
|
});
|
|
});
|
|
};
|
|
|
|
useInterval(fetch, 1000 * 60, {
|
|
immediate: true,
|
|
afterMounted: true,
|
|
});
|
|
|
|
defineExpose<WidgetComponentExpose>({
|
|
name,
|
|
configure,
|
|
id: props.widget ? props.widget.id : null,
|
|
});
|
|
</script>
|
|
|
|
<style lang="scss" module>
|
|
.root {
|
|
&:global {
|
|
> .init {
|
|
padding: 16px;
|
|
}
|
|
|
|
> .users {
|
|
display: grid;
|
|
grid-template-columns: repeat(auto-fill, minmax(30px, 40px));
|
|
grid-gap: 12px;
|
|
place-content: center;
|
|
padding: 16px;
|
|
|
|
> .user {
|
|
width: 100%;
|
|
height: 100%;
|
|
aspect-ratio: 1;
|
|
|
|
> .avatar {
|
|
width: 100%;
|
|
height: 100%;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
</style>
|