All Downloads are FREE. Search and download functionalities are using the official Maven repository.
Please wait. This can take some minutes ...
Many resources are needed to download a project. Please understand that we have to compensate our server costs. Thank you in advance.
Project price only 1 $
You can buy this project and download/modify it how often you want.
META-INF.resources.js.components.criteria_sidebar.CriteriaSidebarItem.js Maven / Gradle / Ivy
/**
* SPDX-FileCopyrightText: (c) 2000 Liferay, Inc. https://liferay.com
* SPDX-License-Identifier: LGPL-2.1-or-later OR LicenseRef-Liferay-DXP-EULA-2.0.0-2023-06
*/
import ClayIcon from '@clayui/icon';
import classNames from 'classnames';
import {sub} from 'frontend-js-web';
import PropTypes from 'prop-types';
import React from 'react';
import {
useDisableKeyboardMovement,
useMovementSource,
useSetMovementSource,
} from '../../contexts/KeyboardMovementContext';
import useDragSource from '../../hooks/useDragSource';
import useKeyboardNavigation from '../../hooks/useKeyboardNavigation';
import {DragTypes} from '../../utils/dragTypes';
import {LIST_ITEM_TYPES} from '../../utils/listItemTypes';
import {TYPE_ICONS} from '../../utils/typeIcons';
export default function CriteriaSidebarItem({
className,
defaultValue,
icon,
label,
name: propertyName,
propertyKey,
type,
}) {
const {isTarget, setElement} = useKeyboardNavigation({
type: LIST_ITEM_TYPES.listItem,
});
const itemIcon = icon || TYPE_ICONS[type] || 'text';
const {handlerRef, isDragging} = useDragSource({
item: {
criterion: {
defaultValue,
propertyName,
type,
},
icon: itemIcon,
name: label,
propertyKey,
type: DragTypes.PROPERTY,
},
});
const setMovementSource = useSetMovementSource();
const movementSource = useMovementSource();
const disableMovement = useDisableKeyboardMovement();
const isKeyboardSource =
movementSource?.propertyKey === propertyKey &&
movementSource?.propertyName === propertyName;
return (
{
if (event.key === 'Enter') {
setMovementSource({
defaultValue,
icon: itemIcon,
label,
propertyKey,
propertyName,
type,
});
}
}}
ref={setElement}
role="menuitem"
tabIndex={isTarget ? 0 : -1}
>
{label}
);
}
CriteriaSidebarItem.propTypes = {
className: PropTypes.string,
defaultValue: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),
icon: PropTypes.string,
label: PropTypes.string,
name: PropTypes.string,
propertyKey: PropTypes.string.isRequired,
type: PropTypes.string,
};