From 842d239f40310923cb8d9f53e80167dca0aebff9 Mon Sep 17 00:00:00 2001 From: Yuval Adam <_@yuv.al> Date: Mon, 29 Aug 2022 11:14:58 +0300 Subject: Fix types in Geshem --- src/Geshem.tsx | 32 ++++++++++++++++++-------------- 1 file changed, 18 insertions(+), 14 deletions(-) (limited to 'src') diff --git a/src/Geshem.tsx b/src/Geshem.tsx index 1eecdd0..5fda053 100644 --- a/src/Geshem.tsx +++ b/src/Geshem.tsx @@ -1,5 +1,5 @@ import React, { useState, useEffect } from "react"; -import { BrowserRouter as Router, Route } from "react-router-dom"; +import { BrowserRouter, Route } from "react-router-dom"; import Map from "./Map"; import Slider from "./Slider"; @@ -12,18 +12,22 @@ import "rc-slider/assets/index.css"; function App() { return ( - - - - + + } /> + } /> + ); } -function Geshem(props) { - const [images, setImages] = useState([]); +interface GeshemProps { + date?: string +} + +function Geshem({ date }: GeshemProps) { + const [images, setImages] = useState([]); const [playback] = useState( - props.match.params.date || - new URL(window.location).searchParams.get("history") || + date || + new URL(window.location.toString()).searchParams.get("history") || false ); const [slider, setSlider] = useState(playback ? 143 : 9); @@ -37,13 +41,13 @@ function Geshem(props) { const buildPlayback = async () => { const date = playback; - const hours = [...Array(24).keys()].map( + const hours = Array.from(Array(24).keys()).map( h => `${String(h).padStart(2, "0")}` ); - const minutes = [...Array(6).keys()].map( + const minutes = Array.from(Array(6).keys()).map( m => `${String(m * 10).padStart(2, "0")}` ); - const paths = hours.reduce( + const paths = hours.reduce( (acc, h) => acc.concat(minutes.map(m => `imgs/${date}/${h}${m}/280.png`)), [] @@ -51,11 +55,11 @@ function Geshem(props) { setImages(paths); }; - let timer; + let timer: number; if (playback) buildPlayback(); else { fetchImages(); - timer = setInterval(fetchImages, 60 * 1000); + timer = window.setInterval(fetchImages, 60 * 1000); } return () => { -- cgit v1.3.1