2021-07-20 08:37:52 +00:00
|
|
|
import { makeStyles } from '@material-ui/core/styles';
|
|
|
|
import React from 'react';
|
|
|
|
|
2022-07-19 10:36:02 +00:00
|
|
|
import { Theme } from '../../../base/ui/types';
|
2021-07-20 08:37:52 +00:00
|
|
|
|
2022-04-08 12:24:58 +00:00
|
|
|
const useStyles = makeStyles((theme: Theme) => {
|
|
|
|
const { text01 } = theme.palette;
|
|
|
|
|
2021-07-20 08:37:52 +00:00
|
|
|
return {
|
|
|
|
badge: {
|
|
|
|
background: 'rgba(0, 0, 0, 0.6)',
|
|
|
|
borderRadius: '3px',
|
2022-04-08 12:24:58 +00:00
|
|
|
color: text01,
|
2021-07-20 08:37:52 +00:00
|
|
|
maxWidth: '50%',
|
|
|
|
overflow: 'hidden',
|
|
|
|
padding: '2px 16px',
|
|
|
|
textOverflow: 'ellipsis',
|
|
|
|
whiteSpace: 'nowrap'
|
|
|
|
}
|
|
|
|
};
|
|
|
|
});
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Component that displays a name badge.
|
|
|
|
*
|
|
|
|
* @param {Props} props - The props of the component.
|
|
|
|
* @returns {ReactElement}
|
|
|
|
*/
|
2022-04-08 12:24:58 +00:00
|
|
|
const DisplayNameBadge: React.FC<{ name: string }> = ({ name }) => {
|
2021-07-20 08:37:52 +00:00
|
|
|
const classes = useStyles();
|
|
|
|
|
|
|
|
return (
|
|
|
|
<div className = { classes.badge }>
|
2022-04-08 12:24:58 +00:00
|
|
|
{ name }
|
2021-07-20 08:37:52 +00:00
|
|
|
</div>
|
|
|
|
);
|
|
|
|
};
|
|
|
|
|
|
|
|
export default DisplayNameBadge;
|