Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: Prepare image placeholder for not loaded image and prevent jumping #16941

Merged
merged 5 commits into from
Feb 28, 2024
Merged
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
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,8 @@ export interface ImageAssetProps {
isFocusable?: boolean;
}

const MAX_ASSET_WIDTH = 800;

export const ImageAsset = ({
asset,
message,
Expand Down Expand Up @@ -103,21 +105,24 @@ export const ImageAsset = ({
maxWidth: 'var(--conversation-message-asset-width)',
};

const isImageWidthLargerThanDefined = parseInt(asset.width, 10) >= MAX_ASSET_WIDTH;
const imageWidth = isImageWidthLargerThanDefined ? `${MAX_ASSET_WIDTH}px` : asset.width;

const imageAsset: CSSObject = {
aspectRatio: isFileSharingReceivingEnabled ? `${asset.ratio}` : undefined,
...(!imageUrl?.url
? {
maxWidth: asset.width,
maxHeight: asset.height,
}
: {
maxWidth: asset.width,
maxHeight: '80vh',
}),
maxHeight: '80vh',
maxWidth: !imageUrl?.url ? '100%' : imageWidth,

...(!imageUrl?.url &&
!isImageWidthLargerThanDefined && {
height: asset.height,
}),
};

const imageStyle: CSSObject = {
width: '100%',
width: imageWidth,
maxWidth: '100%',
height: 'auto',
};

return (
Expand Down
Loading