From 0c7c2c8b5033cceb064a34cbb640d1272fff8ed8 Mon Sep 17 00:00:00 2001 From: eug-vs Date: Sat, 11 Jun 2022 13:59:34 +0300 Subject: feat: use table for solutions representation --- src/index.tsx | 31 ++++++++++++++++++++----------- 1 file changed, 20 insertions(+), 11 deletions(-) (limited to 'src/index.tsx') diff --git a/src/index.tsx b/src/index.tsx index 1bdd41a..ce6a9d4 100644 --- a/src/index.tsx +++ b/src/index.tsx @@ -1,4 +1,4 @@ -import React, { useState } from 'react'; +import React from 'react'; import ReactDOM from 'react-dom'; import './style.css'; import './fonts/Bitter-Regular.woff'; @@ -8,18 +8,19 @@ import Timer from './components/Timer'; interface Solution { result: string; - author: string; + timestamp: string; + author?: string; } const App: React.FC = () => { - const [author, setAuthor] = useState('anonymous'); + const [author, setAuthor] = useLocalStorage('author', 'anonymous'); const [solutions, setSolutions] = useLocalStorage('solutions', []); const registerResult = (result: string) => { - setSolutions([{ author, result }, ...solutions]); + setSolutions([{ author, result, timestamp: new Date().toISOString() }, ...solutions]); } - const handleRemoveSolution = (index: number) => { + const removeSolution = (index: number) => { setSolutions(solutions.filter((_, i) => i !== index)); } @@ -29,14 +30,22 @@ const App: React.FC = () => {

Results

-
    + + + + + + + {solutions.map((solution, index) => ( -
  • - {solution.result} by {solution.author}   - -
  • + + + + + + ))} - +
    AuthorResultTimestampActions
    {solution.author}{solution.result}{new Date(solution.timestamp).toLocaleString()}
    ); }; -- cgit v1.2.3