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

@n3/react-fileuploader

v0.9.9

Published

File uploader component for react applications

Downloads

400

Readme

@n3/react-fileuploader

Установка

npm install @n3/react-fileuploader

API

Использование

import { FileUploader } from '@n3/react-fileuploader';

...

<FileUploader
  files={files}
  isShow={isShow}
  disabled={disabled}
  multiple={multiple}
  maxLength={maxLength}
  help={help}
  renderFile={renderFile}
  uploadFile={uploadFile}
  onChange={onChangeFiles}
  showDownloadControl={showDownloadControl}
  showRemoveControl={showRemoveControl}
  getControls={getControls}
  isDragAndDrop={isDragAndDrop}
/>

Props

| Название | Обязательность | Тип | Значение по умолчанию | Описание | |----------|----------------|-----|-----------------------|----------| | buttonProps | | { [key: string]: unknown } | undefined | Дополнительные props кнопки в варианте вывода кнопкой | | disabled | | bool | false | Выключено ли поле ввода | | multiple | | bool | true | Возможен ли выбор нескольких файлов в инпуте | | maxLength | | number | null | Максимальное количество файлов для загрузки (в случае null не ограничено) | | help | | node | null | Текст подсказки | | files | + | arrayOf [  shape {  - id    custom  - name    string  - url    string  - size    number  - extension    string  - isImage    bool  - uploadErrors    union    - string    - arrayOf [        string      ]  }] | | Список загруженных файлов | | inputProps | | object | {} | Объект дополнительных свойств для input[type="file"] элемента | | isShow | | bool | false | Включен ли режим просмотра (отображается только список файлов, по умолчанию нет кнопки удаления) | | isDragAndDrop | | bool | true | Показывать ли поле для драг-н-дропа | | renderFile | | func | (fileId, props, FileBlockComponent) => (<FileBlockComponent {...props} key={fileId} />) | Функция для переопределения рендера загруженных или загружающихся файлов@param {string | number} fileId - id файла@param {Object} props - оригинальные props, которые принимает FileBlockComponent@param {'submitting' | 'ready' | 'error'} props.mode - местоположение файла (список загуженных/загружающихся/загруженных с ошибкой)@param {React.Component} FileBlockComponent - оригинальный компонент для рендера@param {number} index - индекс файла в списке | | uploadFile | + | func | | Асихнхронная функция загрузки файла на сервер@async@param {File} file - файл для загрузки@return {Promise<{id, name, url, size, extension}>} - описание загруженного файла | | onUploadFile | | func | Function.prototype | Обработчик успшной загрузки файла@param {UploaderFile} file- загруженный файл | | onRemoveFile | | func | Function.prototype | Обработчик удаления загруженного файла@param {number} fileIndex - индекс файла для удаления@param {FileId} fileId - id файла для удаления@param {UploaderFile} file - файл для удаления | | onChange | | func | Function.prototype | Обработчик изменения списка файлов@param {UploaderFile[]} files - новый список файлов | | showDownloadControl | | bool | true | Показывать ли кнопку скачивания файла | | showRemoveControl | | bool | true | Показывать ли кнопку удаления файла | | getControls | | func | defaultGetControls | Функция, создающая конфигурацию кнопок для управления файлом, перекрывает свойства showRemoveControl и showDownloadControl@param {Object} params - объект параметров@param {UploaderFile} params.file - описание файла@param {boolean} params.disabled - выключено ли поле загрузки@param {boolean} params.showDownloadControl - описано выше@param {boolean} params.showRemoveControl - описано выше@param {Function} params.removeFile - функция удаления текущего файла из списка |

UploadFileError

Ошибка, которая должна быть вызвана в случае неудачной загрузки файла в функции uploadFile

import { UploadFileError } from '@n3/react-fileuploader';

const uploadFile = async () {
  // ...

  throw new UploadFileError([
    'error1',
    'error2',
    'error3',
  ]);
}