Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 7 additions & 2 deletions src/components/AttachmentCarousel/index.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import React from 'react';
import {View, FlatList, PixelRatio} from 'react-native';
import {View, FlatList, PixelRatio, Keyboard} from 'react-native';
import PropTypes from 'prop-types';
import {withOnyx} from 'react-native-onyx';
import _ from 'underscore';
Expand Down Expand Up @@ -195,6 +195,7 @@ class AttachmentCarousel extends React.Component {
shouldShowArrow: this.canUseTouchScreen,
containerWidth: 0,
isZoomed: false,
activeSource: null,
};
}

Expand Down Expand Up @@ -225,16 +226,18 @@ class AttachmentCarousel extends React.Component {
* @param {Array<{item: {source, file}, index: Number}>} viewableItems
*/
updatePage({viewableItems}) {
Keyboard.dismiss();
// Since we can have only one item in view at a time, we can use the first item in the array
// to get the index of the current page
const entry = _.first(viewableItems);
if (!entry) {
this.setState({activeSource: null});
return;
}

const page = entry.index;
this.props.onNavigate(entry.item);
this.setState({page, isZoomed: false});
this.setState({page, isZoomed: false, activeSource: entry.item.source});
}

/**
Expand Down Expand Up @@ -265,6 +268,7 @@ class AttachmentCarousel extends React.Component {
renderItem({item}) {
return (
<AttachmentView
isFocused={this.state.activeSource === item.source}
source={item.source}
file={item.file}
isAuthTokenRequired={item.isAuthTokenRequired}
Expand Down Expand Up @@ -335,6 +339,7 @@ class AttachmentCarousel extends React.Component {

{this.state.containerWidth > 0 && (
<FlatList
keyboardShouldPersistTaps="handled"
listKey="AttachmentCarousel"
horizontal
decelerationRate="fast"
Expand Down
5 changes: 5 additions & 0 deletions src/components/AttachmentView.js
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,9 @@ const propTypes = {
/** Flag to show the loading indicator */
shouldShowLoadingSpinnerIcon: PropTypes.bool,

/** Whether this view is the active screen */
isFocused: PropTypes.bool,
Comment thread
dukenv0307 marked this conversation as resolved.

/** Function for handle on press */
onPress: PropTypes.func,

Expand Down Expand Up @@ -62,6 +65,7 @@ const defaultProps = {
onScaleChanged: () => {},
onToggleKeyboard: () => {},
containerStyles: [],
isFocused: false,
};

function AttachmentView(props) {
Expand All @@ -86,6 +90,7 @@ function AttachmentView(props) {
const children = (
<PDFView
onPress={props.onPress}
isFocused={props.isFocused}
sourceURL={sourceURL}
style={styles.imageModalPDF}
onToggleKeyboard={props.onToggleKeyboard}
Expand Down
11 changes: 11 additions & 0 deletions src/components/PDFView/PDFPasswordForm.js
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,9 @@ const propTypes = {
/** Notify parent that a text field has been focused or blurred */
onPasswordFieldFocused: PropTypes.func,

/** Should focus to the password input */
isFocused: PropTypes.bool.isRequired,
Comment thread
dukenv0307 marked this conversation as resolved.

...withLocalizePropTypes,
...windowDimensionsPropTypes,
};
Expand All @@ -56,6 +59,13 @@ class PDFPasswordForm extends Component {
this.validateAndNotifyPasswordBlur = this.validateAndNotifyPasswordBlur.bind(this);
}

componentDidUpdate(prevProps) {
if (prevProps.isFocused || !this.props.isFocused || !this.textInputRef) {
return;
}
this.textInputRef.focus();
}

submitPassword() {
if (!this.validate()) {
return;
Expand Down Expand Up @@ -105,6 +115,7 @@ class PDFPasswordForm extends Component {
<Text>{this.props.translate('attachmentView.pdfPasswordForm.formLabel')}</Text>
</View>
<TextInput
ref={(el) => (this.textInputRef = el)}
label={this.props.translate('common.password')}
/**
* This is a workaround to bypass Safari's autofill odd behaviour.
Expand Down
1 change: 1 addition & 0 deletions src/components/PDFView/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -150,6 +150,7 @@ class PDFView extends Component {
</View>
{this.state.shouldRequestPassword && (
<PDFPasswordForm
isFocused={this.props.isFocused}
onSubmit={this.attemptPDFLoad}
onPasswordUpdated={() => this.setState({isPasswordInvalid: false})}
isPasswordInvalid={this.state.isPasswordInvalid}
Expand Down
1 change: 1 addition & 0 deletions src/components/PDFView/index.native.js
Original file line number Diff line number Diff line change
Expand Up @@ -158,6 +158,7 @@ class PDFView extends Component {
{this.state.shouldRequestPassword && (
<KeyboardAvoidingView style={styles.flex1}>
<PDFPasswordForm
isFocused={this.props.isFocused}
onSubmit={this.attemptPDFLoadWithPassword}
onPasswordUpdated={() => this.setState({isPasswordInvalid: false})}
isPasswordInvalid={this.state.isPasswordInvalid}
Expand Down
4 changes: 4 additions & 0 deletions src/components/PDFView/pdfViewPropTypes.js
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,9 @@ const propTypes = {
/** Handles load complete event in PDF component */
onLoadComplete: PropTypes.func,

/** Should focus to the password input */
isFocused: PropTypes.bool,
Comment thread
dukenv0307 marked this conversation as resolved.

...windowDimensionsPropTypes,
};

Expand All @@ -31,6 +34,7 @@ const defaultProps = {
onToggleKeyboard: () => {},
onScaleChanged: () => {},
onLoadComplete: () => {},
isFocused: false,
};

export {propTypes, defaultProps};