123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321 |
- <template>
- <view class="van-uploader">
- <view class="van-uploader__wrapper">
- <!-- 预览样式 -->
- <view v-if="previewImage" class="van-uploader__preview" :data-index="index" @tap="onClickPreview" v-for="(item, index) in lists" :key="index">
- <image
- v-if="item.isImage"
- :mode="imageFit"
- :src="item.url || item.path"
- :alt="item.name || '图片' + index"
- class="van-uploader__preview-image"
- :style="'width: ' + utils.addUnit(previewSize) + '; height: ' + utils.addUnit(previewSize) + ';'"
- :data-index="index"
- @tap="onPreviewImage"
- />
- <view v-else class="van-uploader__file" :style="'width: ' + utils.addUnit(previewSize) + '; height: ' + utils.addUnit(previewSize) + ';'">
- <van-icon name="description" class="van-uploader__file-icon" />
- <view class="van-uploader__file-name van-ellipsis">{{ item.name || item.url || item.path }}</view>
- </view>
- <view v-if="item.status === 'uploading' || item.status === 'failed'" class="van-uploader__mask">
- <van-icon v-if="item.status === 'failed'" name="warning-o" class="van-uploader__mask-icon" />
- <van-loading v-else class="van-uploader__loading" />
- <text v-if="item.message" class="van-uploader__upload-text">{{ item.message }}</text>
- </view>
- <view v-if="deletable && item.deletable" :data-index="index" class="van-uploader__preview-delete" @tap.stop.prevent="deleteItem">
- <van-icon name="clear" class="van-uploader__preview-delete__icon" />
- </view>
- </view>
- <!-- 上传样式 -->
- <block v-if="isInCount">
- <view class="van-uploader__slot" @tap="startUpload">
- <slot />
- </view>
- <!-- 默认上传样式 -->
- <view
- v-if="showUpload"
- :class="'van-uploader__upload ' + (disabled ? 'van-uploader__upload--disabled' : '')"
- :style="'width: ' + utils.addUnit(previewSize) + '; height: ' + utils.addUnit(previewSize) + ';'"
- @tap="startUpload"
- >
- <van-icon :name="uploadIcon" class="van-uploader__upload-icon" />
- <text v-if="uploadText" class="van-uploader__upload-text">{{ uploadText }}</text>
- </view>
- </block>
- </view>
- </view>
- </template>
- <script module="utils" lang="wxs" src="@/miniprogram_npm/@vant/weapp/wxs/utils.wxs"></script>
- <script>
- 'use strict';
- var __assign =
- (this && this.__assign) ||
- function () {
- __assign =
- Object.assign ||
- function (t) {
- for (var s, i = 1, n = arguments.length; i < n; i++) {
- s = arguments[i];
- for (var p in s) {
- if (Object.prototype.hasOwnProperty.call(s, p)) {
- t[p] = s[p];
- }
- }
- }
- return t;
- };
- return __assign.apply(this, arguments);
- };
- Object.defineProperty(exports, '__esModule', {
- value: true
- });
- var component_1 = require('../common/component');
- var utils_1 = require('./utils');
- var shared_1 = require('./shared');
- component_1.VantComponent({
- props: __assign(
- __assign(
- {
- disabled: Boolean,
- multiple: Boolean,
- uploadText: String,
- useBeforeRead: Boolean,
- afterRead: null,
- beforeRead: null,
- previewSize: {
- type: null,
- value: 90
- },
- name: {
- type: [Number, String],
- value: ''
- },
- accept: {
- type: String,
- value: 'image'
- },
- fileList: {
- type: Array,
- value: [],
- observer: 'formatFileList'
- },
- maxSize: {
- type: Number,
- value: Number.MAX_VALUE
- },
- maxCount: {
- type: Number,
- value: 100
- },
- deletable: {
- type: Boolean,
- value: true
- },
- showUpload: {
- type: Boolean,
- value: true
- },
- previewImage: {
- type: Boolean,
- value: true
- },
- previewFullImage: {
- type: Boolean,
- value: true
- },
- imageFit: {
- type: String,
- value: 'scaleToFill'
- },
- uploadIcon: {
- type: String,
- value: 'photograph'
- }
- },
- shared_1.chooseImageProps
- ),
- shared_1.chooseVideoProps
- ),
- data: {
- lists: [],
- isInCount: true
- },
- methods: {
- formatFileList: function () {
- var _a = this;
- var _b = _a.fileList;
- var fileList = _b === void 0 ? [] : _b;
- var maxCount = _a.maxCount;
- var lists = fileList.map(function (item) {
- return __assign(__assign({}, item), {
- isImage: typeof item.isImage === 'undefined' ? utils_1.isImageFile(item) : item.isImage,
- deletable: typeof item.deletable === 'undefined' ? true : item.deletable
- });
- });
- this.setData({
- lists: lists,
- isInCount: lists.length < maxCount
- });
- },
- getDetail: function (index) {
- return {
- name: this.name,
- index: index == null ? this.fileList.length : index
- };
- },
- startUpload: function () {
- var that = this;
- var _a = this;
- var maxCount = _a.maxCount;
- var multiple = _a.multiple;
- var accept = _a.accept;
- var lists = _a.lists;
- var disabled = _a.disabled;
- if (disabled) {
- return;
- }
- utils_1
- .chooseFile(
- __assign(__assign({}, this), {
- maxCount: maxCount - lists.length
- })
- )
- .then(function (res) {
- var file = null;
- if (utils_1.isVideo(res, accept)) {
- file = __assign(
- {
- path: res.tempFilePath
- },
- res
- );
- } else {
- file = multiple ? res.tempFiles : res.tempFiles[0];
- }
- that.onBeforeRead(file);
- })
- .catch(function (error) {
- that.$emit('error', error);
- });
- },
- onBeforeRead: function (file) {
- var that = this;
- var _a = this;
- var beforeRead = _a.beforeRead;
- var useBeforeRead = _a.useBeforeRead;
- var res = true;
- if (typeof beforeRead === 'function') {
- res = beforeRead(file, this.getDetail());
- }
- if (useBeforeRead) {
- res = new Promise(function (resolve, reject) {
- that.$emit(
- 'before-read',
- __assign(
- __assign(
- {
- file: file
- },
- that.getDetail()
- ),
- {
- callback: function (ok) {
- ok ? resolve() : reject();
- }
- }
- )
- );
- });
- }
- if (!res) {
- return;
- }
- if (utils_1.isPromise(res)) {
- res.then(function (data) {
- return that.onAfterRead(data || file);
- });
- } else {
- this.onAfterRead(file);
- }
- },
- onAfterRead: function (file) {
- var maxSize = this.maxSize;
- var oversize = Array.isArray(file)
- ? file.some(function (item) {
- return item.size > maxSize;
- })
- : file.size > maxSize;
- if (oversize) {
- this.$emit(
- 'oversize',
- __assign(
- {
- file: file
- },
- this.getDetail()
- )
- );
- return;
- }
- if (typeof this.afterRead === 'function') {
- this.afterRead(file, this.getDetail());
- }
- this.$emit(
- 'after-read',
- __assign(
- {
- file: file
- },
- this.getDetail()
- )
- );
- },
- deleteItem: function (event) {
- var index = event.currentTarget.dataset.index;
- this.$emit(
- 'delete',
- __assign(__assign({}, this.getDetail(index)), {
- file: this.fileList[index]
- })
- );
- },
- onPreviewImage: function (event) {
- if (!this.previewFullImage) {
- return;
- }
- var index = event.currentTarget.dataset.index;
- var lists = this.lists;
- var item = lists[index];
- uni.previewImage({
- urls: lists
- .filter(function (item) {
- return item.isImage;
- })
- .map(function (item) {
- return item.url || item.path;
- }),
- current: item.url || item.path,
- fail: function () {
- uni.showToast({
- title: '预览图片失败',
- icon: 'none'
- });
- }
- });
- },
- onClickPreview: function (event) {
- var index = event.currentTarget.dataset.index;
- var item = this.lists[index];
- this.$emit('click-preview', __assign(__assign({}, item), this.getDetail(index)));
- }
- }
- });
- </script>
- <style>
- @import './index.css';
- </style>
|