npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

@ophiuchus/uploader

v1.0.1

Published

### 介绍

Downloads

2

Readme

Uploader 文件上传

介绍

用于将本地的图片或文件上传至服务器,并在上传过程中展示预览图和上传进度。目前 Uploader 组件不包含将文件上传至服务器的接口逻辑,该步骤需要自行实现。

引入

import Vue from 'vue';
import Uploader from '@ophiuchus/uploader';

Vue.use(Uploader);

代码演示

基础用法

文件上传完毕后会触发 after-read 回调函数,获取到对应的 file 对象。

<sf-uploader :after-read="afterRead" />
export default {
  methods: {
    afterRead(file) {
      // 此时可以自行将文件上传至服务器
      console.log(file);
    },
  },
};

文件预览

通过 v-model 可以绑定已经上传的文件列表,并展示文件列表的预览图。

<sf-uploader v-model="fileList" multiple />
export default {
  data() {
    return {
      fileList: [
        { url: 'https://img4.tuhu.org/JU_d6bTpbt6kxlAcmNKCew_w660_h520.jpeg' },
        // Uploader 根据文件后缀来判断是否为图片文件
        // 如果图片 URL 中不包含类型信息,可以添加 isImage 标记来声明
        { url: 'https://cloud-image', isImage: true },
      ],
    };
  },
};

上传状态

通过 status 属性可以标识上传状态,uploading 表示上传中,failed 表示上传失败,done 表示上传完成。

<sf-uploader v-model="fileList" :after-read="afterRead" />
export default {
  data() {
    return {
      fileList: [
        {
          url: 'https://img4.tuhu.org/JU_d6bTpbt6kxlAcmNKCew_w660_h520.jpeg',
          status: 'uploading',
          message: '上传中...',
        },
        {
          url: 'https://img4.tuhu.org/4sVmt9tW6ZR89aBswsUhfA_w1600_h1295.jpeg',
          status: 'failed',
          message: '上传失败',
        },
      ],
    };
  },
  methods: {
    afterRead(file) {
      file.status = 'uploading';
      file.message = '上传中...';

      setTimeout(() => {
        file.status = 'failed';
        file.message = '上传失败';
      }, 1000);
    },
  },
};

限制上传数量

通过 max-count 属性可以限制上传文件的数量,上传数量达到限制后,会自动隐藏上传区域。

<sf-uploader v-model="fileList" multiple :max-count="2" />
export default {
  data() {
    return {
      fileList: [],
    };
  },
};

限制上传大小

通过 max-size 属性可以限制上传文件的大小,超过大小的文件会被自动过滤,这些文件信息可以通过 oversize 事件获取。

<sf-uploader multiple :max-size="500 * 1024" @oversize="onOversize" />
import Toast from '@ophiuchus/toast';

export default {
  methods: {
    onOversize(file) {
      console.log(file);
      Toast('文件大小不能超过 500kb');
    },
  },
};

如果需要针对不同类型的文件来作出不同的大小限制,可以在 max-size 属性中传入一个函数,在函数中通过 file.type 区分文件类型,返回 true 表示超出限制,false 表示未超出限制。

<sf-uploader multiple :max-size="isOverSize" />
import Toast  from '@ophiuchus/toast';

export default {
  methods: {
    isOverSize() {
      const maxSize = file.type === 'image/jpeg' ? 500 * 1024 : 1000 * 1024;
      return file.size >= maxSize;
    },
  },
};

自定义上传样式

通过默认插槽可以自定义上传区域的样式。

<sf-uploader>
  <sf-button icon="plus" type="primary">上传文件</sf-button>
</sf-uploader>

自定义预览样式

通过 preview-cover 插槽可以自定义覆盖在预览区域上方的内容。

<sf-uploader v-model="fileList">
  <template #preview-cover="{ file }">
    <div class="preview-cover sf-ellipsis">{ { file.name } }</div>
  </template>
</sf-uploader>

<style>
  .preview-cover {
    position: absolute;
    bottom: 0;
    box-sizing: border-box;
    width: 100%;
    padding: 4px;
    color: #fff;
    font-size: 12px;
    text-align: center;
    background: rgba(0, 0, 0, 0.3);
  }
