2020-08-18 13:44:21 +00:00
|
|
|
<template>
|
2022-06-20 08:38:49 +00:00
|
|
|
<MkStickyContainer>
|
|
|
|
<template #header><MkPageHeader :actions="headerActions" :tabs="headerTabs"/></template>
|
|
|
|
<MkSpacer :content-max="700">
|
|
|
|
<div v-if="channel">
|
2023-01-05 12:04:56 +00:00
|
|
|
<div class="wpgynlbz _panel _margin" :class="{ hide: !showBanner }">
|
2022-06-20 08:38:49 +00:00
|
|
|
<XChannelFollowButton :channel="channel" :full="true" class="subscribe"/>
|
|
|
|
<button class="_button toggle" @click="() => showBanner = !showBanner">
|
2022-12-19 10:01:30 +00:00
|
|
|
<template v-if="showBanner"><i class="ti ti-chevron-up"></i></template>
|
|
|
|
<template v-else><i class="ti ti-chevron-down"></i></template>
|
2022-06-20 08:38:49 +00:00
|
|
|
</button>
|
|
|
|
<div v-if="!showBanner" class="hideOverlay">
|
|
|
|
</div>
|
|
|
|
<div :style="{ backgroundImage: channel.bannerUrl ? `url(${channel.bannerUrl})` : null }" class="banner">
|
|
|
|
<div class="status">
|
2022-12-19 10:01:30 +00:00
|
|
|
<div><i class="ti ti-users ti-fw"></i><I18n :src="i18n.ts._channel.usersCount" tag="span" style="margin-left: 4px;"><template #n><b>{{ channel.usersCount }}</b></template></I18n></div>
|
|
|
|
<div><i class="ti ti-pencil ti-fw"></i><I18n :src="i18n.ts._channel.notesCount" tag="span" style="margin-left: 4px;"><template #n><b>{{ channel.notesCount }}</b></template></I18n></div>
|
2022-06-20 08:38:49 +00:00
|
|
|
</div>
|
|
|
|
<div class="fade"></div>
|
|
|
|
</div>
|
|
|
|
<div v-if="channel.description" class="description">
|
|
|
|
<Mfm :text="channel.description" :is-note="false" :i="$i"/>
|
2021-12-23 07:10:13 +00:00
|
|
|
</div>
|
2020-08-18 13:44:21 +00:00
|
|
|
</div>
|
|
|
|
|
2023-02-09 01:35:28 +00:00
|
|
|
<MkPostForm v-if="$i" :channel="channel" class="post-form _panel _margin" fixed/>
|
2020-08-18 13:44:21 +00:00
|
|
|
|
2023-01-05 12:04:56 +00:00
|
|
|
<XTimeline :key="channelId" class="_margin" src="channel" :channel="channelId" @before="before" @after="after"/>
|
2022-06-20 08:38:49 +00:00
|
|
|
</div>
|
|
|
|
</MkSpacer>
|
|
|
|
</MkStickyContainer>
|
2020-08-18 13:44:21 +00:00
|
|
|
</template>
|
|
|
|
|
2022-06-20 08:38:49 +00:00
|
|
|
<script lang="ts" setup>
|
2023-02-16 14:09:41 +00:00
|
|
|
import { computed, watch } from 'vue';
|
2023-02-09 01:35:28 +00:00
|
|
|
import MkPostForm from '@/components/MkPostForm.vue';
|
2022-08-30 15:24:33 +00:00
|
|
|
import XTimeline from '@/components/MkTimeline.vue';
|
|
|
|
import XChannelFollowButton from '@/components/MkChannelFollowButton.vue';
|
2021-11-11 17:02:25 +00:00
|
|
|
import * as os from '@/os';
|
2022-06-20 08:38:49 +00:00
|
|
|
import { useRouter } from '@/router';
|
|
|
|
import { $i } from '@/account';
|
|
|
|
import { i18n } from '@/i18n';
|
|
|
|
import { definePageMetadata } from '@/scripts/page-metadata';
|
2020-08-18 13:44:21 +00:00
|
|
|
|
2022-06-20 08:38:49 +00:00
|
|
|
const router = useRouter();
|
2020-08-18 13:44:21 +00:00
|
|
|
|
2022-06-20 08:38:49 +00:00
|
|
|
const props = defineProps<{
|
|
|
|
channelId: string;
|
|
|
|
}>();
|
2020-08-18 13:44:21 +00:00
|
|
|
|
2022-06-20 08:38:49 +00:00
|
|
|
let channel = $ref(null);
|
|
|
|
let showBanner = $ref(true);
|
|
|
|
const pagination = {
|
|
|
|
endpoint: 'channels/timeline' as const,
|
|
|
|
limit: 10,
|
|
|
|
params: computed(() => ({
|
|
|
|
channelId: props.channelId,
|
|
|
|
})),
|
|
|
|
};
|
2020-08-18 13:44:21 +00:00
|
|
|
|
2022-06-20 08:38:49 +00:00
|
|
|
watch(() => props.channelId, async () => {
|
|
|
|
channel = await os.api('channels/show', {
|
|
|
|
channelId: props.channelId,
|
|
|
|
});
|
|
|
|
}, { immediate: true });
|
2020-08-18 13:44:21 +00:00
|
|
|
|
2022-06-20 08:38:49 +00:00
|
|
|
function edit() {
|
|
|
|
router.push(`/channels/${channel.id}/edit`);
|
|
|
|
}
|
|
|
|
|
|
|
|
const headerActions = $computed(() => channel && channel.userId ? [{
|
2022-12-19 10:01:30 +00:00
|
|
|
icon: 'ti ti-settings',
|
2022-06-20 08:38:49 +00:00
|
|
|
text: i18n.ts.edit,
|
|
|
|
handler: edit,
|
|
|
|
}] : null);
|
|
|
|
|
|
|
|
const headerTabs = $computed(() => []);
|
|
|
|
|
|
|
|
definePageMetadata(computed(() => channel ? {
|
|
|
|
title: channel.name,
|
2022-12-19 10:01:30 +00:00
|
|
|
icon: 'ti ti-device-tv',
|
2022-06-20 08:38:49 +00:00
|
|
|
} : null));
|
2020-08-18 13:44:21 +00:00
|
|
|
</script>
|
|
|
|
|
2022-12-27 09:29:39 +00:00
|
|
|
<style lang="scss" scoped>
|
2020-08-18 13:44:21 +00:00
|
|
|
.wpgynlbz {
|
2020-10-18 03:16:42 +00:00
|
|
|
position: relative;
|
|
|
|
|
2020-08-18 13:44:21 +00:00
|
|
|
> .subscribe {
|
|
|
|
position: absolute;
|
|
|
|
z-index: 1;
|
|
|
|
top: 16px;
|
|
|
|
left: 16px;
|
|
|
|
}
|
|
|
|
|
|
|
|
> .toggle {
|
|
|
|
position: absolute;
|
|
|
|
z-index: 2;
|
|
|
|
top: 8px;
|
|
|
|
right: 8px;
|
|
|
|
font-size: 1.2em;
|
|
|
|
width: 48px;
|
|
|
|
height: 48px;
|
|
|
|
color: #fff;
|
|
|
|
background: rgba(0, 0, 0, 0.5);
|
|
|
|
border-radius: 100%;
|
|
|
|
|
2021-04-20 14:22:59 +00:00
|
|
|
> i {
|
2020-08-18 13:44:21 +00:00
|
|
|
vertical-align: middle;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
> .banner {
|
|
|
|
position: relative;
|
|
|
|
height: 200px;
|
|
|
|
background-position: center;
|
|
|
|
background-size: cover;
|
|
|
|
|
|
|
|
> .fade {
|
|
|
|
position: absolute;
|
|
|
|
bottom: 0;
|
|
|
|
left: 0;
|
|
|
|
width: 100%;
|
|
|
|
height: 64px;
|
|
|
|
background: linear-gradient(0deg, var(--panel), var(--X15));
|
|
|
|
}
|
|
|
|
|
|
|
|
> .status {
|
|
|
|
position: absolute;
|
|
|
|
z-index: 1;
|
|
|
|
bottom: 16px;
|
|
|
|
right: 16px;
|
|
|
|
padding: 8px 12px;
|
|
|
|
font-size: 80%;
|
|
|
|
background: rgba(0, 0, 0, 0.7);
|
|
|
|
border-radius: 6px;
|
|
|
|
color: #fff;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
> .description {
|
|
|
|
padding: 16px;
|
|
|
|
}
|
|
|
|
|
|
|
|
> .hideOverlay {
|
|
|
|
position: absolute;
|
|
|
|
z-index: 1;
|
|
|
|
top: 0;
|
|
|
|
left: 0;
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
2021-08-11 13:34:45 +00:00
|
|
|
-webkit-backdrop-filter: var(--blur, blur(16px));
|
|
|
|
backdrop-filter: var(--blur, blur(16px));
|
2020-08-18 13:44:21 +00:00
|
|
|
background: rgba(0, 0, 0, 0.3);
|
|
|
|
}
|
|
|
|
|
|
|
|
&.hide {
|
|
|
|
> .subscribe {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
> .toggle {
|
|
|
|
top: 0;
|
|
|
|
right: 0;
|
|
|
|
height: 100%;
|
|
|
|
background: transparent;
|
|
|
|
}
|
|
|
|
|
|
|
|
> .banner {
|
|
|
|
height: 42px;
|
|
|
|
filter: blur(8px);
|
|
|
|
|
|
|
|
> * {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
> .description {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
</style>
|