2019-07-18 17:44:02 +00:00
|
|
|
import React from 'react';
|
|
|
|
import PropTypes from 'prop-types';
|
2019-12-04 16:39:53 +00:00
|
|
|
import { View, Text, Image } from 'react-native';
|
2019-07-18 17:44:02 +00:00
|
|
|
import { connect } from 'react-redux';
|
|
|
|
import ShareExtension from 'rn-extensions-share';
|
|
|
|
|
2019-12-04 16:39:53 +00:00
|
|
|
import { themes } from '../../constants/colors';
|
2019-07-18 17:44:02 +00:00
|
|
|
import I18n from '../../i18n';
|
|
|
|
import RocketChat from '../../lib/rocketchat';
|
|
|
|
import { CustomIcon } from '../../lib/Icons';
|
|
|
|
import log from '../../utils/log';
|
|
|
|
import styles from './styles';
|
2019-12-04 16:39:53 +00:00
|
|
|
import TextInput from '../../containers/TextInput';
|
|
|
|
import ActivityIndicator from '../../containers/ActivityIndicator';
|
2019-07-18 17:44:02 +00:00
|
|
|
import { CustomHeaderButtons, Item } from '../../containers/HeaderButton';
|
|
|
|
import { isReadOnly, isBlocked } from '../../utils/room';
|
2019-12-04 16:39:53 +00:00
|
|
|
import { withTheme } from '../../theme';
|
|
|
|
import { themedHeader } from '../../utils/navigation';
|
2019-07-18 17:44:02 +00:00
|
|
|
|
2019-08-07 13:51:34 +00:00
|
|
|
class ShareView extends React.Component {
|
2019-12-04 16:39:53 +00:00
|
|
|
static navigationOptions = ({ navigation, screenProps }) => {
|
2019-07-29 16:33:28 +00:00
|
|
|
const canSend = navigation.getParam('canSend', true);
|
2019-07-18 17:44:02 +00:00
|
|
|
|
|
|
|
return ({
|
|
|
|
title: I18n.t('Share'),
|
2019-12-04 16:39:53 +00:00
|
|
|
...themedHeader(screenProps.theme),
|
2019-07-18 17:44:02 +00:00
|
|
|
headerRight:
|
|
|
|
canSend
|
|
|
|
? (
|
|
|
|
<CustomHeaderButtons>
|
|
|
|
<Item
|
|
|
|
title={I18n.t('Send')}
|
|
|
|
onPress={navigation.getParam('sendMessage')}
|
|
|
|
testID='send-message-share-view'
|
|
|
|
buttonStyle={styles.send}
|
|
|
|
/>
|
|
|
|
</CustomHeaderButtons>
|
|
|
|
)
|
|
|
|
: null
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
static propTypes = {
|
|
|
|
navigation: PropTypes.object,
|
2019-12-04 16:39:53 +00:00
|
|
|
theme: PropTypes.string,
|
2019-07-29 16:33:28 +00:00
|
|
|
user: PropTypes.shape({
|
|
|
|
id: PropTypes.string.isRequired,
|
|
|
|
username: PropTypes.string.isRequired,
|
|
|
|
token: PropTypes.string.isRequired
|
|
|
|
}),
|
|
|
|
baseUrl: PropTypes.string.isRequired
|
2019-07-18 17:44:02 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
constructor(props) {
|
|
|
|
super(props);
|
|
|
|
const { navigation } = this.props;
|
|
|
|
const rid = navigation.getParam('rid', '');
|
|
|
|
const name = navigation.getParam('name', '');
|
|
|
|
const value = navigation.getParam('value', '');
|
|
|
|
const isMedia = navigation.getParam('isMedia', false);
|
|
|
|
const fileInfo = navigation.getParam('fileInfo', {});
|
2019-09-16 20:26:32 +00:00
|
|
|
const room = navigation.getParam('room', { rid });
|
2019-07-18 17:44:02 +00:00
|
|
|
|
|
|
|
this.state = {
|
|
|
|
rid,
|
|
|
|
value,
|
|
|
|
isMedia,
|
|
|
|
name,
|
|
|
|
fileInfo,
|
2019-09-16 20:26:32 +00:00
|
|
|
room,
|
2019-07-18 17:44:02 +00:00
|
|
|
loading: false,
|
|
|
|
file: {
|
|
|
|
name: fileInfo ? fileInfo.name : '',
|
|
|
|
description: ''
|
|
|
|
}
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
componentDidMount() {
|
|
|
|
const { room } = this.state;
|
2019-07-29 16:33:28 +00:00
|
|
|
const { navigation, user } = this.props;
|
|
|
|
const { username } = user;
|
2019-07-18 17:44:02 +00:00
|
|
|
navigation.setParams({ sendMessage: this._sendMessage, canSend: !(isReadOnly(room, { username }) || isBlocked(room)) });
|
|
|
|
}
|
|
|
|
|
2019-07-29 16:33:28 +00:00
|
|
|
bytesToSize = bytes => `${ (bytes / 1048576).toFixed(2) }MB`;
|
2019-07-18 17:44:02 +00:00
|
|
|
|
|
|
|
_sendMessage = async() => {
|
|
|
|
const { isMedia } = this.state;
|
|
|
|
this.setState({ loading: true });
|
|
|
|
|
|
|
|
if (isMedia) {
|
|
|
|
await this.sendMediaMessage();
|
|
|
|
} else {
|
|
|
|
await this.sendTextMessage();
|
|
|
|
}
|
|
|
|
|
|
|
|
this.setState({ loading: false });
|
|
|
|
ShareExtension.close();
|
|
|
|
}
|
|
|
|
|
|
|
|
sendMediaMessage = async() => {
|
|
|
|
const { rid, fileInfo, file } = this.state;
|
2019-07-29 16:33:28 +00:00
|
|
|
const { baseUrl: server, user } = this.props;
|
2019-07-18 17:44:02 +00:00
|
|
|
const { name, description } = file;
|
2019-07-30 16:15:39 +00:00
|
|
|
const fileMessage = {
|
|
|
|
name,
|
|
|
|
description,
|
|
|
|
size: fileInfo.size,
|
|
|
|
type: fileInfo.mime,
|
|
|
|
store: 'Uploads',
|
|
|
|
path: fileInfo.path
|
|
|
|
};
|
2019-07-18 17:44:02 +00:00
|
|
|
if (fileInfo && rid !== '') {
|
|
|
|
try {
|
2019-07-29 16:33:28 +00:00
|
|
|
await RocketChat.sendFileMessage(rid, fileMessage, undefined, server, user);
|
2019-07-18 17:44:02 +00:00
|
|
|
} catch (e) {
|
2019-08-23 13:18:47 +00:00
|
|
|
log(e);
|
2019-07-18 17:44:02 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
sendTextMessage = async() => {
|
|
|
|
const { value, rid } = this.state;
|
2019-07-29 16:33:28 +00:00
|
|
|
const { user } = this.props;
|
2019-07-18 17:44:02 +00:00
|
|
|
if (value !== '' && rid !== '') {
|
|
|
|
try {
|
2019-07-29 16:33:28 +00:00
|
|
|
await RocketChat.sendMessage(rid, value, undefined, user);
|
2019-08-23 13:18:47 +00:00
|
|
|
} catch (e) {
|
|
|
|
log(e);
|
2019-07-18 17:44:02 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
renderPreview = () => {
|
|
|
|
const { fileInfo } = this.state;
|
2019-12-04 16:39:53 +00:00
|
|
|
const { theme } = this.props;
|
2019-07-18 17:44:02 +00:00
|
|
|
|
2019-07-29 18:26:18 +00:00
|
|
|
const icon = fileInfo.mime.match(/image/)
|
2019-07-18 17:44:02 +00:00
|
|
|
? <Image source={{ isStatic: true, uri: fileInfo.path }} style={styles.mediaImage} />
|
|
|
|
: (
|
|
|
|
<View style={styles.mediaIconContainer}>
|
|
|
|
<CustomIcon name='file-generic' style={styles.mediaIcon} />
|
|
|
|
</View>
|
|
|
|
);
|
|
|
|
|
|
|
|
return (
|
2019-12-04 16:39:53 +00:00
|
|
|
<View
|
|
|
|
style={[
|
|
|
|
styles.mediaContent,
|
|
|
|
{
|
|
|
|
borderColor: themes[theme].separatorColor,
|
|
|
|
backgroundColor: themes[theme].auxiliaryBackground
|
|
|
|
}
|
|
|
|
]}
|
|
|
|
>
|
2019-07-18 17:44:02 +00:00
|
|
|
{icon}
|
|
|
|
<View style={styles.mediaInfo}>
|
2019-12-04 16:39:53 +00:00
|
|
|
<Text style={[styles.mediaText, { color: themes[theme].titleText }]} numberOfLines={1}>{fileInfo.name}</Text>
|
|
|
|
<Text style={[styles.mediaText, { color: themes[theme].titleText }]}>{this.bytesToSize(fileInfo.size)}</Text>
|
2019-07-18 17:44:02 +00:00
|
|
|
</View>
|
|
|
|
</View>
|
|
|
|
);
|
|
|
|
};
|
|
|
|
|
|
|
|
renderMediaContent = () => {
|
|
|
|
const { fileInfo, file } = this.state;
|
2019-12-04 16:39:53 +00:00
|
|
|
const { theme } = this.props;
|
|
|
|
const inputStyle = {
|
|
|
|
backgroundColor: themes[theme].focusedBackground,
|
|
|
|
borderColor: themes[theme].separatorColor
|
|
|
|
};
|
2019-07-18 17:44:02 +00:00
|
|
|
return fileInfo ? (
|
|
|
|
<View style={styles.mediaContainer}>
|
|
|
|
{this.renderPreview()}
|
|
|
|
<View style={styles.mediaInputContent}>
|
|
|
|
<TextInput
|
2019-12-04 16:39:53 +00:00
|
|
|
inputStyle={[
|
|
|
|
styles.mediaNameInput,
|
|
|
|
styles.input,
|
|
|
|
styles.firstInput,
|
|
|
|
inputStyle
|
|
|
|
]}
|
2019-07-18 17:44:02 +00:00
|
|
|
placeholder={I18n.t('File_name')}
|
|
|
|
onChangeText={name => this.setState({ file: { ...file, name } })}
|
|
|
|
defaultValue={file.name}
|
2019-12-04 16:39:53 +00:00
|
|
|
containerStyle={styles.inputContainer}
|
|
|
|
theme={theme}
|
2019-07-18 17:44:02 +00:00
|
|
|
/>
|
|
|
|
<TextInput
|
2019-12-04 16:39:53 +00:00
|
|
|
inputStyle={[
|
|
|
|
styles.mediaDescriptionInput,
|
|
|
|
styles.input,
|
|
|
|
inputStyle
|
|
|
|
]}
|
2019-07-18 17:44:02 +00:00
|
|
|
placeholder={I18n.t('File_description')}
|
|
|
|
onChangeText={description => this.setState({ file: { ...file, description } })}
|
|
|
|
defaultValue={file.description}
|
|
|
|
multiline
|
|
|
|
textAlignVertical='top'
|
|
|
|
autoFocus
|
2019-12-04 16:39:53 +00:00
|
|
|
containerStyle={styles.inputContainer}
|
|
|
|
theme={theme}
|
2019-07-18 17:44:02 +00:00
|
|
|
/>
|
|
|
|
</View>
|
|
|
|
</View>
|
|
|
|
) : null;
|
|
|
|
};
|
|
|
|
|
|
|
|
renderInput = () => {
|
|
|
|
const { value } = this.state;
|
2019-12-04 16:39:53 +00:00
|
|
|
const { theme } = this.props;
|
2019-07-18 17:44:02 +00:00
|
|
|
return (
|
|
|
|
<TextInput
|
2019-12-04 16:39:53 +00:00
|
|
|
containerStyle={[styles.content, styles.inputContainer]}
|
|
|
|
inputStyle={[
|
|
|
|
styles.input,
|
|
|
|
styles.textInput,
|
|
|
|
{
|
|
|
|
borderColor: themes[theme].separatorColor,
|
|
|
|
backgroundColor: themes[theme].focusedBackground
|
|
|
|
}
|
|
|
|
]}
|
2019-07-18 17:44:02 +00:00
|
|
|
placeholder=''
|
|
|
|
onChangeText={handleText => this.setState({ value: handleText })}
|
|
|
|
defaultValue={value}
|
|
|
|
multiline
|
|
|
|
textAlignVertical='top'
|
|
|
|
autoFocus
|
2019-12-04 16:39:53 +00:00
|
|
|
theme={theme}
|
2019-07-18 17:44:02 +00:00
|
|
|
/>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
renderError = () => {
|
|
|
|
const { room } = this.state;
|
|
|
|
return (
|
|
|
|
<View style={[styles.container, styles.centered]}>
|
|
|
|
<Text style={styles.title}>
|
|
|
|
{
|
|
|
|
isBlocked(room) ? I18n.t('This_room_is_blocked') : I18n.t('This_room_is_read_only')
|
|
|
|
}
|
|
|
|
</Text>
|
|
|
|
</View>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
render() {
|
2019-12-04 16:39:53 +00:00
|
|
|
const { user, theme } = this.props;
|
2019-07-29 16:33:28 +00:00
|
|
|
const { username } = user;
|
2019-07-18 17:44:02 +00:00
|
|
|
const {
|
|
|
|
name, loading, isMedia, room
|
|
|
|
} = this.state;
|
|
|
|
|
|
|
|
if (isReadOnly(room, { username }) || isBlocked(room)) {
|
|
|
|
return this.renderError();
|
|
|
|
}
|
|
|
|
|
|
|
|
return (
|
2019-12-04 16:39:53 +00:00
|
|
|
<View style={[styles.container, { backgroundColor: themes[theme].auxiliaryBackground }]}>
|
|
|
|
<View
|
|
|
|
style={[
|
|
|
|
isMedia
|
|
|
|
? styles.toContent
|
|
|
|
: styles.toContentText,
|
|
|
|
{
|
|
|
|
backgroundColor: isMedia
|
|
|
|
? themes[theme].focusedBackground
|
|
|
|
: themes[theme].auxiliaryBackground
|
|
|
|
}
|
|
|
|
]}
|
|
|
|
>
|
2019-07-18 17:44:02 +00:00
|
|
|
<Text style={styles.text} numberOfLines={1}>
|
2019-12-04 16:39:53 +00:00
|
|
|
<Text style={[styles.to, { color: themes[theme].auxiliaryText }]}>{`${ I18n.t('To') }: `}</Text>
|
|
|
|
<Text style={[styles.name, { color: themes[theme].titleText }]}>{`${ name }`}</Text>
|
2019-07-18 17:44:02 +00:00
|
|
|
</Text>
|
|
|
|
</View>
|
2019-12-04 16:39:53 +00:00
|
|
|
<View style={[styles.content, { backgroundColor: themes[theme].auxiliaryBackground }]}>
|
2019-07-18 17:44:02 +00:00
|
|
|
{isMedia ? this.renderMediaContent() : this.renderInput()}
|
|
|
|
</View>
|
2019-12-04 16:39:53 +00:00
|
|
|
{ loading ? <ActivityIndicator size='large' theme={theme} absolute /> : null }
|
2019-10-02 12:18:08 +00:00
|
|
|
</View>
|
2019-07-18 17:44:02 +00:00
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|
2019-08-07 13:51:34 +00:00
|
|
|
|
|
|
|
const mapStateToProps = (({ share }) => ({
|
|
|
|
user: {
|
|
|
|
id: share.user && share.user.id,
|
|
|
|
username: share.user && share.user.username,
|
|
|
|
token: share.user && share.user.token
|
|
|
|
},
|
|
|
|
baseUrl: share ? share.server : ''
|
|
|
|
}));
|
|
|
|
|
2019-12-04 16:39:53 +00:00
|
|
|
export default connect(mapStateToProps)(withTheme(ShareView));
|