mirror of
https://activitypub.software/TransFem-org/Sharkey.git
synced 2024-11-15 15:56:25 +01:00
ae5d052274
to keep things manageable i merged a lot of one off values into just a handful of common sizes, so some parts of the ui will look different than upstream even with the "Misskey" rounding mode
103 lines
2.2 KiB
Vue
103 lines
2.2 KiB
Vue
<!--
|
|
SPDX-FileCopyrightText: syuilo and other misskey contributors
|
|
SPDX-License-Identifier: AGPL-3.0-only
|
|
-->
|
|
|
|
<template>
|
|
<MkStickyContainer>
|
|
<template #header><MkPageHeader :actions="headerActions" :tabs="headerTabs"/></template>
|
|
<MkSpacer :contentMax="800">
|
|
<div ref="rootEl">
|
|
<div v-if="queue > 0" :class="$style.new"><button class="_buttonPrimary" :class="$style.newButton" @click="top()">{{ i18n.ts.newNoteRecived }}</button></div>
|
|
<div :class="$style.tl">
|
|
<MkTimeline
|
|
ref="tlEl" :key="listId"
|
|
src="list"
|
|
:list="listId"
|
|
:sound="true"
|
|
@queue="queueUpdated"
|
|
/>
|
|
</div>
|
|
</div>
|
|
</MkSpacer>
|
|
</MkStickyContainer>
|
|
</template>
|
|
|
|
<script lang="ts" setup>
|
|
import { computed, watch } from 'vue';
|
|
import MkTimeline from '@/components/MkTimeline.vue';
|
|
import { scroll } from '@/scripts/scroll.js';
|
|
import * as os from '@/os.js';
|
|
import { useRouter } from '@/router.js';
|
|
import { definePageMetadata } from '@/scripts/page-metadata.js';
|
|
import { i18n } from '@/i18n.js';
|
|
|
|
const router = useRouter();
|
|
|
|
const props = defineProps<{
|
|
listId: string;
|
|
}>();
|
|
|
|
let list = $ref(null);
|
|
let queue = $ref(0);
|
|
let tlEl = $shallowRef<InstanceType<typeof MkTimeline>>();
|
|
let rootEl = $shallowRef<HTMLElement>();
|
|
|
|
watch(() => props.listId, async () => {
|
|
list = await os.api('users/lists/show', {
|
|
listId: props.listId,
|
|
});
|
|
}, { immediate: true });
|
|
|
|
function queueUpdated(q) {
|
|
queue = q;
|
|
}
|
|
|
|
function top() {
|
|
scroll(rootEl, { top: 0 });
|
|
}
|
|
|
|
function settings() {
|
|
router.push(`/my/lists/${props.listId}`);
|
|
}
|
|
|
|
const headerActions = $computed(() => list ? [{
|
|
icon: 'ph-gear ph-bold pg-lg',
|
|
text: i18n.ts.settings,
|
|
handler: settings,
|
|
}] : []);
|
|
|
|
const headerTabs = $computed(() => []);
|
|
|
|
definePageMetadata(computed(() => list ? {
|
|
title: list.name,
|
|
icon: 'ph-list ph-bold pg-lg',
|
|
} : null));
|
|
</script>
|
|
|
|
<style lang="scss" module>
|
|
.new {
|
|
position: sticky;
|
|
top: calc(var(--stickyTop, 0px) + 16px);
|
|
z-index: 1000;
|
|
width: 100%;
|
|
margin: calc(-0.675em - 8px) 0;
|
|
|
|
&:first-child {
|
|
margin-top: calc(-0.675em - 8px - var(--margin));
|
|
}
|
|
}
|
|
|
|
.newButton {
|
|
display: block;
|
|
margin: var(--margin) auto 0 auto;
|
|
padding: 8px 16px;
|
|
border-radius: var(--radius-xl);
|
|
}
|
|
|
|
.tl {
|
|
background: var(--bg);
|
|
border-radius: var(--radius);
|
|
overflow: clip;
|
|
}
|
|
</style>
|