signal-desktop/ts/components/conversation/AddNewLines.tsx

65 lines
1.6 KiB
TypeScript
Raw Normal View History

2020-10-30 20:34:04 +00:00
// Copyright 2018-2020 Signal Messenger, LLC
// SPDX-License-Identifier: AGPL-3.0-only
import React from 'react';
2019-01-14 21:49:58 +00:00
import { RenderTextCallbackType } from '../../types/Util';
2020-08-20 18:23:09 +00:00
export interface Props {
text: string;
/** Allows you to customize now non-newlines are rendered. Simplest is just a <span>. */
2019-01-14 21:49:58 +00:00
renderNonNewLine?: RenderTextCallbackType;
}
export class AddNewLines extends React.Component<Props> {
public static defaultProps: Partial<Props> = {
renderNonNewLine: ({ text }) => text,
};
2020-09-14 19:51:27 +00:00
public render():
| JSX.Element
| string
| null
| Array<JSX.Element | string | null> {
const { text, renderNonNewLine } = this.props;
2020-09-14 19:51:27 +00:00
// eslint-disable-next-line @typescript-eslint/no-explicit-any
const results: Array<any> = [];
const FIND_NEWLINES = /\n/g;
// We have to do this, because renderNonNewLine is not required in our Props object,
// but it is always provided via defaultProps.
if (!renderNonNewLine) {
2020-09-14 19:51:27 +00:00
return null;
}
let match = FIND_NEWLINES.exec(text);
let last = 0;
let count = 1;
if (!match) {
return renderNonNewLine({ text, key: 0 });
}
while (match) {
if (last < match.index) {
const textWithNoNewline = text.slice(last, match.index);
2020-09-14 19:51:27 +00:00
count += 1;
results.push(renderNonNewLine({ text: textWithNoNewline, key: count }));
}
2020-09-14 19:51:27 +00:00
count += 1;
results.push(<br key={count} />);
last = FIND_NEWLINES.lastIndex;
match = FIND_NEWLINES.exec(text);
}
if (last < text.length) {
2020-09-14 19:51:27 +00:00
count += 1;
results.push(renderNonNewLine({ text: text.slice(last), key: count }));
}
return results;
}
}