TooltipHostIndex.tsx 877 Bytes
Newer Older
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
import * as React from 'react';
import { TOOLTIPSTYLE } from '@static/const';
import { DirectionalHint, TooltipHost } from '@fluentui/react';

interface TooltipHostIndexProps {
    value: string;
}

const TooltipHostIndex = (props: TooltipHostIndexProps): any => {
    const { value } = props;
    const length = String(value).length;
    return (
        <>
            {length >= 15 ? (
                <div>
                    <TooltipHost
                        content={value}
                        directionalHint={DirectionalHint.bottomLeftEdge}
                        tooltipProps={TOOLTIPSTYLE}
                    >
                        <div className='ellipsis'>{value}</div>
                    </TooltipHost>
                </div>
            ) : (
                <div>{value}</div>
            )}
        </>
    );
};

export default TooltipHostIndex;