Co-authored-by: Danny Brown <danny.ri.brown@gmail.com>

This commit is contained in:
James A. Petts 2020-05-18 14:46:05 +01:00
parent 7bcfaf02c0
commit 649216fde4

View File

@ -1,9 +1,13 @@
import React from 'react'; import React from 'react';
import PropTypes from 'prop-types'; import PropTypes from 'prop-types';
import classnames from 'classnames'; import classnames from 'classnames';
import { useDrag } from 'react-dnd';
//
import { Icon } from '@ohif/ui'; import { Icon } from '@ohif/ui';
/**
*
*/
const Thumbnail = ({ const Thumbnail = ({
className, className,
imageSrc, imageSrc,
@ -11,11 +15,23 @@ const Thumbnail = ({
description, description,
seriesNumber, seriesNumber,
numInstances, numInstances,
dragData,
isActive, isActive,
onClick, onClick,
}) => { }) => {
// TODO: We should wrap our thumbnail to create a "DraggableThumbnail", as
// this will still allow for "drag", even if there is no drop target for the
// specified item.
const [collectedProps, drag, dragPreview] = useDrag({
item: { ...dragData },
canDrag: function(monitor) {
return Object.keys(dragData).length !== 0;
},
});
return ( return (
<div <div
ref={drag}
className={classnames( className={classnames(
className, className,
'flex flex-col flex-1 px-3 cursor-pointer outline-none' 'flex flex-col flex-1 px-3 cursor-pointer outline-none'
@ -34,7 +50,11 @@ const Thumbnail = ({
)} )}
> >
{imageSrc ? ( {imageSrc ? (
<img src={imageSrc} alt={imageAltText} className="min-h-32 object-none" /> <img
src={imageSrc}
alt={imageAltText}
className="min-h-32 object-none"
/>
) : ( ) : (
<div>{imageAltText}</div> <div>{imageAltText}</div>
)} )}
@ -56,6 +76,17 @@ const Thumbnail = ({
Thumbnail.propTypes = { Thumbnail.propTypes = {
className: PropTypes.string, className: PropTypes.string,
imageSrc: PropTypes.string, imageSrc: PropTypes.string,
/**
* Data the thumbnail should expose to a receiving drop target. Use a matching
* `dragData.type` to identify which targets can receive this draggable item.
* If this is not set, drag-n-drop will be disabled for this thumbnail.
*
* Ref: https://react-dnd.github.io/react-dnd/docs/api/use-drag#specification-object-members
*/
dragData: PropTypes.shape({
/** Must match the "type" a dropTarget expects */
type: PropTypes.string.isRequired,
}),
imageAltText: PropTypes.string, imageAltText: PropTypes.string,
description: PropTypes.string.isRequired, description: PropTypes.string.isRequired,
seriesNumber: PropTypes.number.isRequired, seriesNumber: PropTypes.number.isRequired,
@ -64,4 +95,8 @@ Thumbnail.propTypes = {
onClick: PropTypes.func.isRequired, onClick: PropTypes.func.isRequired,
}; };
Thumbnail.defaultProps = {
dragData: {},
};
export default Thumbnail; export default Thumbnail;