|
|
|
@ -1,6 +1,6 @@
|
|
|
|
|
// tslint:disable:react-this-binding-issue
|
|
|
|
|
|
|
|
|
|
import React from 'react';
|
|
|
|
|
import React, { useState } from 'react';
|
|
|
|
|
import classNames from 'classnames';
|
|
|
|
|
|
|
|
|
|
import * as MIME from '../../../ts/types/MIME';
|
|
|
|
@ -12,7 +12,9 @@ import { ContactName } from './ContactName';
|
|
|
|
|
import { PubKey } from '../../session/types';
|
|
|
|
|
import { ConversationTypeEnum } from '../../models/conversation';
|
|
|
|
|
|
|
|
|
|
interface Props {
|
|
|
|
|
import { useEncryptedFileFetch } from '../../hooks/useEncryptedFileFetch';
|
|
|
|
|
|
|
|
|
|
interface QuoteProps {
|
|
|
|
|
attachment?: QuotedAttachmentType;
|
|
|
|
|
authorPhoneNumber: string;
|
|
|
|
|
authorProfileName?: string;
|
|
|
|
@ -25,15 +27,10 @@ interface Props {
|
|
|
|
|
isPublic?: boolean;
|
|
|
|
|
withContentAbove: boolean;
|
|
|
|
|
onClick?: (e: any) => void;
|
|
|
|
|
onClose?: () => void;
|
|
|
|
|
text: string;
|
|
|
|
|
referencedMessageNotFound: boolean;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
interface State {
|
|
|
|
|
imageBroken: boolean;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
export interface QuotedAttachmentType {
|
|
|
|
|
contentType: MIME.MIMEType;
|
|
|
|
|
fileName: string;
|
|
|
|
@ -48,7 +45,7 @@ interface Attachment {
|
|
|
|
|
objectUrl?: string;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function validateQuote(quote: Props): boolean {
|
|
|
|
|
function validateQuote(quote: QuoteProps): boolean {
|
|
|
|
|
if (quote.text) {
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
@ -92,30 +89,11 @@ function getTypeLabel({
|
|
|
|
|
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
export const QuoteIcon = (props: any) => {
|
|
|
|
|
const { icon } = props;
|
|
|
|
|
|
|
|
|
|
export class Quote extends React.Component<Props, State> {
|
|
|
|
|
public handleImageErrorBound: () => void;
|
|
|
|
|
|
|
|
|
|
public constructor(props: Props) {
|
|
|
|
|
super(props);
|
|
|
|
|
|
|
|
|
|
this.handleImageErrorBound = this.handleImageError.bind(this);
|
|
|
|
|
|
|
|
|
|
this.state = {
|
|
|
|
|
imageBroken: false,
|
|
|
|
|
};
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public handleImageError() {
|
|
|
|
|
// tslint:disable-next-line no-console
|
|
|
|
|
console.log('Message: Image failed to load; failing over to placeholder');
|
|
|
|
|
this.setState({
|
|
|
|
|
imageBroken: true,
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public renderImage(url: string, i18n: LocalizerType, icon?: string) {
|
|
|
|
|
const iconElement = icon ? (
|
|
|
|
|
return (
|
|
|
|
|
<div className="module-quote__icon-container">
|
|
|
|
|
<div className="module-quote__icon-container__inner">
|
|
|
|
|
<div className="module-quote__icon-container__circle-background">
|
|
|
|
|
<div
|
|
|
|
@ -126,19 +104,17 @@ export class Quote extends React.Component<Props, State> {
|
|
|
|
|
/>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
) : null;
|
|
|
|
|
|
|
|
|
|
return (
|
|
|
|
|
<div className="module-quote__icon-container">
|
|
|
|
|
<img src={url} alt={i18n('quoteThumbnailAlt')} onError={this.handleImageErrorBound} />
|
|
|
|
|
{iconElement}
|
|
|
|
|
</div>
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
public renderIcon(icon: string) {
|
|
|
|
|
return (
|
|
|
|
|
<div className="module-quote__icon-container">
|
|
|
|
|
export const QuoteImage = (props: any) => {
|
|
|
|
|
const { url, i18n, icon, contentType, handleImageErrorBound } = props;
|
|
|
|
|
|
|
|
|
|
const { loading, urlToLoad } = useEncryptedFileFetch(url, contentType);
|
|
|
|
|
const srcData = !loading ? urlToLoad : '';
|
|
|
|
|
|
|
|
|
|
const iconElement = icon ? (
|
|
|
|
|
<div className="module-quote__icon-container__inner">
|
|
|
|
|
<div className="module-quote__icon-container__circle-background">
|
|
|
|
|
<div
|
|
|
|
@ -149,15 +125,21 @@ export class Quote extends React.Component<Props, State> {
|
|
|
|
|
/>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
) : null;
|
|
|
|
|
|
|
|
|
|
return (
|
|
|
|
|
<div className="module-quote__icon-container">
|
|
|
|
|
<img src={srcData} alt={i18n('quoteThumbnailAlt')} onError={handleImageErrorBound} />
|
|
|
|
|
{iconElement}
|
|
|
|
|
</div>
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
public renderGenericFile() {
|
|
|
|
|
const { attachment, isIncoming } = this.props;
|
|
|
|
|
export const QuoteGenericFile = (props: any) => {
|
|
|
|
|
const { attachment, isIncoming } = props;
|
|
|
|
|
|
|
|
|
|
if (!attachment) {
|
|
|
|
|
return;
|
|
|
|
|
return <></>;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
const { fileName, contentType } = attachment;
|
|
|
|
@ -167,7 +149,7 @@ export class Quote extends React.Component<Props, State> {
|
|
|
|
|
!MIME.isAudio(contentType);
|
|
|
|
|
|
|
|
|
|
if (!isGenericFile) {
|
|
|
|
|
return null;
|
|
|
|
|
return <></>;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return (
|
|
|
|
@ -183,11 +165,10 @@ export class Quote extends React.Component<Props, State> {
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
public renderIconContainer() {
|
|
|
|
|
const { attachment, i18n } = this.props;
|
|
|
|
|
const { imageBroken } = this.state;
|
|
|
|
|
export const QuoteIconContainer = (props: any) => {
|
|
|
|
|
const { attachment, i18n, imageBroken, handleImageErrorBound } = props;
|
|
|
|
|
|
|
|
|
|
if (!attachment) {
|
|
|
|
|
return null;
|
|
|
|
@ -197,24 +178,33 @@ export class Quote extends React.Component<Props, State> {
|
|
|
|
|
const objectUrl = getObjectUrl(thumbnail);
|
|
|
|
|
|
|
|
|
|
if (GoogleChrome.isVideoTypeSupported(contentType)) {
|
|
|
|
|
return objectUrl && !imageBroken
|
|
|
|
|
? this.renderImage(objectUrl, i18n, 'play')
|
|
|
|
|
: this.renderIcon('movie');
|
|
|
|
|
return objectUrl && !imageBroken ? (
|
|
|
|
|
<QuoteImage url={objectUrl} i18n={i18n} icon={'play'} />
|
|
|
|
|
) : (
|
|
|
|
|
<QuoteIcon icon="movie" />
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
if (GoogleChrome.isImageTypeSupported(contentType)) {
|
|
|
|
|
return objectUrl && !imageBroken
|
|
|
|
|
? this.renderImage(objectUrl, i18n)
|
|
|
|
|
: this.renderIcon('image');
|
|
|
|
|
return objectUrl && !imageBroken ? (
|
|
|
|
|
<QuoteImage
|
|
|
|
|
url={objectUrl}
|
|
|
|
|
i18n={i18n}
|
|
|
|
|
contentType={contentType}
|
|
|
|
|
handleImageErrorBound={handleImageErrorBound}
|
|
|
|
|
/>
|
|
|
|
|
) : (
|
|
|
|
|
<QuoteIcon icon="image" />
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
if (MIME.isAudio(contentType)) {
|
|
|
|
|
return this.renderIcon('microphone');
|
|
|
|
|
return <QuoteIcon icon="microphone" />;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return null;
|
|
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
public renderText() {
|
|
|
|
|
const { i18n, text, attachment, isIncoming, conversationType, convoId } = this.props;
|
|
|
|
|
export const QuoteText = (props: any) => {
|
|
|
|
|
const { i18n, text, attachment, isIncoming, conversationType, convoId } = props;
|
|
|
|
|
const isGroup = conversationType === ConversationTypeEnum.GROUP;
|
|
|
|
|
|
|
|
|
|
if (text) {
|
|
|
|
|
return (
|
|
|
|
@ -226,7 +216,7 @@ export class Quote extends React.Component<Props, State> {
|
|
|
|
|
)}
|
|
|
|
|
>
|
|
|
|
|
<MessageBody
|
|
|
|
|
isGroup={conversationType === 'group'}
|
|
|
|
|
isGroup={isGroup}
|
|
|
|
|
convoId={convoId}
|
|
|
|
|
text={text}
|
|
|
|
|
disableLinks={true}
|
|
|
|
@ -257,31 +247,9 @@ export class Quote extends React.Component<Props, State> {
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return null;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public renderClose() {
|
|
|
|
|
const { onClose } = this.props;
|
|
|
|
|
|
|
|
|
|
if (!onClose) {
|
|
|
|
|
return null;
|
|
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
// We don't want the overall click handler for the quote to fire, so we stop
|
|
|
|
|
// propagation before handing control to the caller's callback.
|
|
|
|
|
const onClick = (e: any): void => {
|
|
|
|
|
e.stopPropagation();
|
|
|
|
|
onClose();
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
// We need the container to give us the flexibility to implement the iOS design.
|
|
|
|
|
return (
|
|
|
|
|
<div className="module-quote__close-container">
|
|
|
|
|
<div className="module-quote__close-button" role="button" onClick={onClick} />
|
|
|
|
|
</div>
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public renderAuthor() {
|
|
|
|
|
export const QuoteAuthor = (props: any) => {
|
|
|
|
|
const {
|
|
|
|
|
authorProfileName,
|
|
|
|
|
authorPhoneNumber,
|
|
|
|
@ -290,7 +258,7 @@ export class Quote extends React.Component<Props, State> {
|
|
|
|
|
isFromMe,
|
|
|
|
|
isIncoming,
|
|
|
|
|
isPublic,
|
|
|
|
|
} = this.props;
|
|
|
|
|
} = props;
|
|
|
|
|
|
|
|
|
|
return (
|
|
|
|
|
<div
|
|
|
|
@ -313,10 +281,10 @@ export class Quote extends React.Component<Props, State> {
|
|
|
|
|
)}
|
|
|
|
|
</div>
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
public renderReferenceWarning() {
|
|
|
|
|
const { i18n, isIncoming, referencedMessageNotFound } = this.props;
|
|
|
|
|
export const QuoteReferenceWarning = (props: any) => {
|
|
|
|
|
const { i18n, isIncoming, referencedMessageNotFound } = props;
|
|
|
|
|
|
|
|
|
|
if (!referencedMessageNotFound) {
|
|
|
|
|
return null;
|
|
|
|
@ -345,16 +313,27 @@ export class Quote extends React.Component<Props, State> {
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
public render() {
|
|
|
|
|
const { isIncoming, onClick, referencedMessageNotFound, withContentAbove } = this.props;
|
|
|
|
|
export const Quote = (props: QuoteProps) => {
|
|
|
|
|
const [imageBroken, setImageBroken] = useState(false);
|
|
|
|
|
|
|
|
|
|
if (!validateQuote(this.props)) {
|
|
|
|
|
const handleImageErrorBound = null;
|
|
|
|
|
|
|
|
|
|
const handleImageError = () => {
|
|
|
|
|
// tslint:disable-next-line no-console
|
|
|
|
|
console.log('Message: Image failed to load; failing over to placeholder');
|
|
|
|
|
setImageBroken(true);
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
const { isIncoming, onClick, referencedMessageNotFound, withContentAbove } = props;
|
|
|
|
|
|
|
|
|
|
if (!validateQuote(props)) {
|
|
|
|
|
return null;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return (
|
|
|
|
|
<>
|
|
|
|
|
<div
|
|
|
|
|
className={classNames(
|
|
|
|
|
'module-quote-container',
|
|
|
|
@ -373,15 +352,14 @@ export class Quote extends React.Component<Props, State> {
|
|
|
|
|
)}
|
|
|
|
|
>
|
|
|
|
|
<div className="module-quote__primary">
|
|
|
|
|
{this.renderAuthor()}
|
|
|
|
|
{this.renderGenericFile()}
|
|
|
|
|
{this.renderText()}
|
|
|
|
|
<QuoteAuthor {...props} />
|
|
|
|
|
<QuoteGenericFile {...props} />
|
|
|
|
|
<QuoteText {...props} />
|
|
|
|
|
</div>
|
|
|
|
|
{this.renderIconContainer()}
|
|
|
|
|
{this.renderClose()}
|
|
|
|
|
<QuoteIconContainer {...props} handleImageErrorBound={handleImageErrorBound} />
|
|
|
|
|
</div>
|
|
|
|
|
{this.renderReferenceWarning()}
|
|
|
|
|
<QuoteReferenceWarning {...props} />
|
|
|
|
|
</div>
|
|
|
|
|
</>
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|