Markos Gogoulos 496285e9e1 fix
2025-10-25 17:08:28 +03:00

107 lines
3.3 KiB
JavaScript

import React from 'react';
import PropTypes from 'prop-types';
import { useMediaItem } from '../../utils/hooks/';
import { PositiveInteger, PositiveIntegerOrZero } from '../../utils/helpers/';
import { MediaItemThumbnailLink, itemClassname } from './includes/items/';
import { Item } from './Item';
export function MediaItem(props) {
const type = props.type;
const [titleComponent, descriptionComponent, thumbnailUrl, UnderThumbWrapper, editMediaComponent, metaComponents, viewMediaComponent] =
useMediaItem({ ...props, type });
function thumbnailComponent() {
return <MediaItemThumbnailLink src={thumbnailUrl} title={props.title} link={props.link} />;
}
const containerClassname = itemClassname(
'item ' + type + '-item',
props.class_name.trim(),
props.playlistOrder === props.playlistActiveItem
);
const finalClassname = containerClassname +
(props.showSelection ? ' with-selection' : '') +
(props.isSelected ? ' selected' : '') +
(props.hasAnySelection ? ' has-any-selection' : '');
const handleItemClick = (e) => {
// If there's any selection active, clicking the item should toggle selection
if (props.hasAnySelection && props.onCheckboxChange) {
// Check if clicking on the checkbox itself, edit icon, or view icon
if (e.target.closest('.item-selection-checkbox') ||
e.target.closest('.item-edit-icon') ||
e.target.closest('.item-view-icon')) {
return; // Let these elements handle their own clicks
}
// Prevent all other clicks and toggle selection
e.preventDefault();
e.stopPropagation();
props.onCheckboxChange({ target: { checked: !props.isSelected } });
}
};
return (
<div className={finalClassname} onClick={handleItemClick}>
<div className="item-content">
{props.showSelection && (
<div className="item-selection-checkbox" onClick={(e) => e.stopPropagation()}>
<input
type="checkbox"
checked={props.isSelected || false}
onChange={(e) => { props.onCheckboxChange && props.onCheckboxChange(e); }}
onClick={(e) => e.stopPropagation()}
aria-label="Select media"
/>
</div>
)}
{editMediaComponent()}
{viewMediaComponent()}
{thumbnailComponent()}
<UnderThumbWrapper title={props.title} link={props.link}>
{titleComponent()}
{metaComponents()}
{descriptionComponent()}
</UnderThumbWrapper>
</div>
</div>
);
}
MediaItem.propTypes = {
...Item.propTypes,
type: PropTypes.string.isRequired,
class_name: PropTypes.string,
views: PositiveIntegerOrZero,
hideViews: PropTypes.bool,
hideDate: PropTypes.bool,
hideAuthor: PropTypes.bool,
author_name: PropTypes.string,
author_link: PropTypes.string,
playlistOrder: PositiveInteger,
playlistActiveItem: PositiveIntegerOrZero,
inPlaylistView: PropTypes.bool,
hidePlaylistOrderNumber: PropTypes.bool,
};
MediaItem.defaultProps = {
...Item.defaultProps,
class_name: '',
views: 0,
hideViews: false,
hideDate: false,
hideAuthor: false,
author_name: '',
author_link: '#',
playlistOrder: 1,
playlistActiveItem: 1,
inPlaylistView: false,
hidePlaylistOrderNumber: true,
};