s-uploader.vue 18 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675
  1. <!-- 文件上传,基于 upload-file 和 upload-image 实现 -->
  2. <template>
  3. <view class="uni-file-picker">
  4. <view v-if="title" class="uni-file-picker__header">
  5. <text class="file-title">{{ title }}</text>
  6. <text class="file-count">{{ filesList.length }}/{{ limitLength }}</text>
  7. </view>
  8. <view v-if="subtitle" class="file-subtitle">
  9. <view>{{ subtitle }}</view>
  10. </view>
  11. <upload-image
  12. v-if="fileMediatype === 'image' && showType === 'grid'"
  13. :readonly="readonly"
  14. :image-styles="imageStyles"
  15. :files-list="url"
  16. :limit="limitLength"
  17. :disablePreview="disablePreview"
  18. :delIcon="delIcon"
  19. @uploadFiles="uploadFiles"
  20. @choose="choose"
  21. @delFile="delFile"
  22. >
  23. <slot>
  24. <view class="is-add">
  25. <image :src="imgsrc" class="add-icon"></image>
  26. </view>
  27. </slot>
  28. </upload-image>
  29. <upload-file
  30. v-if="fileMediatype !== 'image' || showType !== 'grid'"
  31. :readonly="readonly"
  32. :list-styles="listStyles"
  33. :files-list="filesList"
  34. :showType="showType"
  35. :delIcon="delIcon"
  36. @uploadFiles="uploadFiles"
  37. @choose="choose"
  38. @delFile="delFile"
  39. >
  40. <slot><button type="primary" size="mini">选择文件</button></slot>
  41. </upload-file>
  42. </view>
  43. </template>
  44. <script>
  45. import { chooseAndUploadFile, uploadCloudFiles } from './choose-and-upload-file.js';
  46. import {
  47. get_file_ext,
  48. get_extname,
  49. get_files_and_is_max,
  50. get_file_info,
  51. get_file_data,
  52. } from './utils.js';
  53. import uploadImage from './upload-image.vue';
  54. import uploadFile from './upload-file.vue';
  55. import sheep from '@/sheep';
  56. let fileInput = null;
  57. /**
  58. * FilePicker 文件选择上传
  59. * @description 文件选择上传组件,可以选择图片、视频等任意文件并上传到当前绑定的服务空间
  60. * @tutorial https://ext.dcloud.net.cn/plugin?id=4079
  61. * @property {Object|Array} value 组件数据,通常用来回显 ,类型由return-type属性决定
  62. * @property {String|Array} url url数据
  63. * @property {Boolean} disabled = [true|false] 组件禁用
  64. * @value true 禁用
  65. * @value false 取消禁用
  66. * @property {Boolean} readonly = [true|false] 组件只读,不可选择,不显示进度,不显示删除按钮
  67. * @value true 只读
  68. * @value false 取消只读
  69. * @property {Boolean} disable-preview = [true|false] 禁用图片预览,仅 mode:grid 时生效
  70. * @value true 禁用图片预览
  71. * @value false 取消禁用图片预览
  72. * @property {Boolean} del-icon = [true|false] 是否显示删除按钮
  73. * @value true 显示删除按钮
  74. * @value false 不显示删除按钮
  75. * @property {Boolean} auto-upload = [true|false] 是否自动上传,值为true则只触发@select,可自行上传
  76. * @value true 自动上传
  77. * @value false 取消自动上传
  78. * @property {Number|String} limit 最大选择个数 ,h5 会自动忽略多选的部分
  79. * @property {String} title 组件标题,右侧显示上传计数
  80. * @property {String} mode = [list|grid] 选择文件后的文件列表样式
  81. * @value list 列表显示
  82. * @value grid 宫格显示
  83. * @property {String} file-mediatype = [image|video|all] 选择文件类型
  84. * @value image 只选择图片
  85. * @value video 只选择视频
  86. * @value all 选择所有文件
  87. * @property {Array} file-extname 选择文件后缀,根据 file-mediatype 属性而不同
  88. * @property {Object} list-style mode:list 时的样式
  89. * @property {Object} image-styles 选择文件后缀,根据 file-mediatype 属性而不同
  90. * @event {Function} select 选择文件后触发
  91. * @event {Function} progress 文件上传时触发
  92. * @event {Function} success 上传成功触发
  93. * @event {Function} fail 上传失败触发
  94. * @event {Function} delete 文件从列表移除时触发
  95. */
  96. export default {
  97. name: 'sUploader',
  98. components: {
  99. uploadImage,
  100. uploadFile,
  101. },
  102. options: {
  103. virtualHost: true,
  104. },
  105. emits: ['select', 'success', 'fail', 'progress', 'delete', 'update:modelValue', 'update:url'],
  106. props: {
  107. modelValue: {
  108. type: [Array, Object],
  109. default() {
  110. return [];
  111. },
  112. },
  113. url: {
  114. type: [Array, String],
  115. default() {
  116. return [];
  117. },
  118. },
  119. disabled: {
  120. type: Boolean,
  121. default: false,
  122. },
  123. disablePreview: {
  124. type: Boolean,
  125. default: false,
  126. },
  127. delIcon: {
  128. type: Boolean,
  129. default: true,
  130. },
  131. // 自动上传
  132. autoUpload: {
  133. type: Boolean,
  134. default: true,
  135. },
  136. // 最大选择个数 ,h5只能限制单选或是多选
  137. limit: {
  138. type: [Number, String],
  139. default: 9,
  140. },
  141. // 列表样式 grid | list | list-card
  142. mode: {
  143. type: String,
  144. default: 'grid',
  145. },
  146. // 选择文件类型 image/video/all
  147. fileMediatype: {
  148. type: String,
  149. default: 'image',
  150. },
  151. // 文件类型筛选
  152. fileExtname: {
  153. type: [Array, String],
  154. default() {
  155. return [];
  156. },
  157. },
  158. title: {
  159. type: String,
  160. default: '',
  161. },
  162. listStyles: {
  163. type: Object,
  164. default() {
  165. return {
  166. // 是否显示边框
  167. border: true,
  168. // 是否显示分隔线
  169. dividline: true,
  170. // 线条样式
  171. borderStyle: {},
  172. };
  173. },
  174. },
  175. imageStyles: {
  176. type: Object,
  177. default() {
  178. return {
  179. width: 'auto',
  180. height: 'auto',
  181. };
  182. },
  183. },
  184. readonly: {
  185. type: Boolean,
  186. default: false,
  187. },
  188. sizeType: {
  189. type: Array,
  190. default() {
  191. return ['original', 'compressed'];
  192. },
  193. },
  194. driver: {
  195. type: String,
  196. default: 'local', // local=本地 | oss | unicloud
  197. },
  198. subtitle: {
  199. type: String,
  200. default: '',
  201. },
  202. },
  203. data() {
  204. return {
  205. files: [],
  206. localValue: [],
  207. imgsrc: sheep.$url.static('/static/images/upload-camera.png'),
  208. };
  209. },
  210. watch: {
  211. modelValue: {
  212. handler(newVal, oldVal) {
  213. this.setValue(newVal, oldVal);
  214. },
  215. immediate: true,
  216. },
  217. },
  218. computed: {
  219. returnType() {
  220. if (this.limit > 1) {
  221. return 'array';
  222. }
  223. return 'object';
  224. },
  225. filesList() {
  226. let files = [];
  227. this.files.forEach((v) => {
  228. files.push(v);
  229. });
  230. return files;
  231. },
  232. showType() {
  233. if (this.fileMediatype === 'image') {
  234. return this.mode;
  235. }
  236. return 'list';
  237. },
  238. limitLength() {
  239. if (this.returnType === 'object') {
  240. return 1;
  241. }
  242. if (!this.limit) {
  243. return 1;
  244. }
  245. if (this.limit >= 9) {
  246. return 9;
  247. }
  248. return this.limit;
  249. },
  250. },
  251. created() {
  252. if (this.driver === 'local') {
  253. uniCloud.chooseAndUploadFile = chooseAndUploadFile;
  254. }
  255. this.form = this.getForm('uniForms');
  256. this.formItem = this.getForm('uniFormsItem');
  257. if (this.form && this.formItem) {
  258. if (this.formItem.name) {
  259. this.rename = this.formItem.name;
  260. this.form.inputChildrens.push(this);
  261. }
  262. }
  263. },
  264. methods: {
  265. /**
  266. * 公开用户使用,清空文件
  267. * @param {Object} index
  268. */
  269. clearFiles(index) {
  270. if (index !== 0 && !index) {
  271. this.files = [];
  272. this.$nextTick(() => {
  273. this.setEmit();
  274. });
  275. } else {
  276. this.files.splice(index, 1);
  277. }
  278. this.$nextTick(() => {
  279. this.setEmit();
  280. });
  281. },
  282. /**
  283. * 公开用户使用,继续上传
  284. */
  285. upload() {
  286. let files = [];
  287. this.files.forEach((v, index) => {
  288. if (v.status === 'ready' || v.status === 'error') {
  289. files.push(Object.assign({}, v));
  290. }
  291. });
  292. return this.uploadFiles(files);
  293. },
  294. async setValue(newVal, oldVal) {
  295. const newData = async (v) => {
  296. const reg = /cloud:\/\/([\w.]+\/?)\S*/;
  297. let url = '';
  298. if (v.fileID) {
  299. url = v.fileID;
  300. } else {
  301. url = v.url;
  302. }
  303. if (reg.test(url)) {
  304. v.fileID = url;
  305. v.url = await this.getTempFileURL(url);
  306. }
  307. if (v.url) v.path = v.url;
  308. return v;
  309. };
  310. if (this.returnType === 'object') {
  311. if (newVal) {
  312. await newData(newVal);
  313. } else {
  314. newVal = {};
  315. }
  316. } else {
  317. if (!newVal) newVal = [];
  318. for (let i = 0; i < newVal.length; i++) {
  319. let v = newVal[i];
  320. await newData(v);
  321. }
  322. }
  323. this.localValue = newVal;
  324. if (this.form && this.formItem && !this.is_reset) {
  325. this.is_reset = false;
  326. this.formItem.setValue(this.localValue);
  327. }
  328. let filesData = Object.keys(newVal).length > 0 ? newVal : [];
  329. this.files = [].concat(filesData);
  330. },
  331. /**
  332. * 选择文件
  333. */
  334. choose() {
  335. if (this.disabled) return;
  336. if (
  337. this.files.length >= Number(this.limitLength) &&
  338. this.showType !== 'grid' &&
  339. this.returnType === 'array'
  340. ) {
  341. uni.showToast({
  342. title: `您最多选择 ${this.limitLength} 个文件`,
  343. icon: 'none',
  344. });
  345. return;
  346. }
  347. this.chooseFiles();
  348. },
  349. /**
  350. * 选择文件并上传
  351. */
  352. chooseFiles() {
  353. const _extname = get_extname(this.fileExtname);
  354. // 获取后缀
  355. uniCloud
  356. .chooseAndUploadFile({
  357. type: this.fileMediatype,
  358. compressed: false,
  359. sizeType: this.sizeType,
  360. // TODO 如果为空,video 有问题
  361. extension: _extname.length > 0 ? _extname : undefined,
  362. count: this.limitLength - this.files.length, //默认9
  363. onChooseFile: this.chooseFileCallback,
  364. onUploadProgress: (progressEvent) => {
  365. this.setProgress(progressEvent, progressEvent.index);
  366. },
  367. })
  368. .then((result) => {
  369. this.setSuccessAndError(result.tempFiles);
  370. })
  371. .catch((err) => {
  372. console.log('选择失败', err);
  373. });
  374. },
  375. /**
  376. * 选择文件回调
  377. * @param {Object} res
  378. */
  379. async chooseFileCallback(res) {
  380. const _extname = get_extname(this.fileExtname);
  381. const is_one =
  382. (Number(this.limitLength) === 1 && this.disablePreview && !this.disabled) ||
  383. this.returnType === 'object';
  384. // 如果这有一个文件 ,需要清空本地缓存数据
  385. if (is_one) {
  386. this.files = [];
  387. }
  388. let { filePaths, files } = get_files_and_is_max(res, _extname);
  389. if (!(_extname && _extname.length > 0)) {
  390. filePaths = res.tempFilePaths;
  391. files = res.tempFiles;
  392. }
  393. let currentData = [];
  394. for (let i = 0; i < files.length; i++) {
  395. if (this.limitLength - this.files.length <= 0) break;
  396. files[i].uuid = Date.now();
  397. let filedata = await get_file_data(files[i], this.fileMediatype);
  398. filedata.progress = 0;
  399. filedata.status = 'ready';
  400. this.files.push(filedata);
  401. currentData.push({
  402. ...filedata,
  403. file: files[i],
  404. });
  405. }
  406. this.$emit('select', {
  407. tempFiles: currentData,
  408. tempFilePaths: filePaths,
  409. });
  410. res.tempFiles = files;
  411. // 停止自动上传
  412. if (!this.autoUpload) {
  413. res.tempFiles = [];
  414. }
  415. },
  416. /**
  417. * 批传
  418. * @param {Object} e
  419. */
  420. uploadFiles(files) {
  421. files = [].concat(files);
  422. return uploadCloudFiles
  423. .call(this, files, 5, (res) => {
  424. this.setProgress(res, res.index, true);
  425. })
  426. .then((result) => {
  427. this.setSuccessAndError(result);
  428. return result;
  429. })
  430. .catch((err) => {
  431. console.log(err);
  432. });
  433. },
  434. /**
  435. * 成功或失败
  436. */
  437. async setSuccessAndError(res, fn) {
  438. let successData = [];
  439. let errorData = [];
  440. let tempFilePath = [];
  441. let errorTempFilePath = [];
  442. for (let i = 0; i < res.length; i++) {
  443. const item = res[i];
  444. const index = item.uuid ? this.files.findIndex((p) => p.uuid === item.uuid) : item.index;
  445. if (index === -1 || !this.files) break;
  446. if (item.errMsg === 'request:fail') {
  447. this.files[index].url = item.path;
  448. this.files[index].status = 'error';
  449. this.files[index].errMsg = item.errMsg;
  450. // this.files[index].progress = -1
  451. errorData.push(this.files[index]);
  452. errorTempFilePath.push(this.files[index].url);
  453. } else {
  454. this.files[index].errMsg = '';
  455. this.files[index].fileID = item.url;
  456. const reg = /cloud:\/\/([\w.]+\/?)\S*/;
  457. if (reg.test(item.url)) {
  458. this.files[index].url = await this.getTempFileURL(item.url);
  459. } else {
  460. this.files[index].url = item.url;
  461. }
  462. this.files[index].status = 'success';
  463. this.files[index].progress += 1;
  464. successData.push(this.files[index]);
  465. tempFilePath.push(this.files[index].fileID);
  466. }
  467. }
  468. if (successData.length > 0) {
  469. this.setEmit();
  470. // 状态改变返回
  471. this.$emit('success', {
  472. tempFiles: this.backObject(successData),
  473. tempFilePaths: tempFilePath,
  474. });
  475. }
  476. if (errorData.length > 0) {
  477. this.$emit('fail', {
  478. tempFiles: this.backObject(errorData),
  479. tempFilePaths: errorTempFilePath,
  480. });
  481. }
  482. },
  483. /**
  484. * 获取进度
  485. * @param {Object} progressEvent
  486. * @param {Object} index
  487. * @param {Object} type
  488. */
  489. setProgress(progressEvent, index, type) {
  490. const fileLenth = this.files.length;
  491. const percentNum = (index / fileLenth) * 100;
  492. const percentCompleted = Math.round((progressEvent.loaded * 100) / progressEvent.total);
  493. let idx = index;
  494. if (!type) {
  495. idx = this.files.findIndex((p) => p.uuid === progressEvent.tempFile.uuid);
  496. }
  497. if (idx === -1 || !this.files[idx]) return;
  498. // fix by mehaotian 100 就会消失,-1 是为了让进度条消失
  499. this.files[idx].progress = percentCompleted - 1;
  500. // 上传中
  501. this.$emit('progress', {
  502. index: idx,
  503. progress: parseInt(percentCompleted),
  504. tempFile: this.files[idx],
  505. });
  506. },
  507. /**
  508. * 删除文件
  509. * @param {Object} index
  510. */
  511. delFile(index) {
  512. this.$emit('delete', {
  513. tempFile: this.files[index],
  514. tempFilePath: this.files[index].url,
  515. });
  516. this.files.splice(index, 1);
  517. this.$nextTick(() => {
  518. this.setEmit();
  519. });
  520. },
  521. /**
  522. * 获取文件名和后缀
  523. * @param {Object} name
  524. */
  525. getFileExt(name) {
  526. const last_len = name.lastIndexOf('.');
  527. const len = name.length;
  528. return {
  529. name: name.substring(0, last_len),
  530. ext: name.substring(last_len + 1, len),
  531. };
  532. },
  533. /**
  534. * 处理返回事件
  535. */
  536. setEmit() {
  537. let data = [];
  538. let updateUrl = [];
  539. if (this.returnType === 'object') {
  540. data = this.backObject(this.files)[0];
  541. this.localValue = data ? data : null;
  542. updateUrl = data ? data.url : '';
  543. } else {
  544. data = this.backObject(this.files);
  545. if (!this.localValue) {
  546. this.localValue = [];
  547. }
  548. this.localValue = [...data];
  549. if (this.localValue.length > 0) {
  550. this.localValue.forEach((item) => {
  551. updateUrl.push(item.url);
  552. });
  553. }
  554. }
  555. this.$emit('update:modelValue', this.localValue);
  556. this.$emit('update:url', updateUrl);
  557. },
  558. /**
  559. * 处理返回参数
  560. * @param {Object} files
  561. */
  562. backObject(files) {
  563. let newFilesData = [];
  564. files.forEach((v) => {
  565. newFilesData.push({
  566. extname: v.extname,
  567. fileType: v.fileType,
  568. image: v.image,
  569. name: v.name,
  570. path: v.path,
  571. size: v.size,
  572. fileID: v.fileID,
  573. url: v.url,
  574. });
  575. });
  576. return newFilesData;
  577. },
  578. async getTempFileURL(fileList) {
  579. fileList = {
  580. fileList: [].concat(fileList),
  581. };
  582. const urls = await uniCloud.getTempFileURL(fileList);
  583. return urls.fileList[0].tempFileURL || '';
  584. },
  585. /**
  586. * 获取父元素实例
  587. */
  588. getForm(name = 'uniForms') {
  589. let parent = this.$parent;
  590. let parentName = parent.$options.name;
  591. while (parentName !== name) {
  592. parent = parent.$parent;
  593. if (!parent) return false;
  594. parentName = parent.$options.name;
  595. }
  596. return parent;
  597. },
  598. },
  599. };
  600. </script>
  601. <style lang="scss" scoped>
  602. .uni-file-picker {
  603. /* #ifndef APP-NVUE */
  604. box-sizing: border-box;
  605. overflow: hidden;
  606. /* width: 100%; */
  607. /* #endif */
  608. /* flex: 1; */
  609. position: relative;
  610. }
  611. .uni-file-picker__header {
  612. padding-top: 5px;
  613. padding-bottom: 10px;
  614. /* #ifndef APP-NVUE */
  615. display: flex;
  616. /* #endif */
  617. justify-content: space-between;
  618. }
  619. .file-title {
  620. font-size: 14px;
  621. color: #333;
  622. }
  623. .file-count {
  624. font-size: 14px;
  625. color: #999;
  626. }
  627. .is-add {
  628. /* #ifndef APP-NVUE */
  629. display: flex;
  630. /* #endif */
  631. align-items: center;
  632. justify-content: center;
  633. }
  634. .add-icon {
  635. width: 57rpx;
  636. height: 49rpx;
  637. }
  638. .file-subtitle {
  639. position: absolute;
  640. left: 50%;
  641. transform: translateX(-50%);
  642. bottom: 0;
  643. width: 140rpx;
  644. height: 36rpx;
  645. z-index: 1;
  646. display: flex;
  647. justify-content: center;
  648. color: #fff;
  649. font-weight: 500;
  650. background: rgba(#000, 0.3);
  651. font-size: 24rpx;
  652. }
  653. </style>