1
|
import {Button, Paper} from '@mui/material'
|
2
|
import {Fragment, useEffect, useState} from 'react'
|
3
|
import { useDispatch, useSelector } from 'react-redux'
|
4
|
import { logout } from '../Auth/userSlice'
|
5
|
import { RootState } from '../redux/store'
|
6
|
import {SourcesDto} from "../../swagger/data-contracts"
|
7
|
import axiosInstance from "../../api/api"
|
8
|
import ReactQuill from "react-quill"
|
9
|
import 'react-quill/dist/quill.snow.css'
|
10
|
import ContentLoading from "../Reusables/ContentLoading"
|
11
|
import {Link as RouterLink, useNavigate} from "react-router-dom"
|
12
|
import ArrowBackIosIcon from "@mui/icons-material/ArrowBackIos"
|
13
|
|
14
|
|
15
|
const apiError =
|
16
|
'Error while fetching data from the server, please try again later.'
|
17
|
|
18
|
const EditBibliography = () => {
|
19
|
const [sources, setSources] = useState<SourcesDto | undefined>(undefined)
|
20
|
const [isContentLoading, setIsContentLoading] = useState(true)
|
21
|
const [err, setErr] = useState<string | undefined>(undefined)
|
22
|
|
23
|
const navigate = useNavigate()
|
24
|
|
25
|
const updateContent = (updated: string) => {
|
26
|
if (sources) {
|
27
|
sources["sources"] = updated
|
28
|
}
|
29
|
}
|
30
|
|
31
|
const handleSubmit = () => {
|
32
|
postData()
|
33
|
}
|
34
|
|
35
|
const postData = async () => {
|
36
|
const {data, status} = await axiosInstance.post('/sources', sources)
|
37
|
if (status != 200) {
|
38
|
console.error("Sources page data submitting failed.")
|
39
|
}
|
40
|
}
|
41
|
|
42
|
const roles = useSelector(
|
43
|
(state: RootState) => state.user.roles
|
44
|
)
|
45
|
|
46
|
// Fetch the item from the api after mounting the component
|
47
|
useEffect(() => {
|
48
|
// Function to fetch the item from the api
|
49
|
const fetchItem = async () => {
|
50
|
try {
|
51
|
const { data, status } = await axiosInstance.get(
|
52
|
`/sources`
|
53
|
)
|
54
|
if (status !== 200) {
|
55
|
setErr(apiError)
|
56
|
return
|
57
|
}
|
58
|
|
59
|
setSources(data)
|
60
|
setIsContentLoading(false)
|
61
|
} catch (err: any) {
|
62
|
setErr(apiError)
|
63
|
}
|
64
|
}
|
65
|
|
66
|
fetchItem()
|
67
|
}, [])
|
68
|
|
69
|
return (
|
70
|
<Fragment>
|
71
|
<Button
|
72
|
startIcon={<ArrowBackIosIcon />}
|
73
|
variant="contained"
|
74
|
component={RouterLink}
|
75
|
to="/sources"
|
76
|
color="primary"
|
77
|
sx={{ mb: 2 }}
|
78
|
>
|
79
|
Return To Bibliography
|
80
|
</Button>
|
81
|
<Paper style={{ minHeight: '100vh' }} variant="outlined">
|
82
|
{isContentLoading && !err ? <ContentLoading /> : null}
|
83
|
{!isContentLoading && sources ? (
|
84
|
<form>
|
85
|
<Button type="button" onClick={handleSubmit}>Submit</Button>
|
86
|
<ReactQuill
|
87
|
theme='snow'
|
88
|
value={sources["sources"]}
|
89
|
onChange={updateContent}
|
90
|
style={{minHeight: '300px'}}
|
91
|
/>
|
92
|
</form>
|
93
|
) : null}
|
94
|
</Paper>
|
95
|
</Fragment>
|
96
|
)
|
97
|
}
|
98
|
|
99
|
export default EditBibliography
|