File tree 2 files changed +37
-35
lines changed
src/pages/[platform]/build-a-backend/storage
2 files changed +37
-35
lines changed Original file line number Diff line number Diff line change @@ -790,30 +790,31 @@ class MyApp extends StatefulWidget {
790
790
Next, let's a photo to the `picture-submissions/` path.
791
791
792
792
<InlineFilter filters={["react", "react-native"]}>
793
- ` ` ` javascript
793
+ ` ` ` jsx
794
794
import React from 'react';
795
795
import { uploadData } from 'aws-amplify/storage';
796
796
797
797
function App() {
798
798
const [file, setFile] = React.useState();
799
799
800
- const handleChange = (event: any) => {
801
- setFile(event.target.files[0]);
800
+ const handleChange = (event) => {
801
+ setFile(event.target.files?.[0]);
802
+ };
803
+
804
+ const handleClick = () => {
805
+ if (!file) {
806
+ return;
807
+ }
808
+ uploadData({
809
+ path: ` picture-submissions/${file.name}`,
810
+ data : file,
811
+ });
802
812
};
803
813
804
814
return (
805
815
<div>
806
816
<input type="file" onChange={handleChange} />
807
- <button
808
- onClick={() =>
809
- uploadData({
810
- path: ` picture-submissions/${file.name}`,
811
- data : file,
812
- })
813
- }
814
- >
815
- Upload
816
- </button>
817
+ <button onClick={handleClick}>Upload</button>
817
818
</div>
818
819
);
819
820
}
Original file line number Diff line number Diff line change @@ -82,32 +82,33 @@ Learn more about how you can further customize the UI component by referring to
82
82
The following is an example of how you would upload a file from a file object, this could be retrieved from the local machine or a different source.
83
83
84
84
<InlineFilter filters = { [" react" , " react-native" ]} >
85
- ``` javascript
85
+ ``` jsx
86
86
import React from ' react' ;
87
87
import { uploadData } from ' aws-amplify/storage' ;
88
88
89
89
function App () {
90
- const [file , setFile ] = React .useState ();
91
-
92
- const handleChange = (event : any ) => {
93
- setFile (event .target .files [0 ]);
94
- };
95
-
96
- return (
97
- < div>
98
- < input type= " file" onChange= {handleChange} / >
99
- < button
100
- onClick= {() =>
101
- uploadData ({
102
- path: ` photos/${ file .name } ` ,
103
- data: file,
104
- })
105
- }
106
- >
107
- Upload
108
- < / button>
109
- < / div>
110
- );
90
+ const [file , setFile ] = React .useState ();
91
+
92
+ const handleChange = (event ) => {
93
+ setFile (event .target .files ? .[0 ]);
94
+ };
95
+
96
+ const handleClick = () => {
97
+ if (! file) {
98
+ return ;
99
+ }
100
+ uploadData ({
101
+ path: ` photos/${ file .name } ` ,
102
+ data: file,
103
+ });
104
+ };
105
+
106
+ return (
107
+ < div>
108
+ < input type= " file" onChange= {handleChange} / >
109
+ < button onClick= {handleClick}> Upload< / button>
110
+ < / div>
111
+ );
111
112
}
112
113
` ` `
113
114
</InlineFilter>
You can’t perform that action at this time.
0 commit comments