// Copyright 2020 Signal Messenger, LLC // SPDX-License-Identifier: AGPL-3.0-only import * as React from 'react'; import { text } from '@storybook/addon-knobs'; import type { Props } from './Emojify'; import { Emojify } from './Emojify'; export default { title: 'Components/Conversation/Emojify', }; const createProps = (overrideProps: Partial = {}): Props => ({ renderNonEmoji: overrideProps.renderNonEmoji, sizeClass: overrideProps.sizeClass, text: text('text', overrideProps.text || ''), }); export const EmojiOnly = (): JSX.Element => { const props = createProps({ text: '😹😹😹', }); return ; }; export const SkinColorModifier = (): JSX.Element => { const props = createProps({ text: '👍🏾', }); return ; }; export const Jumbo = (): JSX.Element => { const props = createProps({ text: '😹😹😹', sizeClass: 'max', }); return ; }; export const ExtraLarge = (): JSX.Element => { const props = createProps({ text: '😹😹😹', sizeClass: 'extra-large', }); return ; }; export const Large = (): JSX.Element => { const props = createProps({ text: '😹😹😹', sizeClass: 'large', }); return ; }; export const Medium = (): JSX.Element => { const props = createProps({ text: '😹😹😹', sizeClass: 'medium', }); return ; }; export const Small = (): JSX.Element => { const props = createProps({ text: '😹😹😹', sizeClass: 'small', }); return ; }; export const PlusText = (): JSX.Element => { const props = createProps({ text: 'this 😹 cat 😹 is 😹 so 😹 joyful', }); return ; }; export const AllTextNoEmoji = (): JSX.Element => { const props = createProps({ text: 'this cat is so joyful', }); return ; }; AllTextNoEmoji.story = { name: 'All Text, No Emoji', }; export const CustomTextRender = (): JSX.Element => { const props = createProps({ text: 'this 😹 cat 😹 is 😹 so 😹 joyful', renderNonEmoji: ({ text: theText, key }) => (
{theText}
), }); return ; }; export const TensOfThousandsOfEmoji = (): JSX.Element => { const props = createProps({ text: '💅'.repeat(40000), }); return ; }; TensOfThousandsOfEmoji.story = { name: 'Tens of thousands of emoji', }; export const TensOfThousandsOfEmojiInterspersedWithText = (): JSX.Element => { const props = createProps({ text: '💅 hi '.repeat(40000), }); return ; }; TensOfThousandsOfEmojiInterspersedWithText.story = { name: 'Tens of thousands of emoji, interspersed with text', };