index.js 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251
  1. import React,{Component} from 'react';
  2. import {Icon, message, Spin, Upload,Progress} from 'antd';
  3. import './index.less';
  4. import Viewer from 'viewerjs';
  5. import 'viewerjs/dist/viewer.css';
  6. import PropTypes from 'prop-types';
  7. const uploadButton = (
  8. <div>
  9. <Icon type="plus" />
  10. <div className="ant-upload-text">点击上传</div>
  11. </div>
  12. );
  13. class ImgList extends Component{
  14. constructor(props) {
  15. super(props);
  16. this.state={
  17. seeMore: false,
  18. gallery: null,
  19. loading: true,
  20. imgLoadNum: 0,
  21. uploadLoading: false,
  22. percent: 0,
  23. newUploadArr: [],
  24. newUploadInforArr: {},
  25. }
  26. this.imgLoading = this.imgLoading.bind(this);
  27. this.beforeUpload = this.beforeUpload.bind(this);
  28. this.setTimeOutObj = null;
  29. }
  30. componentDidMount() {
  31. this.setTimeOutObj = setTimeout(()=>{
  32. this.setState({
  33. gallery: new Viewer(document.getElementById(this.props.domId))
  34. },()=>{
  35. this.setState({
  36. loading: false
  37. })
  38. })
  39. },10000)
  40. }
  41. imgLoading(){
  42. if(Object.keys(this.props.uploadConfig).length !== 0){
  43. this.setTimeOutObj && clearTimeout(this.setTimeOutObj);
  44. }else{
  45. let num = this.state.imgLoadNum + 1;
  46. if(num >= this.props.fileList.length){
  47. this.state.gallery && this.state.gallery.destroy();
  48. this.setState({
  49. gallery: new Viewer(document.getElementById(this.props.domId))
  50. },()=>{
  51. this.setTimeOutObj && clearTimeout(this.setTimeOutObj);
  52. this.setState({
  53. loading: false
  54. })
  55. })
  56. }
  57. this.setState({
  58. imgLoadNum: num
  59. })
  60. }
  61. }
  62. beforeUpload(file) {
  63. const isJPG = file.type.split('/');
  64. if (isJPG[0] !== 'image') {
  65. message.error('只能上传图片文件!');
  66. return false;
  67. }
  68. const isLt2M = file.size / 1024 / 1024 < 10;
  69. if (!isLt2M) {
  70. message.error('图片大小不能超过 10MB!');
  71. return isLt2M;
  72. }
  73. if(isJPG && isLt2M){
  74. //用于计算当次选择的图片数量
  75. this.state.newUploadArr.push(file)
  76. this.setState({
  77. newUploadArr:this.state.newUploadArr
  78. })
  79. }
  80. return isJPG && isLt2M;
  81. }
  82. componentWillUnmount() {
  83. this.setTimeOutObj && clearTimeout(this.setTimeOutObj);
  84. }
  85. render() {
  86. const {fileList} = this.props;
  87. if(!fileList || !Array.isArray(fileList)){
  88. return null;
  89. }
  90. if(Object.keys(this.props.uploadConfig).length === 0){
  91. for(let i of fileList){
  92. i.url = 'https://img95.699pic.com/photo/40048/4649.jpg_wh300.jpg';
  93. i.response.data = 'https://img95.699pic.com/photo/40048/4649.jpg_wh300.jpg'
  94. }
  95. }
  96. return (
  97. <div className='ImgListComponent'>
  98. <div className='ImgList'>
  99. <Spin spinning={Object.keys(this.props.uploadConfig).length !== 0 ? false : (fileList.length === 0 ? false : this.state.loading)} tip="图片加载中...">
  100. <Upload
  101. {...this.props.uploadConfig}
  102. accept="image/*"
  103. className={Object.keys(this.props.uploadConfig).length !== 0 ? "" : "demandDetailShow-upload" }
  104. listType="picture-card"
  105. fileList={
  106. Object.keys(this.props.uploadConfig).length !== 0 ?
  107. (
  108. fileList.map((v,i)=>{
  109. v.index = i;
  110. return v
  111. })
  112. ) : (
  113. this.state.seeMore?
  114. fileList.map((v,i)=>{
  115. v.index = i;
  116. return v
  117. }) :
  118. fileList.map((v,i)=>{
  119. v.index = i;
  120. return v
  121. }).slice(0,10)
  122. )
  123. }
  124. onPreview={(file) => {
  125. if(Object.keys(this.props.uploadConfig).length !== 0){
  126. //TODO 上传组件,查看图片临时解决方法,无法查看下一张
  127. let image = new Image();
  128. image.src = file.url || file.thumbUrl;
  129. let viewer = new Viewer(image, {
  130. hidden: function () {
  131. viewer.destroy();
  132. },
  133. });
  134. viewer.show();
  135. }else{
  136. this.state.gallery.view(file.index).show();
  137. }
  138. }}
  139. beforeUpload={this.beforeUpload}
  140. onChange={(infor)=>{
  141. if(infor.file.status){
  142. let newUploadNum = this.state.newUploadArr.length
  143. this.state.gallery && this.state.gallery.destroy();
  144. this.props.onChange(infor);
  145. if(infor.file && infor.file.status === 'error'){
  146. message.error('图片上传失败,请重新上传!');
  147. }
  148. //用于控制进度条
  149. if(infor.file && infor.file.status !== 'removed' && infor.event){
  150. let percent = 0;
  151. this.state.newUploadInforArr[infor.file.uid] = infor.event.percent;
  152. this.setState({
  153. newUploadInforArr:this.state.newUploadInforArr
  154. })
  155. for(let i of Object.values(this.state.newUploadInforArr)){
  156. percent+= i
  157. }
  158. let percentNum = percent/newUploadNum/100;
  159. this.setState({
  160. percent:percentNum
  161. })
  162. if(percentNum <= 1) {
  163. this.setState({
  164. uploadLoading: true,
  165. })
  166. }
  167. if(percentNum >= 1){
  168. this.setState({
  169. percent: 1,
  170. },()=>{
  171. setTimeout(()=>{
  172. this.setState({
  173. uploadLoading: false,
  174. },()=>{
  175. this.setState({
  176. percent: 0,
  177. newUploadArr: [],
  178. newUploadInforArr: {}
  179. })
  180. })
  181. },1500)
  182. })
  183. }
  184. }else if(infor.file && infor.file.status === 'removed'){
  185. this.setState({
  186. percent: 0,
  187. newUploadArr: [],
  188. newUploadInforArr: {}
  189. })
  190. }
  191. }
  192. }}
  193. >
  194. {Object.keys(this.props.uploadConfig).length === 0 ? "" : uploadButton}
  195. </Upload>
  196. </Spin>
  197. </div>
  198. {fileList.length > 10 && Object.keys(this.props.uploadConfig).length === 0 ? <div className='seeMore' onClick={()=>{this.setState({seeMore:!this.state.seeMore})}}>
  199. {this.state.seeMore ? '收起' : '查看更多'}
  200. </div> : <div/>}
  201. <ul id={this.props.domId} style={{display:'none',zIndex:-1,}}>
  202. {
  203. fileList.map((value,index)=>(
  204. <li key={index}>
  205. <img src={value.url || value.thumbUrl} onLoad={()=>{
  206. this.imgLoading();
  207. }}/>
  208. </li>
  209. ))
  210. }
  211. </ul>
  212. {this.state.uploadLoading ? <div className='mask'>
  213. <Progress
  214. className='progress'
  215. type="circle"
  216. status="active"
  217. percent={parseFloat(this.state.percent * 100).toFixed(0)}
  218. />
  219. <div className='promptText'>图片上传中...</div>
  220. </div> : <div/>}
  221. </div>
  222. )
  223. }
  224. }
  225. ImgList.propTypes = {
  226. domId : PropTypes.string, //如果一个界面有多个该组件,需要传入自定义id名称,用于图片列表显示
  227. fileList: PropTypes.array.isRequired, //图片文件列表
  228. uploadConfig: PropTypes.object, //上传图片配置参数(需要上传图片时需要,存在与否,用于区分是否为上传或者为查看)
  229. onChange: PropTypes.func, //选择图片
  230. }
  231. ImgList.defaultProps = {
  232. domId: 'images',
  233. fileList: [],
  234. uploadConfig: {},
  235. onChange:()=>{}
  236. }
  237. export default ImgList;