Socket
Socket
Sign inDemoInstall

@s-ui/react-molecule-photo-uploader

Package Overview
Dependencies
8
Maintainers
75
Versions
57
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    @s-ui/react-molecule-photo-uploader

`MoleculePhotoUploader` is a component that lets you drag and drop images on it, or click it to add images. Also, on mobile, let you add photos directly taken with the camera.


Version published
Weekly downloads
1.9K
increased by68.09%
Maintainers
75
Created
Weekly downloads
 

Readme

Source

MoleculePhotoUploader

MoleculePhotoUploader is a component that lets you drag and drop images on it, or click it to add images. Also, on mobile, let you add photos directly taken with the camera.

Once uploaded into the component, all images will be resized if they are exceeding the max resolution defined by props and/or cropped to fit a given ratio. And JPEG encoded with a little bit of compression.

After they are loaded, the images can be sorted, rotated or deleted from the list.

A set of initial images can be load with an array of URLs passed by props.

Every modification of the list will return a list of Blobs (jpeg encoded!) to be uploaded on a server or whatever you like, and with the Blob, some useful info:

url (String) if the image is one of the initially passed by props will contain an url, if it's undefined, it's a new image.

id (String) you could pass an id to identify each image that was initially passed

isNew (Boolean) if it's a new uploaded image, will be true, if not, will be false and it will have an url.

isModified (Boolean): if an image of the initialPhotos, has been rotated, will be isModified: true

hasErrors (Boolean) if a initial photo has some kind of error when the component try to download, will have hasErrors: true

file (Object) it's the new uploaded file.

previewUrl (String) a preview url to use if you wanna preview the images outside the photoUploader component

Installation

$ npm install @s-ui/react-molecule-photo-uploader --save

Usage

After importing the component MoleculePhotoUploader like this

import MoleculePhotoUploader from '@s-ui/react-molecule-photo-uploader'

Basic usage

<MoleculePhotoUploader
  // Icons (required props)
  addMorePhotosIcon={_addMorePhotosIcon}
  deleteIcon={_deleteIcon}
  dragPhotosIcon={_dragPhotosIcon}
  infoIcon={_infoIcon}
  rejectPhotosIcon={_rejectPhotosIcon}
  retryIcon={_retryErrorPhotosIcon}
  rotateIcon={_rotateIcon}
  // Texts (required props)
  addPhotoTextButton={'Seleccionalas de tu dispositivo'}
  addPhotoTextSkeleton={'Añadir más'}
  dragPhotoTextInitialContent={'Arrastra las fotos aquí'}
  dropPhotosHereText={'Suelta las fotos aquí'}
  errorFileExcededMaxSizeText={
    'Las fotografías deben tener un peso máximo de 50 MB'
  }
  errorFormatPhotoUploadedText={
    'Las fotografías deben tener formato JPEG, PNG, GIF, BMP o WEBP'
  }
  errorInitialPhotoDownloadErrorText={'Error al descargar imágenes'}
  notificationErrorFormatPhotoUploaded={
    'Sólo se aceptan los formatos: formato JPEG, PNG, GIF, BMP o WEBP'
  }
  uploadingPhotosText={'Subiendo imágenes...'}
  errorCorruptedPhotoUploadedText={'Archivo %{filepath} ha fallado'}
  // Not required props
  callbackPhotosRejected={rejectedPhotos => console.log(rejectedPhotos)}
  callbackPhotosUploaded={acceptedPhotos => console.log(acceptedPhotos)}
  callbackUploadPhoto={(file, oldUrl) => console.log(file, oldUrl)}
  limitPhotosUploadedText={_limitPhotosUploaded}
  limitPhotosUploadedNotification={_limitPhotosUploadedNotification}
  mainPhotoLabel={'PRINCIPAL'}
  maxPhotos={10}
  rotationDirection={'clockwise'}
  initialPhotos={[
    {url: 'https://images.net/image1.jpg', id: '6c7ee3d8-97db-4142-8520-5136fccfc40b'},
    {url: 'https://images.net/image2.jpg}'
  ]}
/>

Find full description and more examples in the demo page.

FAQs

Last updated on 09 Apr 2024

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc