2024-09-25 17:19:02 -05:00
|
|
|
import React, { useEffect } from 'react';
|
2024-09-01 20:29:33 -05:00
|
|
|
import { ProgressSpinner } from 'primereact/progressspinner';
|
2024-09-02 13:50:07 -05:00
|
|
|
import { useQuery } from '@tanstack/react-query';
|
|
|
|
import axios from 'axios';
|
2024-09-10 15:44:08 -05:00
|
|
|
import CommunityMessage from '@/components/feeds/messages/CommunityMessage';
|
|
|
|
import useWindowWidth from '@/hooks/useWindowWidth';
|
2024-09-01 22:16:44 -05:00
|
|
|
|
2024-09-02 16:24:18 -05:00
|
|
|
const StackerNewsIconComponent = () => (
|
2024-09-10 15:44:08 -05:00
|
|
|
<svg width="16" height="16" className='mr-2' viewBox="0 0 256 256" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
|
|
<path fill="#facc15" fillRule="evenodd" d="m41.7 91.4 41.644 59.22-78.966 69.228L129.25 155.94l-44.083-58.14 54.353-65.441Z"/>
|
|
|
|
<path fill="#facc15" fillRule="evenodd" d="m208.355 136.74-54.358-64.36-38.4 128.449 48.675-74.094 64.36 65.175L251.54 42.497Z"/>
|
|
|
|
</svg>
|
2024-09-02 16:24:18 -05:00
|
|
|
);
|
|
|
|
|
2024-09-02 13:50:07 -05:00
|
|
|
const fetchStackerNews = async () => {
|
2024-09-10 15:44:08 -05:00
|
|
|
const response = await axios.get('/api/stackernews');
|
|
|
|
return response.data.data.items.items;
|
2024-09-02 13:50:07 -05:00
|
|
|
};
|
2024-09-01 20:29:33 -05:00
|
|
|
|
2024-09-09 15:56:51 -05:00
|
|
|
const StackerNewsFeed = ({ searchQuery }) => {
|
2024-09-10 15:44:08 -05:00
|
|
|
const { data: items, isLoading, error } = useQuery({queryKey: ['stackerNews'], queryFn: fetchStackerNews});
|
|
|
|
const windowWidth = useWindowWidth();
|
2024-09-01 20:29:33 -05:00
|
|
|
|
2024-09-10 15:44:08 -05:00
|
|
|
if (isLoading) {
|
|
|
|
return (
|
|
|
|
<div className="h-[100vh] min-bottom-bar:w-[86vw] max-sidebar:w-[100vw]">
|
|
|
|
<ProgressSpinner className='w-full mt-24 mx-auto' />
|
|
|
|
</div>
|
|
|
|
);
|
|
|
|
}
|
2024-09-02 16:24:18 -05:00
|
|
|
|
2024-09-10 15:44:08 -05:00
|
|
|
if (error) {
|
|
|
|
console.error('Error fetching Stacker News:', error);
|
|
|
|
return <div className="text-red-500 text-center p-4">Error loading data. Please try again later.</div>;
|
|
|
|
}
|
2024-09-01 20:29:33 -05:00
|
|
|
|
2024-09-25 17:19:02 -05:00
|
|
|
const filteredItems = items
|
|
|
|
.filter(item =>
|
2025-03-26 13:17:44 -05:00
|
|
|
searchQuery ? item.title.toLowerCase().includes(searchQuery.toLowerCase()) : true
|
2024-09-25 17:19:02 -05:00
|
|
|
)
|
|
|
|
.sort((a, b) => new Date(b.createdAt) - new Date(a.createdAt));
|
2024-09-01 20:29:33 -05:00
|
|
|
|
2024-09-10 15:44:08 -05:00
|
|
|
return (
|
2025-03-26 13:17:44 -05:00
|
|
|
<div className="h-full w-full">
|
|
|
|
<div className="mx-0 mt-4">
|
2024-09-10 15:44:08 -05:00
|
|
|
{filteredItems && filteredItems.length > 0 ? (
|
|
|
|
filteredItems.map(item => (
|
|
|
|
<CommunityMessage
|
|
|
|
key={item.id}
|
|
|
|
message={{
|
|
|
|
id: item.id,
|
|
|
|
author: item.user.name,
|
2024-09-25 17:19:02 -05:00
|
|
|
avatar: "https://pbs.twimg.com/profile_images/1403162883941359619/oca7LMQ2_400x400.png",
|
2024-09-10 15:44:08 -05:00
|
|
|
content: item.title,
|
|
|
|
timestamp: item.createdAt,
|
|
|
|
channel: "~devs",
|
2025-02-03 17:07:54 -06:00
|
|
|
additionalContent: `Sats: ${item.sats}`
|
2024-09-10 15:44:08 -05:00
|
|
|
}}
|
|
|
|
searchQuery={searchQuery}
|
|
|
|
windowWidth={windowWidth}
|
|
|
|
platform="stackernews"
|
|
|
|
platformIcon={<StackerNewsIconComponent />}
|
|
|
|
platformLink={`https://stacker.news/items/${item.id}`}
|
|
|
|
/>
|
|
|
|
))
|
|
|
|
) : (
|
|
|
|
<div className="text-gray-400 text-center p-4">No items available.</div>
|
|
|
|
)}
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
);
|
2024-09-01 20:29:33 -05:00
|
|
|
};
|
|
|
|
|
2024-09-02 12:41:26 -05:00
|
|
|
export default StackerNewsFeed;
|