feat(devices) scroll overflow devices texts on hover (#12974)

This commit is contained in:
Avram Tudor
2023-03-01 09:38:26 +02:00
committed by GitHub
parent 29b6ce7721
commit baf5aa14e8
6 changed files with 100 additions and 9 deletions

View File

@@ -5,6 +5,9 @@ import { makeStyles } from 'tss-react/mui';
import { showOverflowDrawer } from '../../../../toolbox/functions.web';
import Icon from '../../../icons/components/Icon';
import { withPixelLineHeight } from '../../../styles/functions.web';
import { TEXT_OVERFLOW_TYPES } from '../../constants.any';
import TextWithOverflow from './TextWithOverflow';
export interface IProps {
@@ -59,6 +62,11 @@ export interface IProps {
*/
onKeyPress?: (e?: React.KeyboardEvent) => void;
/**
* Overflow type for item text.
*/
overflowType?: TEXT_OVERFLOW_TYPES;
/**
* Whether the item is marked as selected.
*/
@@ -149,6 +157,7 @@ const ContextMenuItem = ({
onClick,
onKeyDown,
onKeyPress,
overflowType,
selected,
testId,
text,
@@ -180,12 +189,13 @@ const ContextMenuItem = ({
size = { 20 }
src = { icon } />}
{text && (
<span
<TextWithOverflow
className = { cx(styles.text,
_overflowDrawer && styles.drawerText,
textClassName) }>
_overflowDrawer && styles.drawerText,
textClassName) }
overflowType = { overflowType } >
{text}
</span>
</TextWithOverflow>
)}
{children}
</div>