From b06cf01e232e797abceabba08aec2c0752db95ad Mon Sep 17 00:00:00 2001 From: Biswakalyan Bhuyan Date: Thu, 27 Jun 2024 21:49:37 +0530 Subject: update --- client/src/App.css | 39 +++++++++++++++---------------------- client/src/App.js | 57 +++++++++++++++++++++++++++++++++++++++++------------- 2 files changed, 60 insertions(+), 36 deletions(-) (limited to 'client/src') diff --git a/client/src/App.css b/client/src/App.css index 74b5e05..f27a513 100644 --- a/client/src/App.css +++ b/client/src/App.css @@ -2,37 +2,30 @@ text-align: center; } -.App-logo { - height: 40vmin; - pointer-events: none; +.App-header { + background-color: #282c34; + padding: 20px; + color: white; } -@media (prefers-reduced-motion: no-preference) { - .App-logo { - animation: App-logo-spin infinite 20s linear; - } +.App-title { + font-size: 1.5rem; /* Smaller heading */ } -.App-header { - background-color: #282c34; - min-height: 100vh; +.downloaded-content { display: flex; - flex-direction: column; - align-items: center; + flex-wrap: wrap; justify-content: center; - font-size: calc(10px + 2vmin); - color: white; } -.App-link { - color: #61dafb; +.file-item { + margin: 10px; } -@keyframes App-logo-spin { - from { - transform: rotate(0deg); - } - to { - transform: rotate(360deg); - } +video, img { + max-width: 300px; + max-height: 300px; + border: 1px solid #ddd; + border-radius: 4px; + padding: 5px; } diff --git a/client/src/App.js b/client/src/App.js index 3784575..eaeca2c 100644 --- a/client/src/App.js +++ b/client/src/App.js @@ -1,22 +1,53 @@ -import logo from './logo.svg'; +import React, { useEffect, useState } from 'react'; +import axios from 'axios'; import './App.css'; function App() { + const [downloadedFiles, setDownloadedFiles] = useState([]); + + useEffect(() => { + fetchDownloadedFiles(); + const interval = setInterval(() => { + fetchDownloadedFiles(); + }, 60000); // Fetch new content every minute + return () => clearInterval(interval); + }, []); + + const fetchDownloadedFiles = async () => { + try { + const response = await axios.get('http://localhost:5001/downloads'); + setDownloadedFiles(response.data); + } catch (error) { + console.error('Error fetching downloaded files:', error); + } + }; + return (
- logo -

- Edit src/App.js and save to reload. -

- - Learn React - +

Insta Local

+
+ {downloadedFiles.length === 0 ? ( +

No content available

+ ) : ( + downloadedFiles.map((file, index) => { + const fileUrl = `http://localhost:5001/static/${file}`; + console.log('Fetching file:', fileUrl); // Log the file URL + return ( +
+ {file.endsWith('.mp4') ? ( + + ) : ( + {file} + )} +
+ ); + }) + )} +
); -- cgit v1.2.3-59-g8ed1b