mirror of
https://git.joinsharkey.org/Sharkey/Sharkey.git
synced 2024-11-15 07:43:09 +02:00
91 lines
2.4 KiB
Vue
91 lines
2.4 KiB
Vue
<template>
|
|
<div class="dlrsnxqu">
|
|
<div
|
|
v-for="x in defaultStore.reactiveState.statusbars.value" :key="x.id" class="item" :class="[{ black: x.black }, {
|
|
verySmall: x.size === 'verySmall',
|
|
small: x.size === 'small',
|
|
medium: x.size === 'medium',
|
|
large: x.size === 'large',
|
|
veryLarge: x.size === 'veryLarge',
|
|
}]"
|
|
>
|
|
<span class="name">{{ x.name }}</span>
|
|
<XRss v-if="x.type === 'rss'" class="body" :refreshIntervalSec="x.props.refreshIntervalSec" :marqueeDuration="x.props.marqueeDuration" :marqueeReverse="x.props.marqueeReverse" :display="x.props.display" :url="x.props.url" :shuffle="x.props.shuffle"/>
|
|
<XFederation v-else-if="x.type === 'federation'" class="body" :refreshIntervalSec="x.props.refreshIntervalSec" :marqueeDuration="x.props.marqueeDuration" :marqueeReverse="x.props.marqueeReverse" :display="x.props.display" :colored="x.props.colored"/>
|
|
<XUserList v-else-if="x.type === 'userList'" class="body" :refreshIntervalSec="x.props.refreshIntervalSec" :marqueeDuration="x.props.marqueeDuration" :marqueeReverse="x.props.marqueeReverse" :display="x.props.display" :userListId="x.props.userListId"/>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
|
|
<script lang="ts" setup>
|
|
import { defineAsyncComponent } from 'vue';
|
|
import { defaultStore } from '@/store';
|
|
const XRss = defineAsyncComponent(() => import('./statusbar-rss.vue'));
|
|
const XFederation = defineAsyncComponent(() => import('./statusbar-federation.vue'));
|
|
const XUserList = defineAsyncComponent(() => import('./statusbar-user-list.vue'));
|
|
</script>
|
|
|
|
<style lang="scss" scoped>
|
|
.dlrsnxqu {
|
|
font-size: 15px;
|
|
background: var(--panel);
|
|
|
|
> .item {
|
|
--height: 24px;
|
|
--nameMargin: 10px;
|
|
font-size: 0.85em;
|
|
|
|
&.verySmall {
|
|
--nameMargin: 7px;
|
|
--height: 16px;
|
|
font-size: 0.75em;
|
|
}
|
|
|
|
&.small {
|
|
--nameMargin: 8px;
|
|
--height: 20px;
|
|
font-size: 0.8em;
|
|
}
|
|
|
|
&.large {
|
|
--nameMargin: 12px;
|
|
--height: 26px;
|
|
font-size: 0.875em;
|
|
}
|
|
|
|
&.veryLarge {
|
|
--nameMargin: 14px;
|
|
--height: 30px;
|
|
font-size: 0.9em;
|
|
}
|
|
|
|
display: flex;
|
|
vertical-align: bottom;
|
|
width: 100%;
|
|
line-height: var(--height);
|
|
height: var(--height);
|
|
overflow: clip;
|
|
contain: strict;
|
|
|
|
> .name {
|
|
padding: 0 var(--nameMargin);
|
|
font-weight: bold;
|
|
color: var(--accent);
|
|
|
|
&:empty {
|
|
display: none;
|
|
}
|
|
}
|
|
|
|
> .body {
|
|
min-width: 0;
|
|
flex: 1;
|
|
}
|
|
|
|
&.black {
|
|
background: #000;
|
|
color: #fff;
|
|
}
|
|
}
|
|
}
|
|
</style>
|