file
This commit is contained in:
parent
4f613f492e
commit
f8d7abdeba
@ -10,7 +10,12 @@ import { Link } from "react-router-dom";
|
||||
import { getProfileInfo } from "@redux/outstaffingSlice";
|
||||
import { setProjectBoardFetch } from "@redux/projectsTrackerSlice";
|
||||
|
||||
import {caseOfNum, getCorrectRequestDate, getToken, urlForLocal} from "@utils/helper";
|
||||
import {
|
||||
caseOfNum,
|
||||
getCorrectRequestDate,
|
||||
getToken,
|
||||
urlForLocal,
|
||||
} from "@utils/helper";
|
||||
|
||||
import { apiRequest } from "@api/request";
|
||||
|
||||
@ -63,7 +68,7 @@ export const ModalTiсket = ({
|
||||
const [executor, setExecutor] = useState(task.executor);
|
||||
const [members, setMembers] = useState(task.taskUsers);
|
||||
const [users, setUsers] = useState([]);
|
||||
const [selectedFile, setSelectedFile] = useState(null)
|
||||
const [selectedFile, setSelectedFile] = useState(null);
|
||||
const [timerStart, setTimerStart] = useState(false);
|
||||
const [timerInfo, setTimerInfo] = useState({});
|
||||
const [currentTimerCount, setCurrentTimerCount] = useState({
|
||||
@ -304,9 +309,8 @@ export const ModalTiсket = ({
|
||||
}, []);
|
||||
|
||||
const handleUpload = async (event) => {
|
||||
|
||||
const formData = new FormData()
|
||||
formData.append('uploadFile ', event.target.files[0])
|
||||
const formData = new FormData();
|
||||
formData.append("uploadFile ", event.target.files[0]);
|
||||
// apiRequest('/file/upload', {
|
||||
// method: 'POST',
|
||||
// data: {
|
||||
@ -316,18 +320,18 @@ export const ModalTiсket = ({
|
||||
// console.log(res)
|
||||
// })
|
||||
// console.log(formData)
|
||||
const res = await fetch('https://itguild.info/file/upload', {
|
||||
method: 'POST',
|
||||
const res = await fetch("https://itguild.info/file/upload", {
|
||||
method: "POST",
|
||||
body: formData,
|
||||
headers: {
|
||||
"Access-Control-Allow-Origin": "*",
|
||||
"Content-Type": "application/json",
|
||||
...getToken()
|
||||
}
|
||||
})
|
||||
...getToken(),
|
||||
},
|
||||
});
|
||||
|
||||
console.log(res)
|
||||
}
|
||||
console.log(res);
|
||||
};
|
||||
|
||||
function startTimer() {
|
||||
setTimerId(
|
||||
@ -475,19 +479,16 @@ export const ModalTiсket = ({
|
||||
{/* </button>*/}
|
||||
{/*</p>*/}
|
||||
<div className="file">
|
||||
<div className='input__wrapper'>
|
||||
<div className="input__wrapper">
|
||||
<input
|
||||
name="file"
|
||||
id="input__file"
|
||||
type="file"
|
||||
accept="image/*,.png,.jpg,.svg,.jpeg"
|
||||
className='input__file'
|
||||
className="input__file"
|
||||
onChange={handleUpload}
|
||||
/>
|
||||
<label
|
||||
htmlFor="input__file"
|
||||
className="button-add-file"
|
||||
>
|
||||
<label htmlFor="input__file" className="button-add-file">
|
||||
<img src={file}></img>
|
||||
Загрузить файл
|
||||
</label>
|
||||
|
Loading…
Reference in New Issue
Block a user