</style>

上传前置处理

通过传入 beforeRead 函数可以在上传前进行校验和处理,返回 true 表示校验通过,返回 false 表示校验失败。支持返回 Promise 对 file 对象进行自定义处理,例如压缩图片。

<sf-uploader :before-read="beforeRead" />
import Toast  from '@ophiuchus/toast';

export default {
  methods: {
    // 返回布尔值
    beforeRead(file) {
      if (file.type !== 'image/jpeg') {
        Toast('请上传 jpg 格式图片');
        return false;
      }
      return true;
    },
    // 返回 Promise
    asyncBeforeRead(file) {
      return new Promise((resolve, reject) => {
        if (file.type !== 'image/jpeg') {
          Toast('请上传 jpg 格式图片');
          reject();
        } else {
          let img = new File(['foo'], 'bar.jpg', {
            type: 'image/jpeg',
          });
          resolve(img);
        }
      });
    },
  },
};

禁用文件上传

通过 disabled 属性禁用文件上传。

<sf-uploader disabled />

自定义单个图片预览

v-model 数组中设置单个预览图片属性,支持 imageFit deletable previewSize beforeDelete

<sf-uploader v-model="fileList" :deletable="false" />
import Toast  from '@ophiuchus/toast';

export default {
  data() {
    return {
      fileList = [
        { url: 'https://img4.tuhu.org/JU_d6bTpbt6kxlAcmNKCew_w660_h520.jpeg' },
        {
          url: 'https://img4.tuhu.org/D3n023kFjjgjYzz87qdh4g_w1600_h1331.jpeg',
          deletable: true,
          beforeDelete: () => {
            Toast('自定义单个预览图片的事件和样式');
          },
        },
        {
          url: 'https://img4.tuhu.org/4sVmt9tW6ZR89aBswsUhfA_w1600_h1295.jpeg',
          deletable: true,
          imageFit: 'contain',
          previewSize: 120,
        },
      ];
    }
  }
};

API

Props

