You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
113 lines
3.0 KiB
TypeScript
113 lines
3.0 KiB
TypeScript
// tslint:disable:react-a11y-anchors
|
|
|
|
import React from 'react';
|
|
import * as GoogleChrome from '../util/GoogleChrome';
|
|
|
|
import { AttachmentType } from '../types/Attachment';
|
|
|
|
import autoBind from 'auto-bind';
|
|
import { SessionButton, SessionButtonColor, SessionButtonType } from './basic/SessionButton';
|
|
import { SessionInput } from './basic/SessionInput';
|
|
|
|
interface Props {
|
|
attachment: AttachmentType;
|
|
url: string;
|
|
caption?: string;
|
|
onSave: (caption: string) => void;
|
|
onClose: () => void;
|
|
}
|
|
|
|
interface State {
|
|
caption: string;
|
|
}
|
|
|
|
export class CaptionEditor extends React.Component<Props, State> {
|
|
private readonly inputRef: React.RefObject<any>;
|
|
|
|
constructor(props: Props) {
|
|
super(props);
|
|
|
|
const { caption } = props;
|
|
this.state = {
|
|
caption: caption || '',
|
|
};
|
|
autoBind(this);
|
|
this.inputRef = React.createRef();
|
|
}
|
|
|
|
public onSave() {
|
|
const { onSave } = this.props;
|
|
const { caption } = this.state;
|
|
|
|
onSave(caption);
|
|
}
|
|
|
|
public onChange(value: string) {
|
|
this.setState({
|
|
caption: value,
|
|
});
|
|
}
|
|
|
|
public renderObject() {
|
|
const { url, onClose, attachment } = this.props;
|
|
const { contentType } = attachment || { contentType: null };
|
|
|
|
const isImageTypeSupported = GoogleChrome.isImageTypeSupported(contentType);
|
|
if (isImageTypeSupported) {
|
|
return (
|
|
<img
|
|
className="module-caption-editor__image"
|
|
alt={window.i18n('imageAttachmentAlt')}
|
|
src={url}
|
|
onClick={onClose}
|
|
/>
|
|
);
|
|
}
|
|
|
|
const isVideoTypeSupported = GoogleChrome.isVideoTypeSupported(contentType);
|
|
if (isVideoTypeSupported) {
|
|
return (
|
|
<video className="module-caption-editor__video" controls={true}>
|
|
<source src={url} />
|
|
</video>
|
|
);
|
|
}
|
|
|
|
return <div className="module-caption-editor__placeholder" />;
|
|
}
|
|
|
|
public render() {
|
|
const { onClose } = this.props;
|
|
const { caption } = this.state;
|
|
|
|
return (
|
|
<div role="dialog" className="module-caption-editor">
|
|
<div role="button" onClick={onClose} className="module-caption-editor__close-button" />
|
|
<div className="module-caption-editor__media-container">{this.renderObject()}</div>
|
|
<div className="module-caption-editor__bottom-bar">
|
|
<div className="module-caption-editor__input-container">
|
|
<SessionInput
|
|
type="text"
|
|
autoFocus={true}
|
|
maxLength={200}
|
|
ref={this.inputRef}
|
|
placeholder={window.i18n('addACaption')}
|
|
enableShowHide={false}
|
|
onValueChanged={this.onChange}
|
|
onEnterPressed={this.onSave}
|
|
value={caption}
|
|
/>
|
|
<SessionButton
|
|
text={window.i18n('save')}
|
|
onClick={this.onSave}
|
|
buttonType={SessionButtonType.Brand}
|
|
buttonColor={SessionButtonColor.Green}
|
|
disabled={!caption}
|
|
/>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
);
|
|
}
|
|
}
|