From a4f66ba3214442683fa60ba3e9b39f0546afe85b Mon Sep 17 00:00:00 2001 From: Chris-1010 <122332721@umail.ucc.ie> Date: Tue, 28 Jan 2025 21:06:23 +0000 Subject: [PATCH] Feat: Update to VideoPage to display stream data; --- frontend/index.html | 2 +- frontend/src/components/Layout/BaseLayout.tsx | 24 ----- frontend/src/components/Layout/ListRow.tsx | 87 +++++++++++++++++++ .../src/components/Layout/StreamListRow.tsx | 79 ----------------- .../src/components/Stream/StreamerRoute.tsx | 5 +- frontend/src/context/StreamsContext.tsx | 45 ++++++++-- frontend/src/pages/HomePage.tsx | 20 ++--- frontend/src/pages/UserPage.tsx | 13 ++- frontend/src/pages/VideoPage.tsx | 63 ++++++++++---- web_server/blueprints/streams.py | 9 +- web_server/database/testing_data.sql | 13 ++- web_server/database/users.sql | 10 +-- 12 files changed, 215 insertions(+), 155 deletions(-) delete mode 100644 frontend/src/components/Layout/BaseLayout.tsx create mode 100644 frontend/src/components/Layout/ListRow.tsx delete mode 100644 frontend/src/components/Layout/StreamListRow.tsx diff --git a/frontend/index.html b/frontend/index.html index 113daa2..8a2e42c 100644 --- a/frontend/index.html +++ b/frontend/index.html @@ -7,7 +7,7 @@