signal-desktop/ts/components/emoji/Emoji.tsx

62 lines
1.5 KiB
TypeScript
Raw Normal View History

2019-05-24 23:58:27 +00:00
import * as React from 'react';
import classNames from 'classnames';
import { getImagePath, SkinToneKey } from './lib';
2019-05-24 23:58:27 +00:00
export type OwnProps = {
inline?: boolean;
shortName: string;
skinTone?: SkinToneKey | number;
size?: 16 | 18 | 20 | 28 | 32 | 64 | 66;
children?: React.ReactNode;
2019-05-24 23:58:27 +00:00
};
export type Props = OwnProps &
Pick<React.HTMLProps<HTMLDivElement>, 'style' | 'className'>;
export const Emoji = React.memo(
React.forwardRef<HTMLDivElement, Props>(
(
{
style = {},
size = 28,
shortName,
skinTone,
inline,
className,
children,
}: Props,
2019-05-24 23:58:27 +00:00
ref
) => {
const image = getImagePath(shortName, skinTone);
const backgroundStyle = inline
? { backgroundImage: `url('${image}')` }
: {};
2019-05-24 23:58:27 +00:00
return (
<span
2019-05-24 23:58:27 +00:00
ref={ref}
className={classNames(
'module-emoji',
`module-emoji--${size}px`,
inline ? `module-emoji--${size}px--inline` : null,
2019-05-24 23:58:27 +00:00
className
)}
style={{ ...style, ...backgroundStyle }}
>
{inline ? (
// When using this component as a draft.js decorator it is very
// important that these children are the only elements to render
children
) : (
<img
className={`module-emoji__image--${size}px`}
src={image}
alt={shortName}
/>
)}
</span>
2019-05-24 23:58:27 +00:00
);
}
)
);