New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

@availity/mui-file-selector

Package Overview
Dependencies
Maintainers
0
Versions
29
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@availity/mui-file-selector

Availity MUI file-selector Component - part of the @availity/element design system

0.3.3
Source
npm
Version published
Weekly downloads
233
64.08%
Maintainers
0
Weekly downloads
 
Created
Source

@availity/mui-file-selector

Availity MUI File Selector component to be used with @availity/element design system.

Version NPM Downloads Dependency Status

Documentation

This package extends the MUI File Selector component: MUI File Selector Docs

Live demo and documentation in our Storybook

Availity standards for design and usage can be found in the Availity Design Guide

Installation

NPM
npm install @availity/element
Yarn
yarn add @availity/element

Direct Import

NPM

This package has a few peer dependencies. Add @mui/material & @emotion/react to your project if not already installed.

npm install @availity/mui-file-selector
Yarn
yarn add @availity/mui-file-selector

Usage

Import through @availity/element
import { FileSelector } from '@availity/element';
Direct import
import { FileSelector } from '@availity/mui-file-selector';
Basic Example

Here's a basic example of how to use the FileSelector component:

import React from 'react';
import { FileSelector } from '@availity/mui-file-selector';

const MyComponent = () => {
  const handleSubmit = (uploads, values) => {
    console.log('Submitted files:', uploads);
    console.log('Form values:', values);
  };

  return (
    <FileSelector
      name="myFiles"
      bucketId="your-bucket-id"
      customerId="your-customer-id"
      clientId="your-client-id"
      maxSize={5 * 1024 * 1024} // 5MB
      allowedFileTypes={['.pdf', '.doc', '.docx']}
      maxFiles={3}
      onSubmit={handleSubmit}
    />
  );
};

export default MyComponent;
Advanced Examples

The onSuccess and onError callbacks are available to use to add logic for after the file is uploaded or in the event there is an error with the api call.

import React from 'react';
import { FileSelector } from '@availity/mui-file-selector';

const MyFileUploadComponent = () => {
  const handleSuccess = () => {
    // Handle successful upload - e.g., show success message, update UI
  };

  const handleError = (error) => {
    // Handle upload error - e.g., show error message, retry upload
  };

  return (
    <FileSelector
      name="documentUpload"
      bucketId="your-bucket-id"
      customerId="your-customer-id"
      clientId="your-client-id"
      maxSize={10 * 1024 * 1024} // 10MB
      allowedFileTypes={['.pdf', '.doc', '.docx']}
      multiple={true}
      maxFiles={5}
      onSuccess={handleSuccess}
      onError={handleError}
    />
  );
};

export default MyFileUploadComponent;

Keywords

react

FAQs

Package last updated on 19 Feb 2025

Did you know?

Socket

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