223 lines
5.3 KiB
JavaScript
223 lines
5.3 KiB
JavaScript
import React, { useContext } from 'react';
|
|
import { View, Text, StyleSheet } from 'react-native';
|
|
import PropTypes from 'prop-types';
|
|
import moment from 'moment';
|
|
import { transparentize } from 'color2k';
|
|
import { dequal } from 'dequal';
|
|
|
|
import Touchable from './Touchable';
|
|
import Markdown from '../markdown';
|
|
import openLink from '../../utils/openLink';
|
|
import sharedStyles from '../../views/Styles';
|
|
import { themes } from '../../constants/colors';
|
|
import MessageContext from './Context';
|
|
|
|
const styles = StyleSheet.create({
|
|
button: {
|
|
flex: 1,
|
|
flexDirection: 'row',
|
|
alignItems: 'center',
|
|
marginTop: 6,
|
|
alignSelf: 'flex-start',
|
|
borderWidth: 1,
|
|
borderRadius: 4
|
|
},
|
|
attachmentContainer: {
|
|
flex: 1,
|
|
borderRadius: 4,
|
|
flexDirection: 'column',
|
|
padding: 15
|
|
},
|
|
authorContainer: {
|
|
flex: 1,
|
|
flexDirection: 'row',
|
|
alignItems: 'center'
|
|
},
|
|
author: {
|
|
flex: 1,
|
|
fontSize: 16,
|
|
...sharedStyles.textMedium
|
|
},
|
|
time: {
|
|
fontSize: 12,
|
|
marginLeft: 10,
|
|
...sharedStyles.textRegular,
|
|
fontWeight: '300'
|
|
},
|
|
fieldsContainer: {
|
|
flex: 1,
|
|
flexWrap: 'wrap',
|
|
flexDirection: 'row'
|
|
},
|
|
fieldContainer: {
|
|
flexDirection: 'column',
|
|
padding: 10
|
|
},
|
|
fieldTitle: {
|
|
fontSize: 14,
|
|
...sharedStyles.textSemibold
|
|
},
|
|
fieldValue: {
|
|
fontSize: 14,
|
|
...sharedStyles.textRegular
|
|
},
|
|
marginTop: {
|
|
marginTop: 4
|
|
},
|
|
marginBottom: {
|
|
marginBottom: 4
|
|
}
|
|
});
|
|
|
|
const Title = React.memo(({ attachment, timeFormat, theme }) => {
|
|
if (!attachment.author_name) {
|
|
return null;
|
|
}
|
|
const time = attachment.ts ? moment(attachment.ts).format(timeFormat) : null;
|
|
return (
|
|
<View style={styles.authorContainer}>
|
|
{attachment.author_name ? <Text style={[styles.author, { color: themes[theme].bodyText }]}>{attachment.author_name}</Text> : null}
|
|
{time ? <Text style={[styles.time, { color: themes[theme].auxiliaryText }]}>{ time }</Text> : null}
|
|
</View>
|
|
);
|
|
});
|
|
|
|
const Description = React.memo(({
|
|
attachment, getCustomEmoji, theme
|
|
}) => {
|
|
const text = attachment.text || attachment.title;
|
|
if (!text) {
|
|
return null;
|
|
}
|
|
const { baseUrl, user } = useContext(MessageContext);
|
|
return (
|
|
<Markdown
|
|
msg={text}
|
|
baseUrl={baseUrl}
|
|
username={user.username}
|
|
getCustomEmoji={getCustomEmoji}
|
|
theme={theme}
|
|
/>
|
|
);
|
|
}, (prevProps, nextProps) => {
|
|
if (prevProps.attachment.text !== nextProps.attachment.text) {
|
|
return false;
|
|
}
|
|
if (prevProps.attachment.title !== nextProps.attachment.title) {
|
|
return false;
|
|
}
|
|
if (prevProps.theme !== nextProps.theme) {
|
|
return false;
|
|
}
|
|
return true;
|
|
});
|
|
|
|
const Fields = React.memo(({ attachment, theme }) => {
|
|
if (!attachment.fields) {
|
|
return null;
|
|
}
|
|
return (
|
|
<View style={styles.fieldsContainer}>
|
|
{attachment.fields.map(field => (
|
|
<View key={field.title} style={[styles.fieldContainer, { width: field.short ? '50%' : '100%' }]}>
|
|
<Text style={[styles.fieldTitle, { color: themes[theme].bodyText }]}>{field.title}</Text>
|
|
<Text style={[styles.fieldValue, { color: themes[theme].bodyText }]}>{field.value}</Text>
|
|
</View>
|
|
))}
|
|
</View>
|
|
);
|
|
}, (prevProps, nextProps) => dequal(prevProps.attachment.fields, nextProps.attachment.fields) && prevProps.theme === nextProps.theme);
|
|
|
|
const Reply = React.memo(({
|
|
attachment, timeFormat, index, getCustomEmoji, theme
|
|
}) => {
|
|
if (!attachment) {
|
|
return null;
|
|
}
|
|
const { baseUrl, user } = useContext(MessageContext);
|
|
|
|
const onPress = () => {
|
|
let url = attachment.title_link || attachment.author_link;
|
|
if (!url) {
|
|
return;
|
|
}
|
|
if (attachment.type === 'file') {
|
|
if (!url.startsWith('http')) {
|
|
url = `${ baseUrl }${ url }`;
|
|
}
|
|
url = `${ url }?rc_uid=${ user.id }&rc_token=${ user.token }`;
|
|
}
|
|
openLink(url, theme);
|
|
};
|
|
|
|
return (
|
|
<>
|
|
<Touchable
|
|
onPress={onPress}
|
|
style={[
|
|
styles.button,
|
|
index > 0 && styles.marginTop,
|
|
attachment.description && styles.marginBottom,
|
|
{
|
|
backgroundColor: attachment.color ? transparentize(attachment.color, 0.80) : themes[theme].chatComponentBackground,
|
|
borderColor: attachment.color || themes[theme].borderColor
|
|
}
|
|
]}
|
|
background={Touchable.Ripple(themes[theme].bannerBackground)}
|
|
>
|
|
<View style={styles.attachmentContainer}>
|
|
<Title
|
|
attachment={attachment}
|
|
timeFormat={timeFormat}
|
|
theme={theme}
|
|
/>
|
|
<Description
|
|
attachment={attachment}
|
|
getCustomEmoji={getCustomEmoji}
|
|
theme={theme}
|
|
/>
|
|
<Fields attachment={attachment} theme={theme} />
|
|
</View>
|
|
</Touchable>
|
|
<Markdown
|
|
msg={attachment.description}
|
|
baseUrl={baseUrl}
|
|
username={user.username}
|
|
getCustomEmoji={getCustomEmoji}
|
|
theme={theme}
|
|
/>
|
|
</>
|
|
);
|
|
}, (prevProps, nextProps) => dequal(prevProps.attachment, nextProps.attachment) && prevProps.theme === nextProps.theme);
|
|
|
|
Reply.propTypes = {
|
|
attachment: PropTypes.object,
|
|
timeFormat: PropTypes.string,
|
|
index: PropTypes.number,
|
|
theme: PropTypes.string,
|
|
getCustomEmoji: PropTypes.func
|
|
};
|
|
Reply.displayName = 'MessageReply';
|
|
|
|
Title.propTypes = {
|
|
attachment: PropTypes.object,
|
|
timeFormat: PropTypes.string,
|
|
theme: PropTypes.string
|
|
};
|
|
Title.displayName = 'MessageReplyTitle';
|
|
|
|
Description.propTypes = {
|
|
attachment: PropTypes.object,
|
|
getCustomEmoji: PropTypes.func,
|
|
theme: PropTypes.string
|
|
};
|
|
Description.displayName = 'MessageReplyDescription';
|
|
|
|
Fields.propTypes = {
|
|
attachment: PropTypes.object,
|
|
theme: PropTypes.string
|
|
};
|
|
Fields.displayName = 'MessageReplyFields';
|
|
|
|
export default Reply;
|