add delete
option for media
to /article/show
page
This commit is contained in:
parent
c75853ce88
commit
96585fe618
@ -1,4 +1,4 @@
|
|||||||
import {Stack, Typography, Box, Grid2 as Grid} from '@mui/material'
|
import {Stack, Typography, Box, Grid2 as Grid, Button} from '@mui/material'
|
||||||
import {useShow} from '@refinedev/core'
|
import {useShow} from '@refinedev/core'
|
||||||
import {Show, TextFieldComponent as TextField} from '@refinedev/mui'
|
import {Show, TextFieldComponent as TextField} from '@refinedev/mui'
|
||||||
|
|
||||||
@ -30,6 +30,19 @@ export const ArticleShow = () => {
|
|||||||
}
|
}
|
||||||
}, [record?.id])
|
}, [record?.id])
|
||||||
|
|
||||||
|
const deleteMedia = (mediaId: string) => {
|
||||||
|
axios
|
||||||
|
.delete(`${BACKEND_URL}/article/${record?.id}/media`, {
|
||||||
|
data: {media_id: mediaId},
|
||||||
|
})
|
||||||
|
.then(() => {
|
||||||
|
setMedia((prevMedia) => prevMedia.filter((item) => item.id !== mediaId))
|
||||||
|
})
|
||||||
|
.catch((error) => {
|
||||||
|
console.error('Error deleting media:', error)
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
const fields = [
|
const fields = [
|
||||||
{label: 'ID', data: 'id'},
|
{label: 'ID', data: 'id'},
|
||||||
{label: 'Heading', data: 'heading'},
|
{label: 'Heading', data: 'heading'},
|
||||||
@ -93,6 +106,10 @@ export const ArticleShow = () => {
|
|||||||
<strong>{label}:</strong> {mediaItem?.[data]}
|
<strong>{label}:</strong> {mediaItem?.[data]}
|
||||||
</Typography>
|
</Typography>
|
||||||
))}
|
))}
|
||||||
|
|
||||||
|
<Button variant="outlined" color="error" onClick={() => deleteMedia(mediaItem?.id)} sx={{mt: 2}}>
|
||||||
|
Delete
|
||||||
|
</Button>
|
||||||
</Stack>
|
</Stack>
|
||||||
</Box>
|
</Box>
|
||||||
))
|
))
|
||||||
|
Loading…
Reference in New Issue
Block a user