[FIX] In some cases, share extension doesn't load images (#1649)
This commit is contained in:
parent
98f12bc058
commit
75c7f76c1f
|
@ -114,7 +114,7 @@ class ShareListView extends React.Component {
|
|||
this.willBlurListener = props.navigation.addListener('willBlur', () => BackHandler.addEventListener('hardwareBackPress', this.handleBackPress));
|
||||
}
|
||||
|
||||
async componentDidMount() {
|
||||
componentDidMount() {
|
||||
const { navigation, server } = this.props;
|
||||
navigation.setParams({
|
||||
initSearch: this.initSearch,
|
||||
|
@ -122,30 +122,32 @@ class ShareListView extends React.Component {
|
|||
search: this.search
|
||||
});
|
||||
|
||||
try {
|
||||
const { value, type } = await ShareExtension.data();
|
||||
let fileInfo = null;
|
||||
const isMedia = (type === 'media');
|
||||
if (isMedia) {
|
||||
this.setState({ mediaLoading: true });
|
||||
const data = await RNFetchBlob.fs.stat(this.uriToPath(value));
|
||||
fileInfo = {
|
||||
name: data.filename,
|
||||
description: '',
|
||||
size: data.size,
|
||||
mime: mime.lookup(data.path),
|
||||
path: isIOS ? data.path : `file://${ data.path }`
|
||||
};
|
||||
setTimeout(async() => {
|
||||
try {
|
||||
const { value, type } = await ShareExtension.data();
|
||||
let fileInfo = null;
|
||||
const isMedia = (type === 'media');
|
||||
if (isMedia) {
|
||||
this.setState({ mediaLoading: true });
|
||||
const data = await RNFetchBlob.fs.stat(this.uriToPath(value));
|
||||
fileInfo = {
|
||||
name: data.filename,
|
||||
description: '',
|
||||
size: data.size,
|
||||
mime: mime.lookup(data.path),
|
||||
path: isIOS ? data.path : `file://${ data.path }`
|
||||
};
|
||||
}
|
||||
this.setState({
|
||||
value, fileInfo, isMedia, mediaLoading: false
|
||||
});
|
||||
} catch (e) {
|
||||
log(e);
|
||||
this.setState({ mediaLoading: false });
|
||||
}
|
||||
this.setState({
|
||||
value, fileInfo, isMedia, mediaLoading: false
|
||||
});
|
||||
} catch (e) {
|
||||
log(e);
|
||||
this.setState({ mediaLoading: false });
|
||||
}
|
||||
|
||||
this.getSubscriptions(server);
|
||||
this.getSubscriptions(server);
|
||||
}, 500);
|
||||
}
|
||||
|
||||
componentWillReceiveProps(nextProps) {
|
||||
|
|
Loading…
Reference in New Issue