index.js 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243
  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 === 'image/jpeg' || file.type === 'image/png' || file.type === 'image/jpg';
  64. if (!isJPG) {
  65. message.error('只能上传图片文件!');
  66. return isJPG;
  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. return (
  91. <div className='ImgListComponent'>
  92. <div className='ImgList'>
  93. <Spin spinning={Object.keys(this.props.uploadConfig).length !== 0 ? false : (fileList.length === 0 ? false : this.state.loading)} tip="图片加载中...">
  94. <Upload
  95. {...this.props.uploadConfig}
  96. className={Object.keys(this.props.uploadConfig).length !== 0 ? "" : "demandDetailShow-upload" }
  97. listType="picture-card"
  98. fileList={
  99. Object.keys(this.props.uploadConfig).length !== 0 ?
  100. (
  101. fileList.map((v,i)=>{
  102. v.index = i;
  103. return v
  104. })
  105. ) : (
  106. this.state.seeMore?
  107. fileList.map((v,i)=>{
  108. v.index = i;
  109. return v
  110. }) :
  111. fileList.map((v,i)=>{
  112. v.index = i;
  113. return v
  114. }).slice(0,10)
  115. )
  116. }
  117. onPreview={(file) => {
  118. if(Object.keys(this.props.uploadConfig).length !== 0){
  119. //TODO 上传组件,查看图片临时解决方法,无法查看下一张
  120. let image = new Image();
  121. image.src = file.url || file.thumbUrl;
  122. let viewer = new Viewer(image, {
  123. hidden: function () {
  124. viewer.destroy();
  125. },
  126. });
  127. viewer.show();
  128. }else{
  129. this.state.gallery.view(file.index).show();
  130. }
  131. }}
  132. beforeUpload={this.beforeUpload}
  133. onChange={(infor)=>{
  134. if(infor.file.status){
  135. let newUploadNum = this.state.newUploadArr.length
  136. this.state.gallery && this.state.gallery.destroy();
  137. this.props.onChange(infor);
  138. if(infor.file && infor.file.status === 'error'){
  139. message.error('图片上传失败,请重新上传!');
  140. }
  141. //用于控制进度条
  142. if(infor.file && infor.file.status !== 'removed' && infor.event){
  143. let percent = 0;
  144. this.state.newUploadInforArr[infor.file.uid] = infor.event.percent;
  145. this.setState({
  146. newUploadInforArr:this.state.newUploadInforArr
  147. })
  148. for(let i of Object.values(this.state.newUploadInforArr)){
  149. percent+= i
  150. }
  151. let percentNum = percent/newUploadNum/100;
  152. this.setState({
  153. percent:percentNum
  154. })
  155. if(percentNum <= 1) {
  156. this.setState({
  157. uploadLoading: true,
  158. })
  159. }
  160. if(percentNum >= 1){
  161. this.setState({
  162. percent: 1,
  163. },()=>{
  164. setTimeout(()=>{
  165. this.setState({
  166. uploadLoading: false,
  167. },()=>{
  168. this.setState({
  169. percent: 0,
  170. newUploadArr: [],
  171. newUploadInforArr: {}
  172. })
  173. })
  174. },1500)
  175. })
  176. }
  177. }else if(infor.file && infor.file.status === 'removed'){
  178. this.setState({
  179. percent: 0,
  180. newUploadArr: [],
  181. newUploadInforArr: {}
  182. })
  183. }
  184. }
  185. }}
  186. >
  187. {Object.keys(this.props.uploadConfig).length === 0 ? "" : uploadButton}
  188. </Upload>
  189. </Spin>
  190. </div>
  191. {fileList.length > 10 && Object.keys(this.props.uploadConfig).length === 0 ? <div className='seeMore' onClick={()=>{this.setState({seeMore:!this.state.seeMore})}}>
  192. {this.state.seeMore ? '收起' : '查看更多'}
  193. </div> : <div/>}
  194. <ul id={this.props.domId} style={{display:'none',zIndex:-1,}}>
  195. {
  196. fileList.map((value,index)=>(
  197. <li key={index}>
  198. <img src={value.url || value.thumbUrl} onLoad={()=>{
  199. this.imgLoading();
  200. }}/>
  201. </li>
  202. ))
  203. }
  204. </ul>
  205. {this.state.uploadLoading ? <div className='mask'>
  206. <Progress
  207. className='progress'
  208. type="circle"
  209. status="active"
  210. percent={parseFloat(this.state.percent * 100).toFixed(0)}
  211. />
  212. <div className='promptText'>图片上传中...</div>
  213. </div> : <div/>}
  214. </div>
  215. )
  216. }
  217. }
  218. ImgList.propTypes = {
  219. domId : PropTypes.string, //如果一个界面有多个该组件,需要传入自定义id名称,用于图片列表显示
  220. fileList: PropTypes.array.isRequired, //图片文件列表
  221. uploadConfig: PropTypes.object, //上传图片配置参数(需要上传图片时需要,存在与否,用于区分是否为上传或者为查看)
  222. onChange: PropTypes.func, //选择图片
  223. }
  224. ImgList.defaultProps = {
  225. domId: 'images',
  226. fileList: [],
  227. uploadConfig: {},
  228. onChange:()=>{}
  229. }
  230. export default ImgList;