-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
103 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,103 @@ | ||
import React, { useState, useEffect } from 'react'; | ||
import { FaList, FaEye, FaSpinner, FaExclamationCircle } from 'react-icons/fa'; | ||
// import 'tailwindcss/tailwind.css'; | ||
|
||
function ScenesList() { | ||
const [scenes, setScenes] = useState([]); | ||
const [selectedScene, setSelectedScene] = useState(null); | ||
const [loading, setLoading] = useState(false); | ||
const [error, setError] = useState(null); | ||
|
||
useEffect(() => { | ||
const fetchScenes = async () => { | ||
try { | ||
const response = await fetch('http://127.0.0.1:8001/scenes/'); | ||
if (!response.ok) throw new Error('Error fetching scenes'); | ||
const data = await response.json(); | ||
setScenes(data); | ||
} catch (err) { | ||
setError(err.message); | ||
} | ||
}; | ||
|
||
fetchScenes(); | ||
}, []); | ||
|
||
const handleSceneClick = async (sceneId) => { | ||
setLoading(true); | ||
setError(null); | ||
|
||
try { | ||
const response = await fetch(`http://127.0.0.1:8001/scenes/${sceneId}`); | ||
if (!response.ok) throw new Error('Error fetching scene details'); | ||
const data = await response.json(); | ||
setSelectedScene(data); | ||
} catch (err) { | ||
setError(err.message); | ||
} finally { | ||
setLoading(false); | ||
} | ||
}; | ||
|
||
return ( | ||
<div className="container mx-auto p-4"> | ||
<h1 className="text-2xl font-bold mb-4 flex items-center"> | ||
<FaList className="mr-2" /> Scenes List | ||
</h1> | ||
|
||
{error && ( | ||
<div className="alert alert-error bg-red-100 border-l-4 border-red-500 text-red-700 p-4" role="alert"> | ||
<FaExclamationCircle className="mr-2" /> | ||
<span>{error}</span> | ||
</div> | ||
)} | ||
|
||
<ul className="space-y-4"> | ||
{scenes.map((scene) => ( | ||
<li key={scene.id} className="bg-gray-800 shadow-md rounded-lg p-4 hover:bg-gray-100 transition duration-200"> | ||
<button | ||
onClick={() => handleSceneClick(scene.id)} | ||
className="flex items-center w-full text-left focus:outline-none" | ||
> | ||
<FaEye className="text-blue-500 mr-2" /> | ||
<span>Scene {scene.id}: {scene.start_date} to {scene.end_date}</span> | ||
</button> | ||
</li> | ||
))} | ||
</ul> | ||
|
||
{loading && ( | ||
<div className="flex justify-center items-center mt-4"> | ||
<FaSpinner className="animate-spin text-blue-500 text-2xl" /> | ||
<span className="ml-2">Loading scene details...</span> | ||
</div> | ||
)} | ||
|
||
{selectedScene && ( | ||
<div className="mt-8 bg-gray-700 shadow-md rounded-lg p-6"> | ||
<h2 className="text-xl font-semibold mb-4">Scene Details</h2> | ||
<div className="grid grid-cols-2 gap-4"> | ||
<div> | ||
<p><strong>Period:</strong> {selectedScene.period}</p> | ||
<p><strong>Indicator:</strong> {selectedScene.indicator.name}</p> | ||
<p><strong>Stock:</strong> {selectedScene.stock.name}</p> | ||
</div> | ||
</div> | ||
|
||
<h3 className="text-lg font-semibold mt-6">Backtests</h3> | ||
<ul className="space-y-4"> | ||
{selectedScene.backtests.map((backtest) => ( | ||
<li key={backtest.id} className="bg-gray-600 p-4 rounded-lg shadow-md"> | ||
<p><strong>Initial Cash:</strong> ${backtest.initial_cash.toFixed(2)}</p> | ||
<p><strong>Final Value:</strong> ${backtest.final_value.toFixed(2)}</p> | ||
<p><strong>Max Drawdown:</strong> {backtest.max_drawdown?.toFixed(2)}%</p> | ||
</li> | ||
))} | ||
</ul> | ||
</div> | ||
)} | ||
</div> | ||
); | ||
} | ||
|
||
export default ScenesList; |