2023-07-27 05:31:52 +00:00
|
|
|
<!--
|
|
|
|
SPDX-FileCopyrightText: syuilo and other misskey contributors
|
|
|
|
SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
-->
|
|
|
|
|
2020-08-18 13:44:21 +00:00
|
|
|
<template>
|
2022-06-20 08:38:49 +00:00
|
|
|
<MkStickyContainer>
|
2023-02-25 09:26:35 +00:00
|
|
|
<template #header><MkPageHeader v-model:tab="tab" :actions="headerActions" :tabs="headerTabs"/></template>
|
2023-05-19 07:20:53 +00:00
|
|
|
<MkSpacer :contentMax="700" :class="$style.main">
|
2023-03-04 01:50:21 +00:00
|
|
|
<div v-if="channel && tab === 'overview'" class="_gaps">
|
|
|
|
<div class="_panel" :class="$style.bannerContainer">
|
|
|
|
<XChannelFollowButton :channel="channel" :full="true" :class="$style.subscribe"/>
|
2023-11-03 22:20:53 +00:00
|
|
|
<MkButton v-if="favorited" v-tooltip="i18n.ts.unfavorite" asLike class="button" rounded primary :class="$style.favorite" @click="unfavorite()"><i class="ph-star ph-bold ph-lg"></i></MkButton>
|
|
|
|
<MkButton v-else v-tooltip="i18n.ts.favorite" asLike class="button" rounded :class="$style.favorite" @click="favorite()"><i class="ph-star ph-bold ph-lg"></i></MkButton>
|
2023-03-04 01:50:21 +00:00
|
|
|
<div :style="{ backgroundImage: channel.bannerUrl ? `url(${channel.bannerUrl})` : null }" :class="$style.banner">
|
|
|
|
<div :class="$style.bannerStatus">
|
2023-11-03 22:20:53 +00:00
|
|
|
<div><i class="ph-users ph-bold ph-lg ti-fw"></i><I18n :src="i18n.ts._channel.usersCount" tag="span" style="margin-left: 4px;"><template #n><b>{{ channel.usersCount }}</b></template></I18n></div>
|
2023-09-30 19:53:52 +00:00
|
|
|
<div><i class="ph-pencil ph-bold ph-lg 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>
|
2023-08-05 04:58:31 +00:00
|
|
|
<div v-if="channel.isSensitive" :class="$style.sensitiveIndicator">{{ i18n.ts.sensitive }}</div>
|
2023-03-04 01:50:21 +00:00
|
|
|
<div :class="$style.bannerFade"></div>
|
2022-06-20 08:38:49 +00:00
|
|
|
</div>
|
2023-03-04 01:50:21 +00:00
|
|
|
<div v-if="channel.description" :class="$style.description">
|
2023-11-04 09:27:22 +00:00
|
|
|
<Mfm :text="channel.description" :isNote="false"/>
|
2021-12-23 07:10:13 +00:00
|
|
|
</div>
|
2020-08-18 13:44:21 +00:00
|
|
|
</div>
|
2023-03-31 02:30:27 +00:00
|
|
|
|
2023-03-31 06:01:56 +00:00
|
|
|
<MkFoldableSection>
|
2023-09-30 19:53:52 +00:00
|
|
|
<template #header><i class="ph-push-pin ph-bold ph-lg ti-fw" style="margin-right: 0.5em;"></i>{{ i18n.ts.pinnedNotes }}</template>
|
2023-03-31 06:01:56 +00:00
|
|
|
<div v-if="channel.pinnedNotes.length > 0" class="_gaps">
|
|
|
|
<MkNote v-for="note in channel.pinnedNotes" :key="note.id" class="_panel" :note="note"/>
|
|
|
|
</div>
|
|
|
|
</MkFoldableSection>
|
2023-03-04 01:50:21 +00:00
|
|
|
</div>
|
|
|
|
<div v-if="channel && tab === 'timeline'" class="_gaps">
|
2023-05-05 23:15:17 +00:00
|
|
|
<MkInfo v-if="channel.isArchived" warn>{{ i18n.ts.thisChannelArchived }}</MkInfo>
|
|
|
|
|
2023-02-24 01:31:21 +00:00
|
|
|
<!-- スマホ・タブレットの場合、キーボードが表示されると投稿が見づらくなるので、デスクトップ場合のみ自動でフォーカスを当てる -->
|
2023-03-04 01:34:54 +00:00
|
|
|
<MkPostForm v-if="$i && defaultStore.reactiveState.showFixedPostFormInChannel.value" :channel="channel" class="post-form _panel" fixed :autofocus="deviceKind === 'desktop'"/>
|
2020-08-18 13:44:21 +00:00
|
|
|
|
2023-02-25 09:26:35 +00:00
|
|
|
<MkTimeline :key="channelId" src="channel" :channel="channelId" @before="before" @after="after"/>
|
|
|
|
</div>
|
|
|
|
<div v-else-if="tab === 'featured'">
|
|
|
|
<MkNotes :pagination="featuredPagination"/>
|
2022-06-20 08:38:49 +00:00
|
|
|
</div>
|
2023-05-05 01:05:33 +00:00
|
|
|
<div v-else-if="tab === 'search'">
|
|
|
|
<div class="_gaps">
|
|
|
|
<div>
|
|
|
|
<MkInput v-model="searchQuery">
|
2023-09-30 19:53:52 +00:00
|
|
|
<template #prefix><i class="ph-magnifying-glass ph-bold ph-lg"></i></template>
|
2023-05-05 01:05:33 +00:00
|
|
|
</MkInput>
|
|
|
|
<MkButton primary rounded style="margin-top: 8px;" @click="search()">{{ i18n.ts.search }}</MkButton>
|
|
|
|
</div>
|
2023-05-11 07:29:34 +00:00
|
|
|
<MkNotes v-if="searchPagination" :key="searchKey" :pagination="searchPagination"/>
|
2023-05-05 01:05:33 +00:00
|
|
|
</div>
|
|
|
|
</div>
|
2022-06-20 08:38:49 +00:00
|
|
|
</MkSpacer>
|
2023-03-04 01:34:54 +00:00
|
|
|
<template #footer>
|
|
|
|
<div :class="$style.footer">
|
2023-05-19 07:20:53 +00:00
|
|
|
<MkSpacer :contentMax="700" :marginMin="16" :marginMax="16">
|
2023-03-04 01:34:54 +00:00
|
|
|
<div class="_buttonsCenter">
|
2023-09-30 19:53:52 +00:00
|
|
|
<MkButton inline rounded primary gradate @click="openPostForm()"><i class="ph-pencil ph-bold ph-lg"></i> {{ i18n.ts.postToTheChannel }}</MkButton>
|
2023-03-04 01:34:54 +00:00
|
|
|
</div>
|
|
|
|
</MkSpacer>
|
|
|
|
</div>
|
|
|
|
</template>
|
2022-06-20 08:38:49 +00:00
|
|
|
</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';
|
2023-02-22 02:00:34 +00:00
|
|
|
import MkTimeline from '@/components/MkTimeline.vue';
|
2022-08-30 15:24:33 +00:00
|
|
|
import XChannelFollowButton from '@/components/MkChannelFollowButton.vue';
|
2023-09-19 07:37:43 +00:00
|
|
|
import * as os from '@/os.js';
|
|
|
|
import { useRouter } from '@/router.js';
|
|
|
|
import { $i, iAmModerator } from '@/account.js';
|
|
|
|
import { i18n } from '@/i18n.js';
|
|
|
|
import { definePageMetadata } from '@/scripts/page-metadata.js';
|
|
|
|
import { deviceKind } from '@/scripts/device-kind.js';
|
2023-02-25 09:26:35 +00:00
|
|
|
import MkNotes from '@/components/MkNotes.vue';
|
2023-09-19 07:37:43 +00:00
|
|
|
import { url } from '@/config.js';
|
2023-03-04 01:34:54 +00:00
|
|
|
import MkButton from '@/components/MkButton.vue';
|
2023-05-05 01:05:33 +00:00
|
|
|
import MkInput from '@/components/MkInput.vue';
|
2023-09-19 07:37:43 +00:00
|
|
|
import { defaultStore } from '@/store.js';
|
2023-03-31 06:01:56 +00:00
|
|
|
import MkNote from '@/components/MkNote.vue';
|
2023-05-05 23:15:17 +00:00
|
|
|
import MkInfo from '@/components/MkInfo.vue';
|
2023-03-31 06:01:56 +00:00
|
|
|
import MkFoldableSection from '@/components/MkFoldableSection.vue';
|
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
|
|
|
|
2023-07-10 04:30:41 +00:00
|
|
|
let tab = $ref('overview');
|
2022-06-20 08:38:49 +00:00
|
|
|
let channel = $ref(null);
|
2023-03-31 02:30:27 +00:00
|
|
|
let favorited = $ref(false);
|
2023-05-05 01:05:33 +00:00
|
|
|
let searchQuery = $ref('');
|
|
|
|
let searchPagination = $ref();
|
2023-05-11 07:29:34 +00:00
|
|
|
let searchKey = $ref('');
|
2023-02-25 09:26:35 +00:00
|
|
|
const featuredPagination = $computed(() => ({
|
|
|
|
endpoint: 'notes/featured' as const,
|
2022-06-20 08:38:49 +00:00
|
|
|
limit: 10,
|
2023-02-25 09:26:35 +00:00
|
|
|
params: {
|
2022-06-20 08:38:49 +00:00
|
|
|
channelId: props.channelId,
|
2023-02-25 09:26:35 +00:00
|
|
|
},
|
|
|
|
}));
|
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,
|
|
|
|
});
|
2023-03-31 02:30:27 +00:00
|
|
|
favorited = channel.isFavorited;
|
2023-07-10 04:30:41 +00:00
|
|
|
if (favorited || channel.isFollowing) {
|
|
|
|
tab = 'timeline';
|
|
|
|
}
|
2022-06-20 08:38:49 +00:00
|
|
|
}, { 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`);
|
|
|
|
}
|
|
|
|
|
2023-03-04 01:34:54 +00:00
|
|
|
function openPostForm() {
|
|
|
|
os.post({
|
2023-04-05 05:30:03 +00:00
|
|
|
channel,
|
2023-03-04 01:34:54 +00:00
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2023-03-31 02:30:27 +00:00
|
|
|
function favorite() {
|
|
|
|
os.apiWithDialog('channels/favorite', {
|
|
|
|
channelId: channel.id,
|
|
|
|
}).then(() => {
|
|
|
|
favorited = true;
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
async function unfavorite() {
|
|
|
|
const confirm = await os.confirm({
|
|
|
|
type: 'warning',
|
|
|
|
text: i18n.ts.unfavoriteConfirm,
|
|
|
|
});
|
|
|
|
if (confirm.canceled) return;
|
|
|
|
os.apiWithDialog('channels/unfavorite', {
|
|
|
|
channelId: channel.id,
|
|
|
|
}).then(() => {
|
|
|
|
favorited = false;
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2023-05-05 01:05:33 +00:00
|
|
|
async function search() {
|
|
|
|
const query = searchQuery.toString().trim();
|
|
|
|
|
|
|
|
if (query == null) return;
|
|
|
|
|
|
|
|
searchPagination = {
|
|
|
|
endpoint: 'notes/search',
|
|
|
|
limit: 10,
|
|
|
|
params: {
|
2023-05-11 07:29:34 +00:00
|
|
|
query: query,
|
2023-05-05 01:05:33 +00:00
|
|
|
channelId: channel.id,
|
|
|
|
},
|
|
|
|
};
|
2023-05-11 07:29:34 +00:00
|
|
|
|
|
|
|
searchKey = query;
|
2023-05-05 01:05:33 +00:00
|
|
|
}
|
|
|
|
|
2023-03-08 22:58:53 +00:00
|
|
|
const headerActions = $computed(() => {
|
|
|
|
if (channel && channel.userId) {
|
|
|
|
const share = {
|
2023-11-03 22:20:53 +00:00
|
|
|
icon: 'ph-share-network ph-bold ph-lg',
|
2023-03-08 22:58:53 +00:00
|
|
|
text: i18n.ts.share,
|
|
|
|
handler: async (): Promise<void> => {
|
|
|
|
navigator.share({
|
|
|
|
title: channel.name,
|
|
|
|
text: channel.description,
|
|
|
|
url: `${url}/channels/${channel.id}`,
|
|
|
|
});
|
|
|
|
},
|
|
|
|
};
|
|
|
|
|
|
|
|
const canEdit = ($i && $i.id === channel.userId) || iAmModerator;
|
|
|
|
return canEdit ? [share, {
|
2023-11-03 22:20:53 +00:00
|
|
|
icon: 'ph-gear ph-bold ph-lg',
|
2023-03-08 22:58:53 +00:00
|
|
|
text: i18n.ts.edit,
|
|
|
|
handler: edit,
|
|
|
|
}] : [share];
|
|
|
|
} else {
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
});
|
2022-06-20 08:38:49 +00:00
|
|
|
|
2023-02-25 09:26:35 +00:00
|
|
|
const headerTabs = $computed(() => [{
|
2023-03-04 01:50:21 +00:00
|
|
|
key: 'overview',
|
|
|
|
title: i18n.ts.overview,
|
2023-09-30 19:53:52 +00:00
|
|
|
icon: 'ph-info ph-bold ph-lg',
|
2023-03-04 01:50:21 +00:00
|
|
|
}, {
|
2023-02-25 09:26:35 +00:00
|
|
|
key: 'timeline',
|
|
|
|
title: i18n.ts.timeline,
|
2023-09-30 19:53:52 +00:00
|
|
|
icon: 'ph-house ph-bold ph-lg',
|
2023-02-25 09:26:35 +00:00
|
|
|
}, {
|
|
|
|
key: 'featured',
|
|
|
|
title: i18n.ts.featured,
|
2023-11-03 22:20:53 +00:00
|
|
|
icon: 'ph-lightning ph-bold ph-lg',
|
2023-05-05 01:05:33 +00:00
|
|
|
}, {
|
|
|
|
key: 'search',
|
|
|
|
title: i18n.ts.search,
|
2023-09-30 19:53:52 +00:00
|
|
|
icon: 'ph-magnifying-glass ph-bold ph-lg',
|
2023-02-25 09:26:35 +00:00
|
|
|
}]);
|
2022-06-20 08:38:49 +00:00
|
|
|
|
|
|
|
definePageMetadata(computed(() => channel ? {
|
|
|
|
title: channel.name,
|
2023-09-30 19:53:52 +00:00
|
|
|
icon: 'ph-television ph-bold ph-lg',
|
2022-06-20 08:38:49 +00:00
|
|
|
} : null));
|
2020-08-18 13:44:21 +00:00
|
|
|
</script>
|
|
|
|
|
2023-03-04 01:34:54 +00:00
|
|
|
<style lang="scss" module>
|
2023-03-04 01:50:21 +00:00
|
|
|
.main {
|
2023-05-08 09:30:40 +00:00
|
|
|
min-height: calc(100cqh - (var(--stickyTop, 0px) + var(--stickyBottom, 0px)));
|
2023-03-04 01:50:21 +00:00
|
|
|
}
|
|
|
|
|
2023-03-04 01:34:54 +00:00
|
|
|
.footer {
|
|
|
|
-webkit-backdrop-filter: var(--blur, blur(15px));
|
|
|
|
backdrop-filter: var(--blur, blur(15px));
|
|
|
|
border-top: solid 0.5px var(--divider);
|
|
|
|
}
|
|
|
|
|
2023-03-04 01:50:21 +00:00
|
|
|
.bannerContainer {
|
2020-10-18 03:16:42 +00:00
|
|
|
position: relative;
|
2023-03-04 01:50:21 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.subscribe {
|
|
|
|
position: absolute;
|
|
|
|
z-index: 1;
|
|
|
|
top: 16px;
|
|
|
|
left: 16px;
|
|
|
|
}
|
|
|
|
|
2023-05-16 03:28:59 +00:00
|
|
|
.favorite {
|
|
|
|
position: absolute;
|
|
|
|
z-index: 1;
|
|
|
|
top: 16px;
|
|
|
|
right: 16px;
|
|
|
|
}
|
|
|
|
|
2023-03-04 01:50:21 +00:00
|
|
|
.banner {
|
|
|
|
position: relative;
|
|
|
|
height: 200px;
|
|
|
|
background-position: center;
|
|
|
|
background-size: cover;
|
|
|
|
}
|
|
|
|
|
|
|
|
.bannerFade {
|
|
|
|
position: absolute;
|
|
|
|
bottom: 0;
|
|
|
|
left: 0;
|
|
|
|
width: 100%;
|
|
|
|
height: 64px;
|
|
|
|
background: linear-gradient(0deg, var(--panel), var(--X15));
|
|
|
|
}
|
|
|
|
|
|
|
|
.bannerStatus {
|
|
|
|
position: absolute;
|
|
|
|
z-index: 1;
|
|
|
|
bottom: 16px;
|
|
|
|
right: 16px;
|
|
|
|
padding: 8px 12px;
|
|
|
|
font-size: 80%;
|
|
|
|
background: rgba(0, 0, 0, 0.7);
|
2023-10-31 18:44:34 +00:00
|
|
|
border-radius: var(--radius-sm);
|
2023-03-04 01:50:21 +00:00
|
|
|
color: #fff;
|
|
|
|
}
|
2020-10-18 03:16:42 +00:00
|
|
|
|
2023-03-04 01:50:21 +00:00
|
|
|
.description {
|
|
|
|
padding: 16px;
|
2020-08-18 13:44:21 +00:00
|
|
|
}
|
2023-08-05 04:58:31 +00:00
|
|
|
|
|
|
|
.sensitiveIndicator {
|
|
|
|
position: absolute;
|
|
|
|
z-index: 1;
|
|
|
|
bottom: 16px;
|
|
|
|
left: 16px;
|
|
|
|
background: rgba(0, 0, 0, 0.7);
|
|
|
|
color: var(--warn);
|
2023-10-31 18:44:34 +00:00
|
|
|
border-radius: var(--radius-sm);
|
2023-08-05 04:58:31 +00:00
|
|
|
font-weight: bold;
|
|
|
|
font-size: 1em;
|
|
|
|
padding: 4px 7px;
|
|
|
|
}
|
2020-08-18 13:44:21 +00:00
|
|
|
</style>
|