File size: 737 Bytes
1e92f2d |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 |
import React from 'react';
import PropTypes from 'prop-types';
import { firebase } from '../firebase';
export const Checkbox = ({ id, taskDesc }) => {
const archiveTask = () => {
firebase.firestore().collection('tasks').doc(id).update({
archived: true,
});
};
return (
<div
className="checkbox-holder"
data-testid="checkbox-action"
onClick={() => archiveTask()}
onKeyDown={(e) => {
if (e.key === 'Enter') archiveTask();
}}
aria-label={`Mark ${taskDesc} as done?`}
role="button"
tabIndex={0}
>
<span className="checkbox" />
</div>
);
};
Checkbox.propTypes = {
id: PropTypes.string.isRequired,
taskDesc: PropTypes.string.isRequired,
};
|