2022-07-03 05:40:02 +00:00
|
|
|
<template>
|
|
|
|
<div class="_formRoot">
|
|
|
|
<FormFolder v-for="x in statusbars" :key="x.id" class="_formBlock">
|
|
|
|
<template #label>{{ x.type ?? i18n.ts.notSet }}</template>
|
|
|
|
<template #suffix>{{ x.name }}</template>
|
|
|
|
<XStatusbar :_id="x.id" :user-lists="userLists"/>
|
|
|
|
</FormFolder>
|
2022-07-07 12:00:42 +00:00
|
|
|
<FormButton primary @click="add">{{ i18n.ts.add }}</FormButton>
|
2022-07-03 05:40:02 +00:00
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script lang="ts" setup>
|
|
|
|
import { computed, onMounted, ref, watch } from 'vue';
|
|
|
|
import { v4 as uuid } from 'uuid';
|
2022-07-20 10:59:27 +00:00
|
|
|
import XStatusbar from './statusbar.statusbar.vue';
|
2022-07-03 05:40:02 +00:00
|
|
|
import FormRadios from '@/components/form/radios.vue';
|
|
|
|
import FormFolder from '@/components/form/folder.vue';
|
|
|
|
import FormButton from '@/components/ui/button.vue';
|
|
|
|
import * as os from '@/os';
|
|
|
|
import { defaultStore } from '@/store';
|
|
|
|
import { unisonReload } from '@/scripts/unison-reload';
|
|
|
|
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,
|
2022-07-03 16:37:47 +00:00
|
|
|
size: 'medium',
|
2022-07-03 05:40:02 +00:00
|
|
|
props: {},
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
const headerActions = $computed(() => []);
|
|
|
|
|
|
|
|
const headerTabs = $computed(() => []);
|
|
|
|
|
|
|
|
definePageMetadata({
|
|
|
|
title: i18n.ts.statusbar,
|
|
|
|
icon: 'fas fa-list-ul',
|
|
|
|
bg: 'var(--bg)',
|
|
|
|
});
|
|
|
|
</script>
|