Skip to content

Commit

Permalink
Merge pull request #35636 from Expensify/revert-34505-kidroca/feat/at…
Browse files Browse the repository at this point in the history
…tachment-with-headers

Revert "Image Web/Desktop: Add support for http headers"

(cherry picked from commit 7860ee8)
  • Loading branch information
MonilBhavsar authored and OSBotify committed Feb 2, 2024
1 parent a0ba17c commit c36fc85
Show file tree
Hide file tree
Showing 7 changed files with 98 additions and 290 deletions.
200 changes: 0 additions & 200 deletions patches/react-native-web+0.19.9+005+image-header-support.patch

This file was deleted.

32 changes: 0 additions & 32 deletions src/components/Image/BaseImage.native.tsx

This file was deleted.

32 changes: 0 additions & 32 deletions src/components/Image/BaseImage.tsx

This file was deleted.

52 changes: 34 additions & 18 deletions src/components/Image/index.js
Original file line number Diff line number Diff line change
@@ -1,35 +1,51 @@
import lodashGet from 'lodash/get';
import React, {useMemo} from 'react';
import React, {useEffect, useMemo} from 'react';
import {Image as RNImage} from 'react-native';
import {withOnyx} from 'react-native-onyx';
import CONST from '@src/CONST';
import _ from 'underscore';
import ONYXKEYS from '@src/ONYXKEYS';
import BaseImage from './BaseImage';
import {defaultProps, imagePropTypes} from './imagePropTypes';
import RESIZE_MODES from './resizeModes';

function Image({source: propsSource, isAuthTokenRequired, session, ...forwardedProps}) {
// Update the source to include the auth token if required
function Image(props) {
const {source: propsSource, isAuthTokenRequired, onLoad, session} = props;
/**
* Check if the image source is a URL - if so the `encryptedAuthToken` is appended
* to the source.
*/
const source = useMemo(() => {
if (typeof lodashGet(propsSource, 'uri') === 'number') {
return propsSource.uri;
if (isAuthTokenRequired) {
// There is currently a `react-native-web` bug preventing the authToken being passed
// in the headers of the image request so the authToken is added as a query param.
// On native the authToken IS passed in the image request headers
const authToken = lodashGet(session, 'encryptedAuthToken', null);
return {uri: `${propsSource.uri}?encryptedAuthToken=${encodeURIComponent(authToken)}`};
}
if (typeof propsSource !== 'number' && isAuthTokenRequired) {
const authToken = lodashGet(session, 'encryptedAuthToken');
return {
...propsSource,
headers: {
[CONST.CHAT_ATTACHMENT_TOKEN_KEY]: authToken,
},
};
}

return propsSource;
// The session prop is not required, as it causes the image to reload whenever the session changes. For more information, please refer to issue #26034.
// eslint-disable-next-line react-hooks/exhaustive-deps
}, [propsSource, isAuthTokenRequired]);

/**
* The natural image dimensions are retrieved using the updated source
* and as a result the `onLoad` event needs to be manually invoked to return these dimensions
*/
useEffect(() => {
// If an onLoad callback was specified then manually call it and pass
// the natural image dimensions to match the native API
if (onLoad == null) {
return;
}
RNImage.getSize(source.uri, (width, height) => {
onLoad({nativeEvent: {width, height}});
});
}, [onLoad, source]);

// Omit the props which the underlying RNImage won't use
const forwardedProps = _.omit(props, ['source', 'onLoad', 'session', 'isAuthTokenRequired']);

return (
<BaseImage
<RNImage
// eslint-disable-next-line react/jsx-props-no-spreading
{...forwardedProps}
source={source}
Expand Down
Loading

0 comments on commit c36fc85

Please sign in to comment.