Files
lynq-chat/packages/frontend/src/routes/community/index.vue
T

421 lines
8.8 KiB
Vue

<template>
<Progress
v-if="isProcessing"
:size="20"
class="processing-progress"
/>
<div
v-if="!isProcessing && presentCommunity && channels"
class="community"
>
<div class="left">
<div class="community-top-info">
<span>{{ presentCommunity.name }}</span>
<div
class="change-menu"
:title='isMenuOpen
? "メニューを閉じる"
: "メニューを開く"'
>
<Icon
@click="changeMenu()"
:icon='isMenuOpen
? "material-symbols:keyboard-arrow-up-rounded"
: "material-symbols:keyboard-arrow-down-rounded"'
/>
</div>
<div
class="menu"
ref="menuElem"
v-show="isMenuOpen"
>
<div
v-for="content of menuContents"
@click="content.onClick()"
>
<Icon :icon="`material-symbols:${content.icon}`" />
<span>{{ content.name }}</span>
</div>
</div>
</div>
<div
class="channels"
:class='isChannelsLoading
? "isLoading"
: ""'
>
<Progress
v-if="isChannelsLoading"
class="processing-progress"
:size="12"
/>
<RouterLink
v-else
v-for="channel of channels"
:to="`/community/${$route.params.communityId}/${channel.id}`"
:class='route.fullPath === `/community/${$route.params.communityId}/${channel.id}`
? "isActive"
: ""'
>
<Icon icon="material-symbols:chat-rounded" />
<span>{{ channel.name }}</span>
</RouterLink>
</div>
</div>
<span class="border" />
<div class="community-inner">
<RouterView
:key='route.fullPath.split("/")[3] ?? $route.fullPath'
/>
</div>
</div>
</template>
<style>
.community-top-info {
position: relative;
display: flex;
gap: 0.25rem;
width: 100%;
height: 3.5rem;
border-bottom: 1px solid var(--border-color);
padding: 0 1rem;
font-size: 1.1rem;
font-weight: bold;
box-sizing: border-box;
}
.community-top-info > span {
margin: auto 0;
height: 1rlh;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
user-select: none;
-webkit-user-select: none;
}
.community-top-info > svg,
.change-menu,
.change-menu > svg {
cursor: pointer;
width: 2rem;
height: 2rem;
flex-shrink: 0;
margin: auto 0;
}
</style>
<style scoped>
.processing-progress {
margin: auto;
}
.change-menu {
margin-left: auto;
}
.menu {
position: absolute;
top: 100%;
left: 100%;
display: flex;
flex-direction: column;
width: max-content;
height: max-content;
overflow: hidden;
border-radius: 0.5rem;
transform: translateX(-100%);
background-color: var(--bg-sub-color);
border: 1px solid var(--border-color);
user-select: none;
-webkit-user-select: none;
}
.menu > div {
display: flex;
cursor: pointer;
width: 100%;
height: calc(1rlh + calc(0.75rem * 2));
box-sizing: border-box;
padding: 0.75rem 1rem;
gap: 0.25rem;
}
.menu > div:hover {
background-color: var(--bg-color);
}
.menu > div > svg {
width: 1rlh;
height: 1rlh;
margin: auto 0;
}
.community {
height: 100%;
display: flex;
}
.left {
display: flex;
flex-direction: column;
box-sizing: border-box;
width: 18rem;
height: 100%;
border-top-right-radius: 2rem;
border-bottom-right-radius: 2rem;
}
.channels,
.border {
flex-shrink: 0;
}
.channels {
display: flex;
flex-direction: column;
width: 100%;
flex-grow: 1;
gap: 0.5rem;
overflow: scroll;
padding: 1rem 1rem 0 1rem;
box-sizing: border-box;
}
.channels.isLoading {
padding-bottom: 1rem;
}
.channels a {
display: flex;
color: var(--text-color);
text-decoration: none;
padding-left: 1rem;
gap: 0.25rem;
height: 2rem;
border: 1px solid transparent;
border-radius: 1rem;
padding: 0.5rem;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
user-select: none;
-webkit-user-select: none;
}
.channels a:hover,
.channels a.isActive {
background-color: var(--bg-sub-color);
}
.channels a.isActive {
border: 1px solid var(--border-color);
}
.channels a * {
margin: auto 0;
}
.channels a svg {
width: 1.25rem;
height: 1.25rem;
}
.channels a span {
font-size: 1.25rem;
}
.community .border {
width: 1px;
height: 100%;
background-color: var(--border-color);
}
.community .community-inner {
flex-grow: 1;
height: 100%;
box-sizing: border-box;
}
.community-inner {
display: flex;
flex-direction: column;
}
</style>
<script lang="ts" setup>
import { RouterLink, RouterView, useRoute, useRouter } from "vue-router";
import { account, presentCommunity, serverInfo } from "@/lib/account";
import client from "@/lib/client";
import { createModal } from "@/lib/modal";
import GoHomeError from "@/components/Modal/GoHomeError.vue";
import { onBeforeUnmount, ref, watch } from "vue";
import Progress from "@/components/Progress.vue";
import { title } from "@/lib/router";
import type ApiMap from "lynqchat-js/1.0.0-alpha.0/map";
import { Icon } from "@iconify/vue";
import CreateChannel from "@/components/Modal/CreateChannel.vue";
const route = useRoute();
const router = useRouter();
const isProcessing = ref<boolean>(false);
const isMenuOpen = ref<boolean>(false);
const menuElem = ref<HTMLElement | null>(null);
const isChannelsLoading = ref<boolean>(false);
const channels = ref<Extract<ApiMap["channel/list"]["response"], { channels: any }>["channels"]>();
if (!serverInfo.value?.success) {
throw new Error("サーバー情報の取得に失敗しました。");
}
if (!serverInfo.value.isInitialized) {
router.replace("/setup/initialization");
}
if (!account.value?.success) {
switch (account.value?.error.bad) {
case "client":
router.replace("/signin");
break;
default:
throw new Error("アカウント情報の取得に失敗しました。");
}
}
const handleOutsideClick = (event: any) => {
if (menuElem.value && !menuElem.value.contains(event.target)) {
isMenuOpen.value = false;
}
}
watch(isMenuOpen, async (newVal) => {
if (newVal) {
await new Promise<void>(resolve => setTimeout(resolve, 0));
window.addEventListener("click", handleOutsideClick);
} else {
window.removeEventListener("click", handleOutsideClick);
}
})
onBeforeUnmount(() => {
window.removeEventListener("click", handleOutsideClick);
});
const createChannel = () => {
isMenuOpen.value = false;
const communityId = route.params.communityId;
if (typeof communityId !== "string") {
isProcessing.value = false;
createModal({
component: GoHomeError,
onClose: async () => await router.push("/"),
props: {
error: "不正なアクセスです。",
},
});
return;
}
createModal({
component: CreateChannel,
onClose: (result: "success" | "cancel") => {
if (result === "success") {
loadChannels(communityId);
}
},
props: {
community: communityId,
},
});
}
const menuContents = [
{
name: "チャンネルを作成",
icon: "add-2-rounded",
onClick: createChannel,
},
];
const changeMenu = () => {
isMenuOpen.value = !isMenuOpen.value;
}
const loadChannels = async (communityId: string) => {
isChannelsLoading.value = true;
const channelsRes = await client.value.request("channel/list", {
community: communityId,
});
if (!channelsRes.success) {
isChannelsLoading.value = false;
createModal({
component: GoHomeError,
onClose: async () => await router.push("/"),
props: {
error: "チャンネルが取得できませんでした。",
},
});
return;
}
channels.value = channelsRes.channels;
isChannelsLoading.value = false;
}
(async () => {
isProcessing.value = true;
if (!serverInfo.value?.success) {
throw new Error("サーバー情報の取得に失敗しました。");
}
const communityId = route.params.communityId;
if (typeof communityId !== "string") {
isProcessing.value = false;
createModal({
component: GoHomeError,
onClose: async () => await router.push("/"),
props: {
error: "不正なアクセスです。",
},
});
return;
}
const community = await client.value.request("community/get", {
id: communityId,
});
if (!community.success) {
isProcessing.value = false;
createModal({
component: GoHomeError,
onClose: async () => await router.push("/"),
props: {
error: "コミュニティが取得できませんでした。",
},
});
return;
}
presentCommunity.value = community.community;
document.title = `${community.community.name} | ${serverInfo.value.name}`;
title.value = community.community.name;
await loadChannels(communityId);
isProcessing.value = false;
})();
</script>