c2370a1be6
* chore: Add the SPDX information to each file Add copyright and licensing information as defined in version 3.0 of the REUSE Specification. * tweak format --------- Co-authored-by: syuilo <Syuilotan@yahoo.co.jp>
56 lines
1.3 KiB
Vue
56 lines
1.3 KiB
Vue
<!--
|
|
SPDX-FileCopyrightText: syuilo and other misskey contributors
|
|
SPDX-License-Identifier: AGPL-3.0-only
|
|
-->
|
|
|
|
<template>
|
|
<div class="_gaps_m">
|
|
<MkFolder v-for="x in statusbars" :key="x.id">
|
|
<template #label>{{ x.type ?? i18n.ts.notSet }}</template>
|
|
<template #suffix>{{ x.name }}</template>
|
|
<XStatusbar :_id="x.id" :userLists="userLists"/>
|
|
</MkFolder>
|
|
<MkButton primary @click="add">{{ i18n.ts.add }}</MkButton>
|
|
</div>
|
|
</template>
|
|
|
|
<script lang="ts" setup>
|
|
import { onMounted } from 'vue';
|
|
import { v4 as uuid } from 'uuid';
|
|
import XStatusbar from './statusbar.statusbar.vue';
|
|
import MkFolder from '@/components/MkFolder.vue';
|
|
import MkButton from '@/components/MkButton.vue';
|
|
import * as os from '@/os';
|
|
import { defaultStore } from '@/store';
|
|
import { i18n } from '@/i18n';
|
|
import { definePageMetadata } from '@/scripts/page-metadata';
|
|
|
|
const statusbars = defaultStore.reactiveState.statusbars;
|
|
|
|
let userLists = $ref();
|
|
|
|
onMounted(() => {
|
|
os.api('users/lists/list').then(res => {
|
|
userLists = res;
|
|
});
|
|
});
|
|
|
|
async function add() {
|
|
defaultStore.push('statusbars', {
|
|
id: uuid(),
|
|
type: null,
|
|
black: false,
|
|
size: 'medium',
|
|
props: {},
|
|
});
|
|
}
|
|
|
|
const headerActions = $computed(() => []);
|
|
|
|
const headerTabs = $computed(() => []);
|
|
|
|
definePageMetadata({
|
|
title: i18n.ts.statusbar,
|
|
icon: 'ti ti-list',
|
|
});
|
|
</script>
|