import classNames from "classnames";
import { ReactNode, useEffect, useState } from "react";
import { Link } from "react-router-dom"; // Import Link from react-router-dom
import { ThiccContainer } from "@/components/layout/ThinContainer";
import { Divider } from "@/components/utils/Divider";
import { Heading1, Paragraph } from "@/components/utils/Text";
import { SubPageLayout } from "./layouts/SubPageLayout";
// import { MediaGrid } from "@/components/media/MediaGrid"
// import { TopFlixCard } from "@/components/media/FlixCard";
function Button(props: {
className: string;
onClick?: () => void;
children: React.ReactNode;
disabled?: boolean;
}) {
return (
);
}
function isShowOrMovie(tmdbFullId: string): "series" | "movie" | "unknown" {
if (tmdbFullId.includes("show-")) {
return "series";
}
if (tmdbFullId.includes("movie-")) {
return "movie";
}
return "unknown";
}
function directLinkToContent(tmdbFullId: string) {
if (isShowOrMovie(tmdbFullId) === "series") {
return `/media/tmdb-tv-${
tmdbFullId.split("-")[1]
}#/media/tmdb-tv-${
tmdbFullId.split("-")[1]
}`;
}
if (isShowOrMovie(tmdbFullId) === "movie") {
return `/media/tmdb-movie-${
tmdbFullId.split("-")[1]
}#/media/tmdb-movie-${
tmdbFullId.split("-")[1]
}`;
}
return null;
}
function ConfigValue(props: {
name: string;
id: string;
children?: ReactNode;
}) {
const link = directLinkToContent(props.id);
return (
<>
{link ? (
{props.name}
) : (
{props.name}
)}
{props.children}
>
);
}
async function getRecentPlayedItems() {
const response = await fetch("https://backend.sudo-flix.lol/metrics");
const text = await response.text();
const regex =
/mw_media_watch_count{tmdb_full_id="([^"]+)",provider_id="([^"]+)",title="([^"]+)",success="([^"]+)"} (\d+)/g;
let match;
const loop = true;
const items: { [key: string]: any } = {};
while (loop) {
match = regex.exec(text);
if (match === null) break;
const [_, tmdbFullId, providerId, title, success, count] = match;
if (items[tmdbFullId]) {
items[tmdbFullId].count += parseInt(count, 10);
} else {
items[tmdbFullId] = {
tmdbFullId,
providerId,
title,
success: success === "true",
count: parseInt(count, 10),
};
}
}
if (Object.keys(items).length > 0) {
return Object.values(items);
}
throw new Error("RECENT_PLAYED_ITEMS not found");
}
async function getTotalViews() {
const response = await fetch("https://backend.sudo-flix.lol/metrics");
const text = await response.text();
// Add up all mw_media_watch_count entries
const regex = /mw_media_watch_count{[^}]*} (\d+)/g;
let totalViews = 0;
let match = regex.exec(text);
while (match !== null) {
totalViews += parseInt(match[1], 10);
match = regex.exec(text);
}
if (totalViews > 0) {
return totalViews.toString();
}
throw new Error("TOTAL_VIEWS not found");
}
export function TopFlix() {
const [recentPlayedItems, setRecentPlayedItems] = useState([]);
const [totalViews, setTotalViews] = useState(null);
const [loading, setLoading] = useState(true);
const [currentPage, setCurrentPage] = useState(1);
const itemsPerPage = 10;
const maxItemsToShow = 100; // Maximum items to show
const maxPageCount = Math.ceil(maxItemsToShow / itemsPerPage); // Calculate max page count based on maxItemsToShow
useEffect(() => {
getRecentPlayedItems()
.then((items) => {
// Limit the items to the first 100 to ensure we don't exceed the max page count
const limitedItems = items
.slice(0, maxItemsToShow)
.filter(
(item, index, self) =>
index ===
self.findIndex((t2) => t2.tmdbFullId === item.tmdbFullId),
);
setRecentPlayedItems(limitedItems);
})
.catch((error) => {
console.error("Error fetching recent played items:", error);
})
.finally(() => {
setLoading(false);
});
getTotalViews()
.then((views) => {
setTotalViews(views);
})
.catch((error) => {
console.error("Error fetching total views:", error);
});
}, []);
function getItemsForCurrentPage() {
const sortedItems = recentPlayedItems.sort((a, b) => b.count - a.count);
const startIndex = (currentPage - 1) * itemsPerPage;
const endIndex = startIndex + itemsPerPage;
return sortedItems.slice(startIndex, endIndex);
}
if (loading) {
return (
Loading...
);
}
return (
Top flix
The most popular movies on sudo-flix.lol, this data is fetched from
the current backend deployment.
Overall Views: {totalViews}
{getItemsForCurrentPage().map((item) => {
return (
{`${item.providerId}, ${isShowOrMovie(
item.tmdbFullId,
)} - Views: `}
{item.count}
);
})}
{currentPage} / {maxPageCount}
);
}