aboutsummaryrefslogtreecommitdiffstats
path: root/src/app/_componenets/SubscriberTable/SubscriberTable.tsx
diff options
context:
space:
mode:
authorPinapelz <yukais@pinapelz.com>2023-11-18 21:21:22 -0800
committerPinapelz <yukais@pinapelz.com>2023-11-18 21:21:22 -0800
commitadc88dbdf3274d4d0cf15b5f2cf7b0bbb939bfe0 (patch)
tree96089396e548f3f57121674362b6170c7b76693b /src/app/_componenets/SubscriberTable/SubscriberTable.tsx
parent96019367e8f72eac26abd3b7a908c2b914bd1ae1 (diff)
v3: re-write frontend using next js
Diffstat (limited to 'src/app/_componenets/SubscriberTable/SubscriberTable.tsx')
-rw-r--r--src/app/_componenets/SubscriberTable/SubscriberTable.tsx67
1 files changed, 67 insertions, 0 deletions
diff --git a/src/app/_componenets/SubscriberTable/SubscriberTable.tsx b/src/app/_componenets/SubscriberTable/SubscriberTable.tsx
new file mode 100644
index 0000000..a538bdd
--- /dev/null
+++ b/src/app/_componenets/SubscriberTable/SubscriberTable.tsx
@@ -0,0 +1,67 @@
+import React from "react";
+import Image from "next/image";
+import ChannelRow from "./SubscriberTableRow";
+
+interface ChannelDataProp {
+ channel_name: string;
+ profile_pic: string;
+ subscribers: number;
+ sub_org: string;
+ video_count: number;
+ day_diff: number;
+}
+
+interface SubscriberDataTableProp {
+ channel_data: ChannelDataProp[];
+ timestamp: string;
+}
+
+const DataTable = ({ channel_data, timestamp }: SubscriberDataTableProp) => {
+ if (!channel_data) {
+ return null;
+ }
+
+return (
+ <>
+ <div className="text-center sm:mt-5">
+ <h1 className="text-2xl font-bold text-gray-800">Subscriber Count</h1>
+ <p className="text-gray-500 text-sm">Last Updated: {timestamp}</p>
+ </div>
+ <div className="px-2 sm:px-48 py-4 sm:py-8 relative shadow-md rounded-l text-left overflow-auto">
+ <table className="w-full text-m sm:text-xl text-black bg-white">
+ <thead className="text-m sm:text-lg text-white" style={{ backgroundColor: '#2D4B71' }}>
+ <tr>
+ <th scope="col" className="py-1 px-1 sm:px-3 hidden sm:table-cell">
+ RANK
+ </th>
+ <th scope="col" className="py-1 px-1 sm:px-3">
+ CHANNEL
+ </th>
+ <th scope="col" className="py-1 px-1 sm:px-3 hidden sm:table-cell">
+ GROUP
+ </th>
+ <th scope="col" className="py-1 px-1 sm:px-3 hidden sm:table-cell">
+ VIDEO COUNT
+ </th>
+ <th scope="col" className="py-1 px-1 sm:px-3">
+ SUBSCRIBERS
+ </th>
+ <th scope="col" className="py-1 px-1 sm:px-3">
+ DIFF (24H)
+ </th>
+ </tr>
+ </thead>
+ <tbody>
+ {channel_data.map((channel, index) => (
+ <ChannelRow key={index} channel={channel} index={index} />
+ ))}
+ </tbody>
+ </table>
+ </div>
+ </>
+);
+};
+
+export default DataTable;
+export type { SubscriberDataTableProp };
+export type { ChannelDataProp };
send patches to the email below
yukais@pinapelz.com
include the subject [PATCH repo_name]
pinapelz.com
homepage