2020-06-26 20:22:56 +00:00
|
|
|
import React, { Component } from 'react';
|
2021-11-16 16:19:50 +00:00
|
|
|
import { StackNavigationOptions, StackNavigationProp } from '@react-navigation/stack';
|
|
|
|
import { RouteProp } from '@react-navigation/native';
|
2021-09-13 20:41:05 +00:00
|
|
|
import { NativeModules, Text, View } from 'react-native';
|
2019-07-18 17:44:02 +00:00
|
|
|
import { connect } from 'react-redux';
|
|
|
|
import ShareExtension from 'rn-extensions-share';
|
2021-12-13 16:27:01 +00:00
|
|
|
import { Q } from '@nozbe/watermelondb';
|
2019-07-18 17:44:02 +00:00
|
|
|
|
2021-12-03 19:27:57 +00:00
|
|
|
import { InsideStackParamList } from '../../stacks/types';
|
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';
|
2020-06-26 20:22:56 +00:00
|
|
|
import Loading from '../../containers/Loading';
|
2020-10-30 16:15:58 +00:00
|
|
|
import * as HeaderButton from '../../containers/HeaderButton';
|
2020-04-13 13:56:30 +00:00
|
|
|
import { isBlocked } from '../../utils/room';
|
|
|
|
import { isReadOnly } from '../../utils/isReadOnly';
|
2019-12-04 16:39:53 +00:00
|
|
|
import { withTheme } from '../../theme';
|
2020-06-26 20:22:56 +00:00
|
|
|
import RocketChat from '../../lib/rocketchat';
|
|
|
|
import TextInput from '../../containers/TextInput';
|
|
|
|
import MessageBox from '../../containers/MessageBox';
|
|
|
|
import SafeAreaView from '../../containers/SafeAreaView';
|
|
|
|
import { getUserSelector } from '../../selectors/login';
|
|
|
|
import StatusBar from '../../containers/StatusBar';
|
|
|
|
import database from '../../lib/database';
|
|
|
|
import { canUploadFile } from '../../utils/media';
|
2021-02-01 17:18:55 +00:00
|
|
|
import { isAndroid } from '../../utils/deviceInfo';
|
2021-09-13 20:41:05 +00:00
|
|
|
import Thumbs from './Thumbs';
|
|
|
|
import Preview from './Preview';
|
|
|
|
import Header from './Header';
|
|
|
|
import styles from './styles';
|
2021-12-03 19:27:57 +00:00
|
|
|
import { IAttachment } from './interfaces';
|
2022-01-11 13:51:48 +00:00
|
|
|
import { ISubscription } from '../../definitions/ISubscription';
|
2021-11-16 16:19:50 +00:00
|
|
|
|
|
|
|
interface IShareViewState {
|
|
|
|
selected: IAttachment;
|
|
|
|
loading: boolean;
|
|
|
|
readOnly: boolean;
|
|
|
|
attachments: IAttachment[];
|
|
|
|
text: string;
|
2022-01-11 13:51:48 +00:00
|
|
|
room: ISubscription;
|
2021-12-03 19:27:57 +00:00
|
|
|
thread: any; // change
|
2021-11-16 16:19:50 +00:00
|
|
|
maxFileSize: number;
|
2022-01-12 12:54:04 +00:00
|
|
|
mediaAllowList: string;
|
2021-11-16 16:19:50 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
interface IShareViewProps {
|
2021-12-03 19:27:57 +00:00
|
|
|
navigation: StackNavigationProp<InsideStackParamList, 'ShareView'>;
|
|
|
|
route: RouteProp<InsideStackParamList, 'ShareView'>;
|
2021-11-16 16:19:50 +00:00
|
|
|
theme: string;
|
|
|
|
user: {
|
|
|
|
id: string;
|
|
|
|
username: string;
|
|
|
|
token: string;
|
|
|
|
};
|
|
|
|
server: string;
|
2022-01-12 12:54:04 +00:00
|
|
|
FileUpload_MediaTypeWhiteList?: string;
|
2021-11-16 16:19:50 +00:00
|
|
|
FileUpload_MaxFileSize?: number;
|
|
|
|
}
|
2019-07-18 17:44:02 +00:00
|
|
|
|
2021-11-16 16:19:50 +00:00
|
|
|
interface IMessageBoxShareView {
|
|
|
|
text: string;
|
|
|
|
forceUpdate(): void;
|
|
|
|
}
|
|
|
|
|
|
|
|
class ShareView extends Component<IShareViewProps, IShareViewState> {
|
|
|
|
private messagebox: React.RefObject<IMessageBoxShareView>;
|
|
|
|
private files: any[];
|
|
|
|
private isShareExtension: boolean;
|
|
|
|
private serverInfo: any;
|
|
|
|
|
|
|
|
constructor(props: IShareViewProps) {
|
2019-07-18 17:44:02 +00:00
|
|
|
super(props);
|
2020-06-26 20:22:56 +00:00
|
|
|
this.messagebox = React.createRef();
|
|
|
|
this.files = props.route.params?.attachments ?? [];
|
|
|
|
this.isShareExtension = props.route.params?.isShareExtension;
|
|
|
|
this.serverInfo = props.route.params?.serverInfo ?? {};
|
2019-07-18 17:44:02 +00:00
|
|
|
|
|
|
|
this.state = {
|
2021-11-16 16:19:50 +00:00
|
|
|
selected: {} as IAttachment,
|
2019-07-18 17:44:02 +00:00
|
|
|
loading: false,
|
2020-04-13 12:51:16 +00:00
|
|
|
readOnly: false,
|
2020-06-26 20:22:56 +00:00
|
|
|
attachments: [],
|
|
|
|
text: props.route.params?.text ?? '',
|
|
|
|
room: props.route.params?.room ?? {},
|
|
|
|
thread: props.route.params?.thread ?? {},
|
|
|
|
maxFileSize: this.isShareExtension ? this.serverInfo?.FileUpload_MaxFileSize : props.FileUpload_MaxFileSize,
|
|
|
|
mediaAllowList: this.isShareExtension ? this.serverInfo?.FileUpload_MediaTypeWhiteList : props.FileUpload_MediaTypeWhiteList
|
2019-07-18 17:44:02 +00:00
|
|
|
};
|
2020-06-26 20:22:56 +00:00
|
|
|
this.getServerInfo();
|
|
|
|
}
|
|
|
|
|
2021-09-13 20:41:05 +00:00
|
|
|
componentDidMount = async () => {
|
2020-06-26 20:22:56 +00:00
|
|
|
const readOnly = await this.getReadOnly();
|
|
|
|
const { attachments, selected } = await this.getAttachments();
|
|
|
|
this.setState({ readOnly, attachments, selected }, () => this.setHeader());
|
2021-09-13 20:41:05 +00:00
|
|
|
};
|
2020-04-13 12:51:16 +00:00
|
|
|
|
2020-06-26 20:22:56 +00:00
|
|
|
componentWillUnmount = () => {
|
2021-09-13 20:41:05 +00:00
|
|
|
console.countReset(`${this.constructor.name}.render calls`);
|
|
|
|
};
|
2019-07-18 17:44:02 +00:00
|
|
|
|
2020-06-15 14:00:46 +00:00
|
|
|
setHeader = () => {
|
2021-09-13 20:41:05 +00:00
|
|
|
const { room, thread, readOnly, attachments } = this.state;
|
2020-06-26 20:22:56 +00:00
|
|
|
const { navigation, theme } = this.props;
|
|
|
|
|
2021-11-16 16:19:50 +00:00
|
|
|
const options: StackNavigationOptions = {
|
2020-06-26 20:22:56 +00:00
|
|
|
headerTitle: () => <Header room={room} thread={thread} />,
|
|
|
|
headerTitleAlign: 'left',
|
|
|
|
headerTintColor: themes[theme].previewTintColor
|
|
|
|
};
|
|
|
|
|
|
|
|
// if is share extension show default back button
|
|
|
|
if (!this.isShareExtension) {
|
2021-11-16 16:19:50 +00:00
|
|
|
options.headerLeft = () => <HeaderButton.CloseModal navigation={navigation} />;
|
2020-06-26 20:22:56 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if (!attachments.length && !readOnly) {
|
|
|
|
options.headerRight = () => (
|
2020-10-30 16:15:58 +00:00
|
|
|
<HeaderButton.Container>
|
2022-01-17 16:10:39 +00:00
|
|
|
<HeaderButton.Item title={I18n.t('Send')} onPress={this.send} />
|
2020-10-30 16:15:58 +00:00
|
|
|
</HeaderButton.Container>
|
2020-06-26 20:22:56 +00:00
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
options.headerBackground = () => <View style={[styles.container, { backgroundColor: themes[theme].previewBackground }]} />;
|
|
|
|
|
|
|
|
navigation.setOptions(options);
|
2021-09-13 20:41:05 +00:00
|
|
|
};
|
2020-06-26 20:22:56 +00:00
|
|
|
|
|
|
|
// fetch server info
|
2021-09-13 20:41:05 +00:00
|
|
|
getServerInfo = async () => {
|
2020-06-26 20:22:56 +00:00
|
|
|
const { server } = this.props;
|
|
|
|
const serversDB = database.servers;
|
2021-02-26 16:25:51 +00:00
|
|
|
const serversCollection = serversDB.get('servers');
|
2020-06-26 20:22:56 +00:00
|
|
|
try {
|
|
|
|
this.serverInfo = await serversCollection.find(server);
|
|
|
|
} catch (error) {
|
|
|
|
// Do nothing
|
|
|
|
}
|
2021-09-13 20:41:05 +00:00
|
|
|
};
|
2020-04-13 12:51:16 +00:00
|
|
|
|
2021-12-13 16:27:01 +00:00
|
|
|
getPermissionMobileUpload = async () => {
|
|
|
|
const { room } = this.state;
|
|
|
|
const db = database.active;
|
|
|
|
const permissionsCollection = db.get('permissions');
|
|
|
|
const uploadFilePermissionFetch = await permissionsCollection.query(Q.where('id', Q.like('mobile-upload-file'))).fetch();
|
|
|
|
const uploadFilePermission = uploadFilePermissionFetch[0]?.roles;
|
|
|
|
const permissionToUpload = await RocketChat.hasPermission([uploadFilePermission], room.rid);
|
|
|
|
// uploadFilePermission as undefined is considered that there isn't this permission, so all can upload file.
|
|
|
|
return !uploadFilePermission || permissionToUpload[0];
|
|
|
|
};
|
|
|
|
|
2021-09-13 20:41:05 +00:00
|
|
|
getReadOnly = async () => {
|
2019-07-18 17:44:02 +00:00
|
|
|
const { room } = this.state;
|
2020-06-15 14:00:46 +00:00
|
|
|
const { user } = this.props;
|
2020-06-26 20:22:56 +00:00
|
|
|
const readOnly = await isReadOnly(room, user);
|
|
|
|
return readOnly;
|
2021-09-13 20:41:05 +00:00
|
|
|
};
|
2019-07-18 17:44:02 +00:00
|
|
|
|
2021-09-13 20:41:05 +00:00
|
|
|
getAttachments = async () => {
|
2020-06-26 20:22:56 +00:00
|
|
|
const { mediaAllowList, maxFileSize } = this.state;
|
2021-12-13 16:27:01 +00:00
|
|
|
const permissionToUploadFile = await this.getPermissionMobileUpload();
|
|
|
|
|
2021-09-13 20:41:05 +00:00
|
|
|
const items = await Promise.all(
|
|
|
|
this.files.map(async item => {
|
|
|
|
// Check server settings
|
2021-12-13 16:27:01 +00:00
|
|
|
const { success: canUpload, error } = canUploadFile(item, mediaAllowList, maxFileSize, permissionToUploadFile);
|
2021-09-13 20:41:05 +00:00
|
|
|
item.canUpload = canUpload;
|
|
|
|
item.error = error;
|
|
|
|
|
|
|
|
// get video thumbnails
|
|
|
|
if (isAndroid && this.files.length > 1 && item.mime?.match?.(/video/)) {
|
|
|
|
try {
|
|
|
|
const VideoThumbnails = require('expo-video-thumbnails');
|
|
|
|
const { uri } = await VideoThumbnails.getThumbnailAsync(item.path);
|
|
|
|
item.uri = uri;
|
|
|
|
} catch {
|
|
|
|
// Do nothing
|
|
|
|
}
|
2020-06-26 20:22:56 +00:00
|
|
|
}
|
|
|
|
|
2021-09-13 20:41:05 +00:00
|
|
|
// Set a filename, if there isn't any
|
|
|
|
if (!item.filename) {
|
|
|
|
item.filename = new Date().toISOString();
|
|
|
|
}
|
|
|
|
return item;
|
|
|
|
})
|
|
|
|
);
|
2020-06-26 20:22:56 +00:00
|
|
|
return {
|
|
|
|
attachments: items,
|
|
|
|
selected: items[0]
|
|
|
|
};
|
2021-09-13 20:41:05 +00:00
|
|
|
};
|
2019-07-18 17:44:02 +00:00
|
|
|
|
2021-09-13 20:41:05 +00:00
|
|
|
send = async () => {
|
2020-06-26 20:22:56 +00:00
|
|
|
const { loading, selected } = this.state;
|
2019-12-18 19:31:41 +00:00
|
|
|
if (loading) {
|
|
|
|
return;
|
|
|
|
}
|
2019-07-18 17:44:02 +00:00
|
|
|
|
2020-06-26 20:22:56 +00:00
|
|
|
// update state
|
|
|
|
await this.selectFile(selected);
|
|
|
|
|
2021-09-13 20:41:05 +00:00
|
|
|
const { attachments, room, text, thread } = this.state;
|
2020-06-26 20:22:56 +00:00
|
|
|
const { navigation, server, user } = this.props;
|
|
|
|
|
|
|
|
// if it's share extension this should show loading
|
|
|
|
if (this.isShareExtension) {
|
|
|
|
this.setState({ loading: true });
|
|
|
|
|
2021-09-13 20:41:05 +00:00
|
|
|
// if it's not share extension this can close
|
2019-07-18 17:44:02 +00:00
|
|
|
} else {
|
2020-06-26 20:22:56 +00:00
|
|
|
navigation.pop();
|
2019-07-18 17:44:02 +00:00
|
|
|
}
|
|
|
|
|
2020-06-26 20:22:56 +00:00
|
|
|
try {
|
|
|
|
// Send attachment
|
|
|
|
if (attachments.length) {
|
2021-09-13 20:41:05 +00:00
|
|
|
await Promise.all(
|
|
|
|
attachments.map(({ filename: name, mime: type, description, size, path, canUpload }) => {
|
|
|
|
if (canUpload) {
|
|
|
|
return RocketChat.sendFileMessage(
|
|
|
|
room.rid,
|
|
|
|
{
|
|
|
|
name,
|
|
|
|
description,
|
|
|
|
size,
|
|
|
|
type,
|
|
|
|
path,
|
|
|
|
store: 'Uploads'
|
|
|
|
},
|
|
|
|
thread?.id,
|
|
|
|
server,
|
|
|
|
{ id: user.id, token: user.token }
|
|
|
|
);
|
|
|
|
}
|
|
|
|
return Promise.resolve();
|
|
|
|
})
|
|
|
|
);
|
|
|
|
|
|
|
|
// Send text message
|
2020-06-26 20:22:56 +00:00
|
|
|
} else if (text.length) {
|
2020-07-03 14:07:29 +00:00
|
|
|
await RocketChat.sendMessage(room.rid, text, thread?.id, { id: user.id, token: user.token });
|
2019-07-18 17:44:02 +00:00
|
|
|
}
|
2020-06-26 20:22:56 +00:00
|
|
|
} catch {
|
|
|
|
// Do nothing
|
2019-07-18 17:44:02 +00:00
|
|
|
}
|
|
|
|
|
2020-06-26 20:22:56 +00:00
|
|
|
// if it's share extension this should close
|
|
|
|
if (this.isShareExtension) {
|
|
|
|
ShareExtension.close();
|
2019-07-18 17:44:02 +00:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2021-11-16 16:19:50 +00:00
|
|
|
selectFile = (item: IAttachment) => {
|
2020-06-26 20:22:56 +00:00
|
|
|
const { attachments, selected } = this.state;
|
|
|
|
if (attachments.length > 0) {
|
2021-11-16 16:19:50 +00:00
|
|
|
const text = this.messagebox.current?.text;
|
2021-09-13 20:41:05 +00:00
|
|
|
const newAttachments = attachments.map(att => {
|
2020-06-26 20:22:56 +00:00
|
|
|
if (att.path === selected.path) {
|
|
|
|
att.description = text;
|
|
|
|
}
|
|
|
|
return att;
|
|
|
|
});
|
|
|
|
return this.setState({ attachments: newAttachments, selected: item });
|
|
|
|
}
|
2021-09-13 20:41:05 +00:00
|
|
|
};
|
2019-07-18 17:44:02 +00:00
|
|
|
|
2021-11-16 16:19:50 +00:00
|
|
|
removeFile = (item: IAttachment) => {
|
2020-06-26 20:22:56 +00:00
|
|
|
const { selected, attachments } = this.state;
|
|
|
|
let newSelected;
|
|
|
|
if (item.path === selected.path) {
|
|
|
|
const selectedIndex = attachments.findIndex(att => att.path === selected.path);
|
|
|
|
// Selects the next one, if available
|
|
|
|
if (attachments[selectedIndex + 1]?.path) {
|
|
|
|
newSelected = attachments[selectedIndex + 1];
|
2021-09-13 20:41:05 +00:00
|
|
|
// If it's the last thumb, selects the previous one
|
2020-06-26 20:22:56 +00:00
|
|
|
} else {
|
|
|
|
newSelected = attachments[selectedIndex - 1] || {};
|
|
|
|
}
|
|
|
|
}
|
2021-02-26 16:01:45 +00:00
|
|
|
this.setState({ attachments: attachments.filter(att => att.path !== item.path), selected: newSelected ?? selected }, () => {
|
|
|
|
this.messagebox?.current?.forceUpdate?.();
|
|
|
|
});
|
2021-09-13 20:41:05 +00:00
|
|
|
};
|
2019-07-18 17:44:02 +00:00
|
|
|
|
2021-11-16 16:19:50 +00:00
|
|
|
onChangeText = (text: string) => {
|
2020-06-26 20:22:56 +00:00
|
|
|
this.setState({ text });
|
2021-09-13 20:41:05 +00:00
|
|
|
};
|
2019-07-18 17:44:02 +00:00
|
|
|
|
2020-06-26 20:22:56 +00:00
|
|
|
renderContent = () => {
|
2021-09-13 20:41:05 +00:00
|
|
|
const { attachments, selected, room, text } = this.state;
|
2020-06-26 20:22:56 +00:00
|
|
|
const { theme, navigation } = this.props;
|
|
|
|
|
|
|
|
if (attachments.length) {
|
|
|
|
return (
|
|
|
|
<View style={styles.container}>
|
|
|
|
<Preview
|
|
|
|
// using key just to reset zoom/move after change selected
|
|
|
|
key={selected?.path}
|
|
|
|
item={selected}
|
|
|
|
length={attachments.length}
|
2019-12-04 16:39:53 +00:00
|
|
|
theme={theme}
|
2020-06-26 20:22:56 +00:00
|
|
|
isShareExtension={this.isShareExtension}
|
2019-07-18 17:44:02 +00:00
|
|
|
/>
|
2020-06-26 20:22:56 +00:00
|
|
|
<MessageBox
|
|
|
|
showSend
|
|
|
|
sharing
|
|
|
|
ref={this.messagebox}
|
|
|
|
rid={room.rid}
|
|
|
|
roomType={room.t}
|
2019-12-04 16:39:53 +00:00
|
|
|
theme={theme}
|
2020-06-26 20:22:56 +00:00
|
|
|
onSubmit={this.send}
|
|
|
|
message={{ msg: selected?.description ?? '' }}
|
|
|
|
navigation={navigation}
|
|
|
|
isFocused={navigation.isFocused}
|
|
|
|
iOSScrollBehavior={NativeModules.KeyboardTrackingViewManager?.KeyboardTrackingScrollBehaviorNone}
|
2021-09-13 20:41:05 +00:00
|
|
|
isActionsEnabled={false}>
|
2020-06-26 20:22:56 +00:00
|
|
|
<Thumbs
|
|
|
|
attachments={attachments}
|
|
|
|
theme={theme}
|
|
|
|
isShareExtension={this.isShareExtension}
|
|
|
|
onPress={this.selectFile}
|
|
|
|
onRemove={this.removeFile}
|
|
|
|
/>
|
|
|
|
</MessageBox>
|
2019-07-18 17:44:02 +00:00
|
|
|
</View>
|
2020-06-26 20:22:56 +00:00
|
|
|
);
|
|
|
|
}
|
2019-07-18 17:44:02 +00:00
|
|
|
|
|
|
|
return (
|
|
|
|
<TextInput
|
2020-06-26 20:22:56 +00:00
|
|
|
containerStyle={styles.inputContainer}
|
2021-09-13 20:41:05 +00:00
|
|
|
inputStyle={[styles.input, styles.textInput, { backgroundColor: themes[theme].focusedBackground }]}
|
2019-07-18 17:44:02 +00:00
|
|
|
placeholder=''
|
2020-06-26 20:22:56 +00:00
|
|
|
onChangeText={this.onChangeText}
|
|
|
|
defaultValue=''
|
2019-07-18 17:44:02 +00:00
|
|
|
multiline
|
|
|
|
textAlignVertical='top'
|
|
|
|
autoFocus
|
2019-12-04 16:39:53 +00:00
|
|
|
theme={theme}
|
2020-06-26 20:22:56 +00:00
|
|
|
value={text}
|
2019-07-18 17:44:02 +00:00
|
|
|
/>
|
|
|
|
);
|
2020-06-26 20:22:56 +00:00
|
|
|
};
|
2019-07-18 17:44:02 +00:00
|
|
|
|
|
|
|
render() {
|
2021-09-13 20:41:05 +00:00
|
|
|
console.count(`${this.constructor.name}.render calls`);
|
2020-06-26 20:22:56 +00:00
|
|
|
const { readOnly, room, loading } = this.state;
|
2020-04-13 12:51:16 +00:00
|
|
|
const { theme } = this.props;
|
|
|
|
if (readOnly || isBlocked(room)) {
|
2020-06-26 20:22:56 +00:00
|
|
|
return (
|
|
|
|
<View style={[styles.container, styles.centered, { backgroundColor: themes[theme].backgroundColor }]}>
|
|
|
|
<Text style={[styles.title, { color: themes[theme].titleText }]}>
|
|
|
|
{isBlocked(room) ? I18n.t('This_room_is_blocked') : I18n.t('This_room_is_read_only')}
|
2019-07-18 17:44:02 +00:00
|
|
|
</Text>
|
|
|
|
</View>
|
2020-06-26 20:22:56 +00:00
|
|
|
);
|
|
|
|
}
|
|
|
|
return (
|
2021-09-13 20:41:05 +00:00
|
|
|
<SafeAreaView style={{ backgroundColor: themes[theme].backgroundColor }}>
|
2020-06-26 20:22:56 +00:00
|
|
|
<StatusBar barStyle='light-content' backgroundColor={themes[theme].previewBackground} />
|
|
|
|
{this.renderContent()}
|
2022-01-17 16:10:39 +00:00
|
|
|
<Loading visible={loading} theme={theme} />
|
2020-06-26 20:22:56 +00:00
|
|
|
</SafeAreaView>
|
2019-07-18 17:44:02 +00:00
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|
2019-08-07 13:51:34 +00:00
|
|
|
|
2021-11-16 16:19:50 +00:00
|
|
|
const mapStateToProps = (state: any) => ({
|
2020-06-26 20:22:56 +00:00
|
|
|
user: getUserSelector(state),
|
2020-11-04 16:53:44 +00:00
|
|
|
server: state.share.server.server || state.server.server,
|
2020-06-26 20:22:56 +00:00
|
|
|
FileUpload_MediaTypeWhiteList: state.settings.FileUpload_MediaTypeWhiteList,
|
|
|
|
FileUpload_MaxFileSize: state.settings.FileUpload_MaxFileSize
|
|
|
|
});
|
2019-08-07 13:51:34 +00:00
|
|
|
|
2019-12-04 16:39:53 +00:00
|
|
|
export default connect(mapStateToProps)(withTheme(ShareView));
|