This repository was archived by the owner on Feb 2, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathupload.js
103 lines (95 loc) · 3.11 KB
/
upload.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
import React, { useState, useEffect } from "react";
import { Link, MemoryRouter } from "react-router-dom";
import { storage } from "./_app";
import LinearProgress from "@material-ui/core/LinearProgress";
import Typography from "@material-ui/core/Typography";
import Box from "@material-ui/core/Box";
import { useAuthState } from "react-firebase-hooks/auth";
import firebase from "firebase/app";
const UpLoadTest = () => {
const [image, setImage] = useState("");
const [imageUrl, setImageUrl] = useState("");
const [error, setError] = useState("");
const [progress, setProgress] = useState(100);
const [authUser, authLoading, authError] = useAuthState(firebase.auth());
const uid = authUser?.uid;
console.log("aaa", uid);
const handleImage = (event) => {
const image = event.target.files[0];
setImage(image);
console.log(image);
setError("");
};
const onSubmit = (event) => {
event.preventDefault();
setError("");
if (image === "") {
console.log("ファイルが選択されていません");
setError("ファイルが選択されていません");
return;
}
// アップロード処理
console.log("アップロード処理");
const storageRef = storage.ref("user_icon"); //どのフォルダの配下に入れるかを設定
const imagesRef = storageRef.child(uid + ".png"); //ファイル名
console.log("ファイルをアップする行為");
const upLoadTask = imagesRef.put(image);
console.log("タスク実行前");
upLoadTask.on(
"state_changed",
(snapshot) => {
console.log("snapshot", snapshot);
const percent = (snapshot.bytesTransferred / snapshot.totalBytes) * 100;
console.log(percent + "% done");
setProgress(percent);
},
(error) => {
console.log("err", error);
setError("ファイルアップに失敗しました。" + error);
setProgress(100); //実行中のバーを消す
},
() => {
upLoadTask.snapshot.ref.getDownloadURL().then((downloadURL) => {
console.log("File available at", downloadURL);
setImageUrl(downloadURL);
});
}
);
};
return (
<div>
upload
{error && <div variant="danger">{error}</div>}
<h2>
<MemoryRouter>
<Link to="/Dashboard">Dashboard</Link>
</MemoryRouter>
</h2>
<form onSubmit={onSubmit}>
<input type="file" onChange={handleImage} />
<button onClick={onSubmit}>Upload</button>
</form>
{progress !== 100 && <LinearProgressWithLabel value={progress} />}
{imageUrl && (
<div>
<img width="400px" src={imageUrl} alt="uploaded" />
</div>
)}
</div>
);
};
function LinearProgressWithLabel(props) {
return (
<Box display="flex" alignItems="center">
<Box width="100%" mr={1}>
<LinearProgress variant="determinate" {...props} />
</Box>
<Box minWidth={35}>
<Typography variant="body2" color="textSecondary">{`${Math.round(
props.value
)}%`}</Typography>
</Box>
</Box>
);
}
export default UpLoadTest;