1
0
Fork 0
mirror of https://github.com/plankanban/planka.git synced 2025-07-22 06:39:44 +02:00
planka/client/src/components/CardModal/Attachments/Attachments.jsx

46 lines
1,012 B
React
Raw Normal View History

2020-04-21 05:04:34 +05:00
import React, { useCallback } from 'react';
import PropTypes from 'prop-types';
import Item from './Item';
const Attachments = React.memo(({ items, onUpdate, onDelete }) => {
const handleUpdate = useCallback(
(id, data) => {
onUpdate(id, data);
},
[onUpdate],
);
const handleDelete = useCallback(
(id) => {
onDelete(id);
},
[onDelete],
);
return (
<>
{items.map((item) => (
<Item
key={item.id}
name={item.name}
url={item.url}
thumbnailUrl={item.thumbnailUrl}
createdAt={item.createdAt}
isPersisted={item.isPersisted}
onUpdate={(data) => handleUpdate(item.id, data)}
onDelete={() => handleDelete(item.id)}
/>
))}
</>
);
});
Attachments.propTypes = {
items: PropTypes.array.isRequired, // eslint-disable-line react/forbid-prop-types
onUpdate: PropTypes.func.isRequired,
onDelete: PropTypes.func.isRequired,
};
export default Attachments;