react_template/src/containers/home/index.tsx
2021-05-31 09:42:54 +02:00

55 lines
1.5 KiB
TypeScript

import React, { ChangeEvent, FormEvent, useState } from 'react';
import TodoList from './TodoList';
import { Button } from '../../components/button';
import { Container } from '../../components/container';
import { useCreateTodo } from '../../core/services/createTodo';
import { useListTodos } from '../../core/services/listTodo';
export const Home = () => {
const [todoTitle, setTodoTitle] = useState<string>('');
const { loading, error, data } = useListTodos();
const { createTodo } = useCreateTodo(todoTitle);
const handleChange = (e: ChangeEvent<HTMLInputElement>) => {
setTodoTitle(() => e.target.value);
};
const handleSubmit = (e: FormEvent<HTMLFormElement>) => {
e.preventDefault();
createTodo();
};
return (
<Container>
<h1>Your tasks</h1>
<p>Hi there!</p>
{error ? (
<h3>{error.message}. Sorry...</h3>
) : (
!loading &&
!!data && (
<>
<TodoList todos={data.listTodos.todos} />
<form onSubmit={handleSubmit}>
<input type="text" value={todoTitle} onChange={handleChange} />
<Button
primary={false}
onClick={() => console.log('Clicked Normal Button')}
>
Normal Button
</Button>
<Button
primary
onClick={() => console.log('Clicked Primary Button')}
>
Primary Button
</Button>
</form>
</>
)
)}
</Container>
);
};