156 lines
No EOL
3.4 KiB
Vue
156 lines
No EOL
3.4 KiB
Vue
<template>
|
|
<NuxtLayout name="client">
|
|
<div id="middle-left-column" class="main-grid-row">
|
|
<div id="server-title">
|
|
<h3>
|
|
{{ server?.name }}
|
|
<span>
|
|
<button @click="showGuildSettings">
|
|
<Icon name="lucide:settings" />
|
|
</button>
|
|
</span>
|
|
<span>
|
|
<button @click="toggleInvitePopup">
|
|
<Icon name="lucide:share-2" />
|
|
</button>
|
|
</span>
|
|
<InvitePopup v-if="showInvitePopup" />
|
|
</h3>
|
|
</div>
|
|
<div id="channels-list">
|
|
<Channel v-for="channel of channels" :name="channel.name"
|
|
:uuid="channel.uuid" :current-uuid="(route.params.channelId as string)"
|
|
:href="`/servers/${route.params.serverId}/channels/${channel.uuid}`" />
|
|
</div>
|
|
</div>
|
|
<MessageArea :channel-url="channelUrlPath" />
|
|
<div id="members-list">
|
|
<div class="member-item" v-for="member of members">
|
|
<img v-if="member.avatar" :src="member.avatar" :alt="member.displayName" height="30" />
|
|
<Icon v-else name="lucide:user" size="30" />
|
|
<span class="member-display-name">{{ member.displayName }}</span>
|
|
</div>
|
|
</div>
|
|
</NuxtLayout>
|
|
</template>
|
|
|
|
<script lang="ts" setup>
|
|
|
|
const route = useRoute();
|
|
|
|
const loading = useState("loading");
|
|
|
|
const channelUrlPath = `/channels/${route.params.channelId}`;
|
|
|
|
const server = ref<GuildResponse | undefined>();
|
|
const channels = ref<ChannelResponse[] | undefined>();
|
|
const channel = ref<ChannelResponse | undefined>();
|
|
|
|
const showInvitePopup = ref(false);
|
|
|
|
import type { ChannelResponse, GuildResponse, MessageResponse } from "~/types/interfaces";
|
|
|
|
//const servers = await fetchWithApi("/servers") as { uuid: string, name: string, description: string }[];
|
|
//console.log("channelid: servers:", servers);
|
|
const members = [
|
|
{
|
|
id: "3287484395",
|
|
displayName: "SauceyRed",
|
|
avatar: ""
|
|
},
|
|
{
|
|
id: "3287484395",
|
|
displayName: "JustTemmie",
|
|
avatar: ""
|
|
},
|
|
{
|
|
id: "3287484395",
|
|
displayName: "GOIN!!!!!!",
|
|
avatar: ""
|
|
},
|
|
{
|
|
id: "3287484395",
|
|
displayName: "SauceyRed",
|
|
avatar: ""
|
|
},
|
|
{
|
|
id: "3287484395",
|
|
displayName: "Hatsune Miku Official",
|
|
avatar: ""
|
|
},
|
|
{
|
|
id: "3287484395",
|
|
displayName: "Hatsune Miku Official",
|
|
avatar: ""
|
|
},
|
|
{
|
|
id: "3287484395",
|
|
displayName: "Hatsune Miku Official",
|
|
avatar: ""
|
|
},
|
|
{
|
|
id: "3287484395",
|
|
displayName: "SauceyRed",
|
|
avatar: ""
|
|
},
|
|
{
|
|
id: "3287484395",
|
|
displayName: "SauceyRed",
|
|
avatar: ""
|
|
}
|
|
];
|
|
|
|
onMounted(async () => {
|
|
console.log("channelid: set loading to true");
|
|
const guildUrl = `guilds/${route.params.serverId}`;
|
|
server.value = await fetchWithApi(guildUrl);
|
|
|
|
channels.value = await fetchWithApi(`${guildUrl}/channels`);
|
|
console.log("channels:", channels.value);
|
|
channel.value = await fetchWithApi(route.path);
|
|
console.log("channel:", channel.value);
|
|
|
|
console.log("channelid: channel:", channel);
|
|
console.log("channelid: set loading to false");
|
|
});
|
|
|
|
function showGuildSettings() { }
|
|
|
|
function toggleInvitePopup(e: Event) {
|
|
e.preventDefault();
|
|
showInvitePopup.value = !showInvitePopup.value;
|
|
}
|
|
</script>
|
|
|
|
<style>
|
|
.member-item {
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
margin-top: .5em;
|
|
margin-bottom: .5em;
|
|
}
|
|
|
|
#members-list {
|
|
padding-top: 3dvh;
|
|
}
|
|
|
|
#middle-left-column {
|
|
padding-left: 1dvw;
|
|
padding-right: 1dvw;
|
|
border-right: 1px solid rgb(70, 70, 70);
|
|
}
|
|
|
|
#members-list {
|
|
padding-left: 1dvw;
|
|
padding-right: 1dvw;
|
|
border-left: 1px solid rgb(70, 70, 70);
|
|
}
|
|
|
|
#channels-list {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 1dvh;
|
|
}
|
|
|
|
</style> |