2020-08-18 15:44:21 +02:00
|
|
|
<template>
|
2023-04-08 02:01:42 +02:00
|
|
|
<MkStickyContainer>
|
|
|
|
<template #header
|
|
|
|
><MkPageHeader
|
|
|
|
:actions="headerActions"
|
|
|
|
:tabs="headerTabs"
|
|
|
|
:display-back-button="true"
|
|
|
|
/></template>
|
|
|
|
<MkSpacer :content-max="700">
|
|
|
|
<div v-if="channel">
|
|
|
|
<div
|
|
|
|
class="wpgynlbz _panel _gap"
|
|
|
|
:class="{ hide: !showBanner }"
|
|
|
|
>
|
|
|
|
<XChannelFollowButton
|
|
|
|
:channel="channel"
|
|
|
|
:full="true"
|
|
|
|
class="subscribe"
|
|
|
|
/>
|
|
|
|
<button
|
|
|
|
class="_button toggle"
|
|
|
|
@click="() => (showBanner = !showBanner)"
|
|
|
|
>
|
|
|
|
<template v-if="showBanner"
|
|
|
|
><i class="ph-caret-up ph-bold ph-lg"></i
|
|
|
|
></template>
|
|
|
|
<template v-else
|
|
|
|
><i class="ph-caret-down ph-bold ph-lg"></i
|
|
|
|
></template>
|
|
|
|
</button>
|
|
|
|
<div v-if="!showBanner" class="hideOverlay"></div>
|
|
|
|
<div
|
|
|
|
:style="{
|
|
|
|
backgroundImage: channel.bannerUrl
|
|
|
|
? `url(${channel.bannerUrl})`
|
|
|
|
: null,
|
|
|
|
}"
|
|
|
|
class="banner"
|
|
|
|
>
|
|
|
|
<div class="status">
|
|
|
|
<div>
|
|
|
|
<i
|
|
|
|
class="ph-users ph-bold ph-lg ph-fw ph-lg"
|
|
|
|
></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="ph-pencil ph-bold ph-lg ph-fw ph-lg"
|
|
|
|
></i
|
|
|
|
><I18n
|
|
|
|
:src="i18n.ts._channel.notesCount"
|
|
|
|
tag="span"
|
|
|
|
style="margin-left: 4px"
|
|
|
|
><template #n
|
|
|
|
><b>{{
|
|
|
|
channel.notesCount
|
|
|
|
}}</b></template
|
|
|
|
></I18n
|
|
|
|
>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div class="fade"></div>
|
|
|
|
</div>
|
|
|
|
<div v-if="channel.description" class="description">
|
|
|
|
<Mfm
|
|
|
|
:text="channel.description"
|
|
|
|
:is-note="false"
|
|
|
|
:i="$i"
|
|
|
|
/>
|
2022-06-20 10:38:49 +02:00
|
|
|
</div>
|
2021-12-23 08:10:13 +01:00
|
|
|
</div>
|
2020-08-18 15:44:21 +02:00
|
|
|
|
2023-04-08 02:01:42 +02:00
|
|
|
<XPostForm
|
|
|
|
v-if="$i"
|
|
|
|
:channel="channel"
|
|
|
|
class="post-form _panel _gap"
|
|
|
|
fixed
|
|
|
|
/>
|
2020-08-18 15:44:21 +02:00
|
|
|
|
2023-04-08 02:01:42 +02:00
|
|
|
<XTimeline
|
|
|
|
:key="channelId"
|
|
|
|
class="_gap"
|
|
|
|
src="channel"
|
|
|
|
:channel="channelId"
|
|
|
|
@before="before"
|
|
|
|
@after="after"
|
|
|
|
/>
|
|
|
|
</div>
|
|
|
|
</MkSpacer>
|
|
|
|
</MkStickyContainer>
|
2020-08-18 15:44:21 +02:00
|
|
|
</template>
|
|
|
|
|
2022-06-20 10:38:49 +02:00
|
|
|
<script lang="ts" setup>
|
2023-04-08 02:01:42 +02:00
|
|
|
import { computed, inject, watch } from "vue";
|
|
|
|
import MkContainer from "@/components/MkContainer.vue";
|
|
|
|
import XPostForm from "@/components/MkPostForm.vue";
|
|
|
|
import XTimeline from "@/components/MkTimeline.vue";
|
|
|
|
import XChannelFollowButton from "@/components/MkChannelFollowButton.vue";
|
|
|
|
import * as os from "@/os";
|
|
|
|
import { useRouter } from "@/router";
|
|
|
|
import { $i } from "@/account";
|
|
|
|
import { i18n } from "@/i18n";
|
|
|
|
import { definePageMetadata } from "@/scripts/page-metadata";
|
2020-08-18 15:44:21 +02:00
|
|
|
|
2022-06-20 10:38:49 +02:00
|
|
|
const router = useRouter();
|
2020-08-18 15:44:21 +02:00
|
|
|
|
2022-06-20 10:38:49 +02:00
|
|
|
const props = defineProps<{
|
|
|
|
channelId: string;
|
|
|
|
}>();
|
2020-08-18 15:44:21 +02:00
|
|
|
|
2022-06-20 10:38:49 +02:00
|
|
|
let channel = $ref(null);
|
|
|
|
let showBanner = $ref(true);
|
2020-08-18 15:44:21 +02:00
|
|
|
|
2023-04-08 02:01:42 +02:00
|
|
|
watch(
|
|
|
|
() => props.channelId,
|
|
|
|
async () => {
|
|
|
|
channel = await os.api("channels/show", {
|
|
|
|
channelId: props.channelId,
|
|
|
|
});
|
|
|
|
},
|
2023-07-06 03:28:27 +02:00
|
|
|
{ immediate: true },
|
2023-04-08 02:01:42 +02:00
|
|
|
);
|
2020-08-18 15:44:21 +02:00
|
|
|
|
2022-06-20 10:38:49 +02:00
|
|
|
function edit() {
|
2023-03-18 09:07:39 +01:00
|
|
|
router.push(`/channels/${channel?.id}/edit`);
|
2022-06-20 10:38:49 +02:00
|
|
|
}
|
|
|
|
|
2023-04-08 02:01:42 +02:00
|
|
|
const headerActions = $computed(() => [
|
|
|
|
...(channel && channel?.userId === $i?.id
|
2023-03-18 09:07:39 +01:00
|
|
|
? [
|
2023-04-08 02:01:42 +02:00
|
|
|
{
|
|
|
|
icon: "ph-gear-six ph-bold ph-lg",
|
|
|
|
text: i18n.ts.edit,
|
|
|
|
handler: edit,
|
|
|
|
},
|
|
|
|
]
|
|
|
|
: []),
|
2023-03-18 09:07:39 +01:00
|
|
|
]);
|
2022-06-20 10:38:49 +02:00
|
|
|
|
|
|
|
const headerTabs = $computed(() => []);
|
|
|
|
|
2023-04-08 02:01:42 +02:00
|
|
|
definePageMetadata(
|
|
|
|
computed(() =>
|
|
|
|
channel
|
|
|
|
? {
|
|
|
|
title: channel.name,
|
|
|
|
icon: "ph-television ph-bold ph-lg",
|
|
|
|
}
|
2023-07-06 03:28:27 +02:00
|
|
|
: null,
|
|
|
|
),
|
2023-04-08 02:01:42 +02:00
|
|
|
);
|
2020-08-18 15:44:21 +02:00
|
|
|
</script>
|
|
|
|
|
|
|
|
<style lang="scss" scoped>
|
|
|
|
.wpgynlbz {
|
2020-10-18 05:16:42 +02:00
|
|
|
position: relative;
|
|
|
|
|
2020-08-18 15:44:21 +02:00
|
|
|
> .subscribe {
|
|
|
|
position: absolute;
|
|
|
|
z-index: 1;
|
|
|
|
top: 16px;
|
|
|
|
left: 16px;
|
|
|
|
}
|
|
|
|
|
|
|
|
> .toggle {
|
|
|
|
position: absolute;
|
|
|
|
z-index: 2;
|
2023-04-08 02:01:42 +02:00
|
|
|
top: 8px;
|
2020-08-18 15:44:21 +02:00
|
|
|
right: 8px;
|
|
|
|
font-size: 1.2em;
|
|
|
|
width: 48px;
|
|
|
|
height: 48px;
|
|
|
|
color: #fff;
|
|
|
|
background: rgba(0, 0, 0, 0.5);
|
|
|
|
border-radius: 100%;
|
2023-04-08 02:01:42 +02:00
|
|
|
|
2021-04-20 16:22:59 +02:00
|
|
|
> i {
|
2020-08-18 15:44:21 +02:00
|
|
|
vertical-align: middle;
|
|
|
|
}
|
|
|
|
}
|
2023-04-08 02:01:42 +02:00
|
|
|
|
2020-08-18 15:44:21 +02:00
|
|
|
> .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 15:34:45 +02:00
|
|
|
-webkit-backdrop-filter: var(--blur, blur(16px));
|
|
|
|
backdrop-filter: var(--blur, blur(16px));
|
2020-08-18 15:44:21 +02: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>
|