89 lines
2.5 KiB
Vue
89 lines
2.5 KiB
Vue
<!-- eslint-disable vue/no-multiple-template-root -->
|
|
<template>
|
|
<MessagePane
|
|
:channel="channel"
|
|
:participants="participants"
|
|
/>
|
|
<div
|
|
class="fixed mr-3"
|
|
:style="`top: ${emojiPickerData.top}px; right: ${emojiPickerData.right}px`"
|
|
>
|
|
<Transition>
|
|
<Popup
|
|
:opened="emojiPickerData.opened"
|
|
:openedBy="emojiPickerData.type"
|
|
@pickedEmoji="pickedEmoji($event)"
|
|
/>
|
|
</Transition>
|
|
</div>
|
|
</template>
|
|
|
|
<script lang="ts">
|
|
import { useActiveStore } from '~/stores/activeStore';
|
|
import { useDmStore } from '~/stores/dmStore';
|
|
import { useEmojiPickerStore } from '~/stores/emojiPickerStore';
|
|
import { useServerStore } from '~/stores/serverStore';
|
|
import { useUserStore } from '~/stores/userStore';
|
|
import { IChannel, IMessage, IServer, SafeUser } from '~/types';
|
|
|
|
definePageMeta({
|
|
middleware: 'auth'
|
|
});
|
|
|
|
export default {
|
|
async setup() {
|
|
const route = useRoute();
|
|
|
|
if (useDmStore().dms.find((e) => { return e.id === route.params.dmId; } ) == undefined) navigateTo('/');
|
|
if (useActiveStore().server.channel.id !== route.params.dmId) {
|
|
const headers = useRequestHeaders(['cookie']) as Record<string, string>;
|
|
const dm: IChannel = await $fetch(`/api/channels/${route.params.dmId}`, { headers });
|
|
|
|
if (!dm) throw new Error('couldnt find dm.');
|
|
useDmStore().addDM(dm);
|
|
|
|
if (typeof route.params.dmId !== 'string') throw new Error('route.params.dmId must be a string, but got an array presumably?');
|
|
useActiveStore().setActiveDM(dm);
|
|
useEmojiPickerStore().closeEmojiPicker();
|
|
}
|
|
|
|
const participants: SafeUser[] | undefined = useActiveStore().dm.dmParticipants;
|
|
|
|
if (!participants) throw new Error('no one is in this dm?');
|
|
|
|
const channel = useActiveStore().dm;
|
|
|
|
channel.messages?.forEach((e: IMessage) => {
|
|
e.body = parseMessageBody(e.body, participants);
|
|
});
|
|
|
|
const friend = participants.find((e) => e.id !== useUserStore().user?.id)?.username;
|
|
|
|
useHeadSafe({
|
|
title: `@${friend} - Blop`
|
|
});
|
|
|
|
return {
|
|
channel,
|
|
participants
|
|
};
|
|
},
|
|
data() {
|
|
return {
|
|
// socket: storeToRefs(useGlobalStore()).socket as unknown as Server,
|
|
emojiPickerData: storeToRefs(useEmojiPickerStore()).emojiPickerData,
|
|
emojiPickerStyles: {
|
|
top: storeToRefs(useEmojiPickerStore()).emojiPickerData.value.top + 'px',
|
|
right: storeToRefs(useEmojiPickerStore()).emojiPickerData.value.right + 'px',
|
|
}
|
|
};
|
|
},
|
|
methods: {
|
|
pickedEmoji(emoji: string) {
|
|
const { $emit } = useNuxtApp();
|
|
$emit('pickedEmoji', emoji);
|
|
useEmojiPickerStore().closeEmojiPicker();
|
|
},
|
|
}
|
|
};
|
|
</script> |