You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

84 lines
2.0 KiB

import React from 'react';
import logo from './logo.svg';
import './App.css';
import produce from 'immer';
import { useState } from 'react';
/*const Notes = props => props.data.map(note => <div>{note.text}</div>);
const initialData = [{ text: 'Hey' }, { text: 'There' }];
const [data, setData] = useState(initialData);
const handleClick = () => {
const text = document.querySelector('#noteinput').value.trim();
if (text) {
const nextState = produce(data, draftState => {
draftState.push({ text });
});
document.querySelector('#noteinput').value = '';
setData(nextState);
}
};
return (
<div className="App">
<input id="noteinput" style={{ width: '80%' }} type="text" placeholder="Enter a new note" />
<button onClick={() => handleClick()}>Add note</button>
<Notes data={data} />
</div>
);
}*/
function App() {
const [input, setInput] = useState("");
const [list, setList] = useState([]);
const [visible, setVisible] = useState(true);
const addToList = e => {
setList([ ...list,{ title: input, visible: true } ]);
setInput("");
};
const deleteList = id => e => {
setList(list.filter((item, index) => index !== id));
};
const hideMe = id => e => {
setVisible(list.map((item, index) => index === id
? {
title: item.title,
visible: false
}
: item));
}
let style = { textDecoration: "none" };
if (!visible) style.textDecoration = "line-through";
return(
<div className="App">
<input type="text" placeholder="First Name" onChange={e => setInput(e.target.value)} />
<button type="button" onClick={addToList}>Submit</button>
<ul>
{list.map((item,index) =>
<li key={item} >
{item}
<button type="button" onClick={deleteList(index)}>Delete</button>
<button type="button" onClick={hideMe(index)}> Completed</button>
</li> )}
</ul>
</div>
);
}
export default App;