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-01 22:16:44 -05:00
|
|
|
import { InputText } from 'primereact/inputtext';
|
2024-09-02 12:09:27 -05:00
|
|
|
import { useDiscordQuery } from '@/hooks/communityQueries/useDiscordQuery';
|
|
|
|
import { useRouter } from 'next/router';
|
|
|
|
import CommunityMenuTab from '@/components/menutab/CommunityMenuTab';
|
2024-09-01 22:16:44 -05:00
|
|
|
|
2024-09-02 12:09:27 -05:00
|
|
|
const GlobalFeed = () => {
|
2024-09-01 22:16:44 -05:00
|
|
|
const [selectedTopic, setSelectedTopic] = useState('global');
|
|
|
|
const [searchQuery, setSearchQuery] = useState('');
|
|
|
|
const allTopics = ['global', 'nostr', 'discord', 'stackernews'];
|
|
|
|
|
2024-09-02 12:09:27 -05:00
|
|
|
const router = useRouter();
|
|
|
|
const { data, error, isLoading } = useDiscordQuery({page: router.query.page});
|
|
|
|
|
2024-09-01 22:16:44 -05:00
|
|
|
const handleTopicChange = (topic) => {
|
|
|
|
setSelectedTopic(topic);
|
|
|
|
};
|
|
|
|
|
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">
|
|
|
|
<div className="flex flex-row w-full justify-between items-center my-1">
|
|
|
|
<Tag value={message.channel} severity="primary" className="w-fit text-[#f8f8ff] bg-gray-600 mr-2" />
|
|
|
|
<Tag icon="pi pi-discord" value="discord" className="w-fit text-[#f8f8ff] bg-blue-400" />
|
|
|
|
</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]">
|
|
|
|
<div className="w-fit mx-4 pt-4 flex flex-col items-start">
|
|
|
|
<h1 className="text-3xl font-bold mb-4 ml-1">Community</h1>
|
|
|
|
<InputText
|
|
|
|
value={searchQuery}
|
|
|
|
onChange={(e) => setSearchQuery(e.target.value)}
|
|
|
|
placeholder="Search"
|
|
|
|
icon="pi pi-search"
|
|
|
|
className="w-full mb-2"
|
|
|
|
/>
|
|
|
|
</div>
|
|
|
|
<div className="min-bottom-bar:hidden">
|
2024-09-02 12:09:27 -05:00
|
|
|
<CommunityMenuTab
|
2024-09-01 22:16:44 -05:00
|
|
|
items={allTopics}
|
|
|
|
selectedTopic={selectedTopic}
|
|
|
|
onTabChange={handleTopicChange}
|
|
|
|
className="max-w-[90%] mx-auto"
|
|
|
|
/>
|
|
|
|
</div>
|
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;
|