![Create React App Officially Deprecated Amid React 19 Compatibility Issues](https://cdn.sanity.io/images/cgdhsj6q/production/04fa08cf844d798abc0e1a6391c129363cc7e2ab-1024x1024.webp?w=400&fit=max&auto=format)
Security News
Create React App Officially Deprecated Amid React 19 Compatibility Issues
Create React App is officially deprecated due to React 19 issues and lack of maintenance—developers should switch to Vite or other modern alternatives.
@rpldy/upload-button
Advanced tools
Upload button component and asUploadButton HOC
Initiate file upload by opening the browser's native file selection dialog.
Buttons can use different configuration overrides that supersede the options passed to the parent Uploady.
Note: Some options cannot be overriden by the button. For example, any prop that influences the file input directly (such as 'multiple')
#Yarn:
$ yarn add @rpldy/uploady @rpldy/upload-button
#NPM:
$ npm i @rpldy/uploady @rpldy/upload-button
Name (* = mandatory) | Type | Default | Description |
---|---|---|---|
id | string | undefined | id attribute to pass to the button element |
text | string | "Upload" | the button text (in case no children passed) |
className | string | undefined | the class attribute to pass to the button element |
children | React.Node | undefined | child element(s) to render inside the button (replaces text) |
extraProps | Object | undefined | any other props to pass to the button component (with spread) |
ref | React ref | undefined | will be passed to the button element to acquire a ref |
onClick | EventHandler | undefined | function to handle button click (called after showing the system's file selection dialog) |
In addition, most UploadOptions props can be passed to UploadButton. In order to override configuration passed to the parent Uploady component. See Uploady documentation for detailed list of upload options.
The following guide shows how different upload buttons may use different upload options.
This examples shows how you add Uploady and UploadButton to your app. This is all it takes to get file uploading to work in your React app.
import React from "react";
import Uploady from "@rpldy/uploady";
import UploadButton from "@rpldy/upload-button";
const App = () => (<Uploady
destination={{ url: "https://my-server/upload" }}>
<UploadButton/>
</Uploady>);
In case you want to use your own component as the upload trigger, use the asUploadButton HOC:
import React, { forwardRef } from "react";
import Uploady from "@rpldy/uploady";
import { asUploadButton } from "@rpldy/upload-button";
const DivUploadButton = asUploadButton(forwardRef(
(props, ref) =>
<div {...props} style={{ cursor: "pointer" }}>
DIV Upload Button
</div>
));
const App = () => (<Uploady
destination={{ url: "https://my-server/upload" }}>
<DivUploadButton/>
</Uploady>);
Note: asUploadButton makes it possible to gain access to the underlying component with a ref. To support this, it passes along a ref to the component you provide it. For functional components, you'd need to wrap your component with React.forwardRef.
0.6.0 (2020-09-19)
[uploader]
- SSR: dont use window if not available
[shared]
- SSR: dont use window if not available
[chunked-sender]
- SSR: dont use window if not available
[safe-storage]
- SSR: dont use window if not available
[uploady]
- SSR: noPortal prop - Dont render Uploady's file input in a portal
all
- esm and cjs are both available in npm
[uploader]
- fixed bug preventing retry item while its batch is still in progress[upload-button]
- clarified use of forwardRef for asUploadButtonstorybook
- upgraded to SB 6misc
- removed use of async/await = no dependency on regenerator-runtimeFAQs
upload button component and asUploadButton HOC
The npm package @rpldy/upload-button receives a total of 8,964 weekly downloads. As such, @rpldy/upload-button popularity was classified as popular.
We found that @rpldy/upload-button demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 open source maintainers collaborating on the project.
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.
Security News
Create React App is officially deprecated due to React 19 issues and lack of maintenance—developers should switch to Vite or other modern alternatives.
Security News
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
Security News
The Linux Foundation is warning open source developers that compliance with global sanctions is mandatory, highlighting legal risks and restrictions on contributions.