Segui todos os passos e o vsCode acusou o seguinte erro no Formulário => Type '{ tarefa: string; tempo: string; }' is missing the following properties from type 'ITarefa': selecionado, completado, id
state: ITarefa = {
tarefa: "",
tempo: "00:00"
}
Adicionei as propriedades faltando e gostaria de entender o porque esse mesmo erro não aconteceu com o do professor e o que pode estar errado. Também se minha resolução está certa ou se no id eu deveria colocar id: "" Segue abaixo como ficou o código
import React, {useState} from "react";
import { ITarefa } from "../../Types/tarefa";
import Botao from "../Botao";
import style from './Formulario.module.scss';
import { v4 as uuidv4 } from "uuid";
class Formulario extends React.Component <{
setTarefas: React.Dispatch<React.SetStateAction<ITarefa[]>>
}> {
state: ITarefa = {
tarefa: "",
tempo: "00:00",
selecionado: false,
completado: false,
id: uuidv4()
}
addTarefa(evento: React.FormEvent<HTMLFormElement>){
evento.preventDefault();
this.props.setTarefas(tarefasAntigas =>
[
...tarefasAntigas,
{
...this.state,
selecionado: false,
completado: false,
id: uuidv4()
}
]
);
this.setState({
tarefa: "",
tempo: "00:00"
})
}
render(){
return (
<form className={style.novaTarefa} onSubmit={this.addTarefa.bind(this)}>
<div className={style.inputContainer}>
<label htmlFor="tarefa">
Adicione um novo estudo
</label>
<input
type="text"
name="tarefa"
value={this.state.tarefa}
onChange={evento => this.setState({...this.state, tarefa: evento.target.value})}
id="tarefa"
placeholder="O que você quer estudar" required
/>
</div>
<div className={style.inputContainer}>
<label htmlFor="tempo">
Tempo
</label>
<input
type="time"
step="1"
name="tempo"
value={this.state.tempo}
onChange={evento => this.setState({ ...this.state, tempo: evento.target.value })}
id="tempo"
min="00:00:00"
max="01:30:00"
/>
</div>
<Botao type="submit">
Adicionar
</Botao>
</form>
)
}
}
export default Formulario;