| 参数 | 说明 | 类型 | 默认值 | | --- | --- | --- | --- | | v-model (fileList) | 已上传的文件列表 | FileListItem[] | - | | accept | 允许上传的文件类型,详细说明 | string | image/* | | name | 标识符,可以在回调函数的第二项参数中获取 | number | string | - | | preview-size | 预览图和上传区域的尺寸,默认单位为 px | number | string | 80px | | preview-image | 是否在上传完成后展示预览图 | boolean | true | | preview-full-image | 是否在点击预览图后展示全屏图片预览 | boolean | true | | preview-options | 全屏图片预览的配置项,可选值见 ImagePreview | object | - | | multiple | 是否开启图片多选,部分安卓机型不支持 | boolean | false | | disabled | 是否禁用文件上传 | boolean | false | | deletable | 是否展示删除按钮 | boolean | true | | show-upload | 是否展示上传区域 | boolean | true | | lazy-load | 是否开启图片懒加载,须配合 Lazyload 组件使用 | boolean | false | | capture | 图片选取模式,可选值为 camera (直接调起摄像头) | string | - | | after-read | 文件读取完成后的回调函数 | Function | - | | before-read | 文件读取前的回调函数,返回 false 可终止文件读取,支持返回 Promise | Function | - | | before-delete | 文件删除前的回调函数,返回 false 可终止文件读取,支持返回 Promise | Function | - | | max-size | 文件大小限制,单位为 byte | number | string | (file: File) => boolean | - | | max-count | 文件上传数量限制 | number | string | - | | result-type | 文件读取结果类型,可选值为 file text | string | dataUrl | | upload-text | 上传区域文字提示 | string | - | | image-fit | 预览图裁剪模式,可选值见 Image 组件 | string | cover | | upload-icon | 上传区域图标名称或图片链接 | string | photograph |

注意:accept、capture 和 multiple 为浏览器 input 标签的原生属性,移动端各种机型对这些属性的支持程度有所差异,因此在不同机型和 WebView 下可能出现一些兼容性问题。

Events

| 事件名 | 说明 | 回调参数 | | ------------- | ---------------------- | --------------- | | oversize | 文件大小超过限制时触发 | 同 after-read | | click-preview | 点击预览图时触发 | 同 after-read | | close-preview | 关闭全屏图片预览时触发 | - | | delete | 删除文件预览时触发 | 同 after-read |

Slots

| 名称 | 说明 | 参数 | | --- | --- | --- | | default | 自定义上传区域 | - | | preview-cover | 自定义覆盖在预览区域上方的内容 | item: FileListItem |

回调参数

before-read、after-read、before-delete 执行时会传递以下回调参数:

| 参数名 | 说明 | 类型 | | ------ | --------------------------------- | -------- | | file | file 对象 | object | | detail | 额外信息,包含 name 和 index 字段 | object |

ResultType  可选值

result-type 字段表示文件读取结果的类型,上传大文件时,建议使用 file 类型,避免卡顿。

| 值 | 描述 | | ------- | ---------------------------------------------- | | file | 结果仅包含 File 对象 | | text | 结果包含 File 对象,以及文件的文本内容 | | dataUrl | 结果包含 File 对象,以及文件对应的 base64 编码 |

方法

通过 ref 可以获取到 Uploader 实例并调用实例方法,详见组件实例方法

| 方法名 | 说明 | 参数 | 返回值 | | --- | --- | --- | --- | | closeImagePreview | 关闭全屏的图片预览 | - | - | | chooseFile | 主动调起文件选择,由于浏览器安全限制,只有在用户触发操作的上下文中调用才有效 | - | - |

样式变量

组件提供了下列 Less 变量,可用于自定义样式,使用方法请参考主题定制

| 名称 | 默认值 | 描述 | | ---------------------------------- | -------------------- | ---- | | @uploader-size | 80px | - | | @uploader-icon-size | 24px | - | | @uploader-icon-color | @gray-4 | - | | @uploader-text-color | @gray-6 | - | | @uploader-text-font-size | @font-size-sm | - | | @uploader-upload-background-color | @gray-1 | - | | @uploader-upload-active-color | @active-color | - | | @uploader-delete-color | @white | - | | @uploader-delete-icon-size | 14px | - | | @uploader-delete-background-color | rgba(0, 0, 0, 0.7) | - | | @uploader-file-background-color | @background-color | - | | @uploader-file-icon-size | 20px | - | | @uploader-file-icon-color | @gray-7 | - | | @uploader-file-name-padding | 0 @padding-base | - | | @uploader-file-name-margin-top | @padding-xs | - | | @uploader-file-name-font-size | @font-size-sm | - | | @uploader-file-name-text-color | @gray-7 | - | | @uploader-mask-background-color | fade(@gray-8, 88%) | - | | @uploader-mask-icon-size | 22px | - | | @uploader-mask-message-font-size | @font-size-sm | - | | @uploader-mask-message-line-height | @line-height-xs | - | | @uploader-loading-icon-size | 22px | - | | @uploader-loading-icon-color | @white | - | | @uploader-disabled-opacity | @disabled-opacity | - |

常见问题

拍照上传的图片被旋转 90 度?

部分手机在拍照上传时会出现图片被旋转 90 度的问题,这个问题可以通过 compressorjs 或其他开源库进行处理。

compressorjs 是一个开源的图片处理库,提供了图片压缩、图片旋转等能力。

示例

使用 compressorjs 进行处理的示例代码如下:

<sf-uploader :before-read="beforeRead" />
import Compressor from 'compressorjs';

export default {
  methods: {
    beforeRead(file) {
      return new Promise((resolve) => {
        // compressorjs 默认开启 checkOrientation 选项
        // 会将图片修正为正确方向
        new Compressor(file, {
          success: resolve,
          error(err) {
            console.log(err.message);
          },
        });
      });
    },
  },
};

上传 HEIC/HEIF 格式的图片后无法展示?

目前 Chrome、Safari 等浏览器不支持展示 HEIC/HEIF 格式的图片,因此上传后无法在 Uploader 组件中进行预览。

[HEIF] 格式的兼容性请参考 caniuse