40 lines
848 B
TypeScript
40 lines
848 B
TypeScript
import React from 'react';
|
|
import { Text } from 'react-native';
|
|
import { Code as CodeProps } from '@rocket.chat/message-parser';
|
|
|
|
import styles from '../styles';
|
|
import { themes } from '../../../constants/colors';
|
|
import { useTheme } from '../../../theme';
|
|
import CodeLine from './CodeLine';
|
|
|
|
interface ICodeProps {
|
|
value: CodeProps['value'];
|
|
}
|
|
|
|
const Code = ({ value }: ICodeProps): JSX.Element => {
|
|
const { theme } = useTheme();
|
|
|
|
return (
|
|
<Text
|
|
style={[
|
|
styles.codeBlock,
|
|
{
|
|
color: themes[theme!].bodyText,
|
|
backgroundColor: themes[theme!].bannerBackground,
|
|
borderColor: themes[theme!].borderColor
|
|
}
|
|
]}>
|
|
{value.map(block => {
|
|
switch (block.type) {
|
|
case 'CODE_LINE':
|
|
return <CodeLine value={block.value} />;
|
|
default:
|
|
return null;
|
|
}
|
|
})}
|
|
</Text>
|
|
);
|
|
};
|
|
|
|
export default Code;
|