2024-09-01 22:16:44 -05:00
|
|
|
import React, { useState, useEffect } from 'react';
|
2024-09-01 20:29:33 -05:00
|
|
|
import { Card } from 'primereact/card';
|
|
|
|
import { Avatar } from 'primereact/avatar';
|
|
|
|
import { Tag } from 'primereact/tag';
|
|
|
|
import { Button } from 'primereact/button';
|
|
|
|
import { ProgressSpinner } from 'primereact/progressspinner';
|
2024-09-02 12:09:27 -05:00
|
|
|
import { useDiscordQuery } from '@/hooks/communityQueries/useDiscordQuery';
|
|
|
|
import { useRouter } from 'next/router';
|
2024-09-01 22:16:44 -05:00
|
|
|
|
2024-09-02 12:09:27 -05:00
|
|
|
const GlobalFeed = () => {
|
|
|
|
const router = useRouter();
|
|
|
|
const { data, error, isLoading } = useDiscordQuery({page: router.query.page});
|
|
|
|
|
2024-09-01 20:29:33 -05:00
|
|
|
if (isLoading) {
|
2024-09-02 12:09:27 -05:00
|
|
|
return (
|
|
|
|
<div className="h-[100vh] min-bottom-bar:w-[87vw] max-sidebar:w-[100vw]">
|
|
|
|
<ProgressSpinner className='w-full mt-24 mx-auto' />
|
|
|
|
</div>
|
|
|
|
);
|
2024-09-01 20:29:33 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
if (error) {
|
|
|
|
return <div className="text-red-500 text-center p-4">Failed to load messages. Please try again later.</div>;
|
|
|
|
}
|
|
|
|
|
|
|
|
const header = (message) => (
|
|
|
|
<div className="flex flex-row w-full items-center justify-between p-4 bg-gray-800 rounded-t-lg">
|
|
|
|
<div className="flex flex-row items-center">
|
|
|
|
<Avatar image={message.avatar} shape="circle" size="large" className="border-2 border-blue-400" />
|
|
|
|
<p className="pl-4 font-bold text-xl text-white">{message.author}</p>
|
|
|
|
</div>
|
|
|
|
<div className="flex flex-col items-start justify-between">
|
2024-09-02 12:41:26 -05:00
|
|
|
<div className="flex flex-row w-full justify-between items-center my-1 max-sidebar:flex-col max-sidebar:items-start">
|
|
|
|
<Tag value={message.channel} severity="primary" className="w-fit text-[#f8f8ff] bg-gray-600 mr-2 max-sidebar:mr-0" />
|
|
|
|
<Tag icon="pi pi-discord" value="discord" className="w-fit text-[#f8f8ff] bg-blue-400 max-sidebar:mt-1" />
|
2024-09-01 20:29:33 -05:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
);
|
|
|
|
|
|
|
|
const footer = (message) => (
|
|
|
|
<div className="w-full flex justify-between items-center">
|
|
|
|
<span className="bg-gray-800 rounded-lg p-2 text-sm text-gray-300">
|
|
|
|
{new Date(message.timestamp).toLocaleString()}
|
|
|
|
</span>
|
|
|
|
<Button
|
2024-09-01 22:16:44 -05:00
|
|
|
label="View in Discord"
|
|
|
|
icon="pi pi-external-link"
|
|
|
|
outlined
|
|
|
|
size="small"
|
|
|
|
className='my-2'
|
|
|
|
onClick={() => window.open(`https://discord.com/channels/${message.channelId}/${message.id}`, '_blank')}
|
|
|
|
/>
|
2024-09-01 20:29:33 -05:00
|
|
|
</div>
|
|
|
|
);
|
|
|
|
|
|
|
|
return (
|
2024-09-01 22:16:44 -05:00
|
|
|
<div className="bg-gray-900 h-full w-full min-bottom-bar:w-[87vw]">
|
2024-09-02 09:49:17 -05:00
|
|
|
<div className="mx-4 mt-4">
|
2024-09-02 10:51:46 -05:00
|
|
|
{data && data.length > 0 ? (
|
|
|
|
data.map(message => (
|
|
|
|
<Card
|
|
|
|
key={message.id}
|
|
|
|
header={() => header(message)}
|
|
|
|
footer={() => footer(message)}
|
|
|
|
className="w-full bg-gray-700 shadow-lg hover:shadow-xl transition-shadow duration-300 mb-4"
|
|
|
|
>
|
|
|
|
<p className="m-0 text-lg text-gray-200">{message.content}</p>
|
|
|
|
</Card>
|
|
|
|
))
|
|
|
|
) : (
|
|
|
|
<div className="text-gray-400 text-center p-4">No messages available.</div>
|
|
|
|
)}
|
2024-09-02 09:49:17 -05:00
|
|
|
</div>
|
2024-09-01 20:29:33 -05:00
|
|
|
</div>
|
|
|
|
);
|
|
|
|
};
|
|
|
|
|
2024-09-02 12:09:27 -05:00
|
|
|
export default GlobalFeed;
|