import React, { useContext } from 'react';
import { View } from 'react-native';
import FastImage from '@rocket.chat/react-native-fast-image';
import { dequal } from 'dequal';
import { createImageProgress } from 'react-native-image-progress';
import * as Progress from 'react-native-progress';

import Touchable from './Touchable';
import Markdown from '../markdown';
import styles from './styles';
import { formatAttachmentUrl } from '../../lib/utils';
import { themes } from '../../constants/colors';
import MessageContext from './Context';

type TMessageButton = {
	children: JSX.Element;
	onPress: Function;
	theme: string;
};

type TMessageImage = {
	img: string;
	theme: string;
};

interface IMessageImage {
	file: { image_url: string; description?: string };
	imageUrl?: string;
	showAttachment: Function;
	theme: string;
	getCustomEmoji: Function;
}

const ImageProgress = createImageProgress(FastImage);

const Button = React.memo(({ children, onPress, theme }: TMessageButton) => (
	<Touchable onPress={onPress} style={styles.imageContainer} background={Touchable.Ripple(themes[theme].bannerBackground)}>
		{children}
	</Touchable>
));

export const MessageImage = React.memo(({ img, theme }: TMessageImage) => (
	<ImageProgress
		style={[styles.image, { borderColor: themes[theme].borderColor }]}
		source={{ uri: encodeURI(img) }}
		resizeMode={FastImage.resizeMode.cover}
		indicator={Progress.Pie}
		indicatorProps={{
			color: themes[theme].actionTintColor
		}}
	/>
));

const ImageContainer = React.memo(
	({ file, imageUrl, showAttachment, getCustomEmoji, theme }: IMessageImage) => {
		const { baseUrl, user } = useContext(MessageContext);
		const img = imageUrl || formatAttachmentUrl(file.image_url, user.id, user.token, baseUrl);
		if (!img) {
			return null;
		}

		const onPress = () => showAttachment(file);

		if (file.description) {
			return (
				<Button theme={theme} onPress={onPress}>
					<View>
						<MessageImage img={img} theme={theme} />
						{/* @ts-ignore */}
						<Markdown
							msg={file.description}
							baseUrl={baseUrl}
							username={user.username}
							getCustomEmoji={getCustomEmoji}
							theme={theme}
						/>
					</View>
				</Button>
			);
		}

		return (
			<Button theme={theme} onPress={onPress}>
				<MessageImage img={img} theme={theme} />
			</Button>
		);
	},
	(prevProps, nextProps) => dequal(prevProps.file, nextProps.file) && prevProps.theme === nextProps.theme
);

ImageContainer.displayName = 'MessageImageContainer';
MessageImage.displayName = 'MessageImage';

export default ImageContainer;