import React, { Component } from 'react'; import { Upload, Tooltip, Popover, Icon, Modal, Progress, message, Spin } from 'antd'; import CopyToClipboard from 'react-copy-to-clipboard'; import { injectIntl } from 'react-intl'; const { Dragger } = Upload; interface PicSearcherProps { intl: any; } interface PicSearcherState { loading: Boolean; modalVisible: Boolean; popoverVisible: Boolean; icons: Array; fileList: Array; } interface iconObject { type: string; score: number; } class PicSearcher extends Component { copyId?: number; state = { loading: false, modalVisible: false, popoverVisible: true, icons: [], fileList: [], }; componentDidMount() { document.addEventListener('paste', this.onPaste); } componentWillUnmount() { document.removeEventListener('paste', this.onPaste); window.clearTimeout(this.copyId); } onPaste = (event: ClipboardEvent) => { const items = event.clipboardData && event.clipboardData.items; let file = null; if (items && items.length) { for (let i = 0; i < items.length; i += 1) { if (items[i].type.indexOf('image') !== -1) { file = items[i].getAsFile(); break; } } } if (file) this.uploadFile(file); }; uploadFile = (file: File) => { const reader: FileReader = new FileReader(); reader.onload = () => { this.predict(reader.result); this.setState(() => ({ fileList: [{ uid: 1, name: file.name, status: 'done', url: reader.result }], })); }; reader.readAsDataURL(file); }; predict = async (imageBase64: any) => { this.setState(() => ({ loading: true })); const res = await fetch( '//1647796581073291.cn-shanghai.fc.aliyuncs.com/2016-08-15/proxy/cr-sh.cr-fc-predict__stable/cr-fc-predict/', { method: 'post', body: JSON.stringify({ modelId: 'data_icon', type: 'ic', imageBase64, }), }, ); let icons = await res.json(); icons = icons.map((i: any) => ({ score: i.score, type: i.class_name.replace(/\s/g, '-') })); this.setState(() => ({ icons, loading: false })); }; toggleModal = () => { this.setState(prev => ({ modalVisible: !prev.modalVisible, popoverVisible: false, fileList: [], icons: [], })); }; onCopied = (text: string) => { message.success( {text} copied 🎉 , ); }; render() { const { intl: { messages }, } = this.props; const { popoverVisible, modalVisible, icons, fileList, loading } = this.state; return (
this.uploadFile(o.file)} fileList={fileList} showUploadList={{ showPreviewIcon: false, showRemoveIcon: false }} >

{messages['app.docs.components.icon.pic-searcher.placeholder']}

{icons.map((icon: iconObject) => (
`} onCopy={this.onCopied}>
))}
); } } export default injectIntl(PicSearcher);