prevent page reload and split code

This commit is contained in:
cupcakearmy 2019-05-24 15:52:20 +02:00
parent 55adfdf587
commit 02559d89ab
2 changed files with 22 additions and 23 deletions

View File

@ -4,11 +4,11 @@ import React from 'react'
const Item = ({ id, text, done, refresh }) => {
const _done = (e) => callAPI(null, {
const _done = () => callAPI(null, {
url: `/api/items/${id}`,
method: 'patch',
data: {
done: e.target.checked,
done: !done,
},
}).then(refresh)
@ -17,36 +17,30 @@ const Item = ({ id, text, done, refresh }) => {
method: 'delete',
}).then(refresh)
return <tr className="item">
return <tr className="item" onClick={_done}>
<td className="item-done">
<div className="form-group">
<label className="form-checkbox">
<input type="checkbox" checked={done} onChange={_done}/>
<input type="checkbox" checked={done} readOnly/>
<i className="form-icon"/>
</label>
</div>
</td>
<td>{text}</td>
<td className="item-menu">
<div className="dropdown dropdown-right">
<a className="btn btn-link dropdown-toggle" tabIndex="0">
<i className="icon icon-more-vert"/>
</a>
<ul className="menu">
<li className="menu-item">
<a onClick={_delete}>
<i className="icon icon-delete"/> Delete
</a>
</li>
</ul>
</div>
<button className="btn btn-action btn-error" onClick={_delete}>
<i className="icon icon-delete"/>
</button>
</td>
{/* language=CSS */}
<style jsx>{`
.item-done,
.item-menu {
.item-done {
width: 2em;
}
.item-menu {
width: 1em;
}
`}</style>
</tr>
}

View File

@ -17,11 +17,16 @@ const List = ({ fetched }) => {
input.current.focus()
}, [input])
const _submit = () => callAPI(null, {
const _submit = async (e) => {
e.preventDefault()
await callAPI(null, {
url: `/api/items/`,
method: 'post',
data: { text },
}).then(refresh)
})
setText('')
refresh()
}
const _clear = () => callAPI(null, {
url: `/api/items/`,