2023-07-27 05:31:52 +00:00
|
|
|
<!--
|
|
|
|
SPDX-FileCopyrightText: syuilo and other misskey contributors
|
|
|
|
SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
-->
|
|
|
|
|
2023-02-22 05:43:18 +00:00
|
|
|
<template>
|
2023-05-19 07:20:53 +00:00
|
|
|
<MkSpacer :contentMax="700">
|
2023-02-22 05:43:18 +00:00
|
|
|
<div class="_gaps_s">
|
2023-05-19 07:20:53 +00:00
|
|
|
<MkRolePreview v-for="role in roles" :key="role.id" :role="role" :forModeration="false"/>
|
2023-02-22 05:43:18 +00:00
|
|
|
</div>
|
|
|
|
</MkSpacer>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script lang="ts" setup>
|
2023-12-07 05:42:09 +00:00
|
|
|
import { ref } from 'vue';
|
2023-12-26 05:19:35 +00:00
|
|
|
import * as Misskey from 'misskey-js';
|
2023-02-22 05:43:18 +00:00
|
|
|
import MkRolePreview from '@/components/MkRolePreview.vue';
|
2023-09-19 07:37:43 +00:00
|
|
|
import * as os from '@/os.js';
|
2023-02-22 05:43:18 +00:00
|
|
|
|
2023-12-26 05:19:35 +00:00
|
|
|
const roles = ref<Misskey.entities.Role[] | null>(null);
|
2023-02-22 05:43:18 +00:00
|
|
|
|
2023-03-12 07:38:08 +00:00
|
|
|
os.api('roles/list').then(res => {
|
2023-12-07 05:42:09 +00:00
|
|
|
roles.value = res.filter(x => x.target === 'manual').sort((a, b) => b.displayOrder - a.displayOrder);
|
2023-02-22 05:43:18 +00:00
|
|
|
});
|
|
|
|
</script>
|
|
|
|
|