import React, { PropTypes } from 'react'; import { truncateMiddle } from '../../lib/textHelper'; import { Loader } from '../UI'; import AssetProxy, { createAssetProxy } from '../../valueObjects/AssetProxy'; const MAX_DISPLAY_LENGTH = 50; export default class ImageControl extends React.Component { state = { processing: false, }; handleFileInputRef = (el) => { this._fileInput = el; }; handleClick = (e) => { this._fileInput.click(); }; handleDragEnter = (e) => { e.stopPropagation(); e.preventDefault(); }; handleDragOver = (e) => { e.stopPropagation(); e.preventDefault(); }; handleChange = (e) => { e.stopPropagation(); e.preventDefault(); const fileList = e.dataTransfer ? e.dataTransfer.files : e.target.files; const files = [...fileList]; const imageType = /^image\//; // Iterate through the list of files and return the first image on the list const file = files.find((currentFile) => { if (imageType.test(currentFile.type)) { return currentFile; } }); this.props.onRemoveAsset(this.props.value); if (file) { this.setState({ processing: true }); createAssetProxy(file.name, file) .then((assetProxy) => { this.setState({ processing: false }); this.props.onAddAsset(assetProxy); this.props.onChange(assetProxy.public_path); }); } else { this.props.onChange(null); } }; renderImageName = () => { if (!this.props.value) return null; if (this.value instanceof AssetProxy) { return truncateMiddle(this.props.value.path, MAX_DISPLAY_LENGTH); } else { return truncateMiddle(this.props.value, MAX_DISPLAY_LENGTH); } }; render() { const { processing } = this.state; const imageName = this.renderImageName(); if (processing) { return (