40 lines
869 B
TypeScript
40 lines
869 B
TypeScript
import React from 'react';
|
|
import { StyleSheet, Text } from 'react-native';
|
|
import { Strike as StrikeProps } from '@rocket.chat/message-parser';
|
|
|
|
import Bold from './Bold';
|
|
import Italic from './Italic';
|
|
import Plain from './Plain';
|
|
import Link from './Link';
|
|
|
|
interface IStrikeProps {
|
|
value: StrikeProps['value'];
|
|
}
|
|
|
|
const styles = StyleSheet.create({
|
|
text: {
|
|
textDecorationLine: 'line-through'
|
|
}
|
|
});
|
|
|
|
const Strike = ({ value }: IStrikeProps): JSX.Element => (
|
|
<Text style={styles.text}>
|
|
{value.map(block => {
|
|
switch (block.type) {
|
|
case 'LINK':
|
|
return <Link value={block.value} />;
|
|
case 'PLAIN_TEXT':
|
|
return <Plain value={block.value} />;
|
|
case 'BOLD':
|
|
return <Bold value={block.value} />;
|
|
case 'ITALIC':
|
|
return <Italic value={block.value} />;
|
|
default:
|
|
return null;
|
|
}
|
|
})}
|
|
</Text>
|
|
);
|
|
|
|
export default Strike;
|