// 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 './AddNewLines'; import { AddNewLines } from './AddNewLines'; export default { title: 'Components/Conversation/AddNewLines', }; const createProps = (overrideProps: Partial = {}): Props => ({ renderNonNewLine: overrideProps.renderNonNewLine, text: text('text', overrideProps.text || ''), }); export function AllNewlines(): JSX.Element { const props = createProps({ text: '\n\n\n', }); return ; } AllNewlines.story = { name: 'All newlines', }; export function StartingEndingWithNewlines(): JSX.Element { const props = createProps({ text: '\nSome text\n', }); return ; } StartingEndingWithNewlines.story = { name: 'Starting/Ending with Newlines', }; export function NewlinesInTheMiddle(): JSX.Element { const props = createProps({ text: 'Some\ntext', }); return ; } NewlinesInTheMiddle.story = { name: 'Newlines in the Middle', }; export function NoNewlines(): JSX.Element { const props = createProps({ text: 'Some text', }); return ; } export function CustomRenderFunction(): JSX.Element { const props = createProps({ text: 'Some text', renderNonNewLine: ({ text: theText, key }) => (
{theText}
), }); return ; }