integrate LinkedItems into /sight pages

This commit is contained in:
maxim
2025-03-19 18:05:29 +03:00
parent 451e1da308
commit faac402aa6
4 changed files with 72 additions and 173 deletions

View File

@ -2,6 +2,9 @@ import {Autocomplete, Box, TextField} from '@mui/material'
import {Edit, useAutocomplete} from '@refinedev/mui'
import {useForm} from '@refinedev/react-hook-form'
import {Controller} from 'react-hook-form'
import {useParams} from 'react-router'
import {LinkedItems} from '../../components/LinkedItems'
import {ArticleItem, articleFields} from './types'
export const SightEdit = () => {
const {
@ -11,6 +14,7 @@ export const SightEdit = () => {
formState: {errors},
} = useForm({})
const {id: sightId} = useParams<{id: string}>()
const {autocompleteProps: cityAutocompleteProps} = useAutocomplete({
resource: 'city',
})
@ -83,6 +87,7 @@ export const SightEdit = () => {
)}
/>
</Box>
{sightId && <LinkedItems<ArticleItem> type="edit" parentId={sightId} parentResource="sight" childResource="article" fields={articleFields} title="статьи" />}
</Edit>
)
}

View File

@ -1,101 +1,14 @@
import {Stack, Typography, Box, Grid2 as Grid, Button, MenuItem, Select, FormControl, InputLabel, TextField} from '@mui/material'
import {Stack, Typography} from '@mui/material'
import {useShow} from '@refinedev/core'
import {Show, TextFieldComponent} from '@refinedev/mui'
import {useEffect, useState} from 'react'
import axios from 'axios'
import {BACKEND_URL} from '../../lib/constants'
type ArticleItem = {
id: number
heading: string
body: string
}
import {LinkedItems} from '../../components/LinkedItems'
import {ArticleItem, articleFields} from './types'
export const SightShow = () => {
const {query} = useShow({})
const {data, isLoading} = query
const record = data?.data
const [articles, setArticles] = useState<ArticleItem[]>([])
const [linkedArticles, setLinkedArticles] = useState<ArticleItem[]>([])
const [selectedArticleId, setSelectedArticleId] = useState<number | ''>('')
const [pageNum, setPageNum] = useState<number>(1)
const [articlesLoading, setArticlesLoading] = useState<boolean>(true)
useEffect(() => {
if (record?.id) {
axios
.get(`${BACKEND_URL}/sight/${record.id}/article`)
.then((response) => {
setLinkedArticles(response?.data || [])
})
.catch(() => {
setLinkedArticles([])
})
}
}, [record?.id])
useEffect(() => {
axios
.get(`${BACKEND_URL}/article/`) // without "/" throws CORS error
.then((response) => {
setArticles(response?.data || [])
setArticlesLoading(false)
})
.catch(() => {
setArticles([])
setArticlesLoading(false)
})
}, [])
const availableArticles = articles.filter((article) => !linkedArticles.some((linked) => linked.id === article.id))
const linkArticle = () => {
if (selectedArticleId) {
const requestData = {
article_id: selectedArticleId,
page_num: pageNum,
}
axios
.post(`${BACKEND_URL}/sight/${record?.id}/article`, requestData, {
headers: {
accept: 'application/json',
'Content-Type': 'application/json',
},
})
.then(() => {
axios
.get(`${BACKEND_URL}/sight/${record?.id}/article`)
.then((response) => {
setLinkedArticles(response?.data || [])
setPageNum(pageNum + 1)
})
.catch(() => {
setLinkedArticles([])
})
})
.catch((error) => {
console.error('Error linking article:', error)
})
}
}
const deleteArticle = (articleId: number) => {
axios
.delete(`${BACKEND_URL}/sight/${record?.id}/article`, {
data: {article_id: articleId},
})
.then(() => {
setLinkedArticles((prev) => prev.filter((item) => item.id !== articleId))
})
.catch((error) => {
console.error('Error unlinking article:', error)
})
}
const fields = [
// {label: 'ID', data: 'id'},
{label: 'Название', data: 'name'},
@ -117,79 +30,7 @@ export const SightShow = () => {
</Stack>
))}
<Stack gap={2}>
<Typography variant="body1" fontWeight="bold">
Привязанные статьи
</Typography>
<Grid container gap={2}>
{articlesLoading ? (
<Typography>Загрузка статей...</Typography>
) : linkedArticles.length > 0 ? (
linkedArticles.map((article) => (
<Box
key={article.id}
sx={{
marginBottom: '2px',
width: '100%',
padding: '14px',
borderRadius: 2,
border: (theme) => `2px solid ${theme.palette.divider}`,
}}
>
<Stack gap={1}>
<Typography variant="h5">
<strong>{article.heading}</strong>
</Typography>
<Typography
className="limited-text"
sx={{
whiteSpace: 'pre-wrap',
lineClamp: 3,
}}
>
{article.body}
</Typography>
<Button variant="outlined" color="error" onClick={() => deleteArticle(article.id)} sx={{mt: 1.5}}>
Отвязать статью
</Button>
</Stack>
</Box>
))
) : (
<Typography>Статьи не найдены</Typography>
)}
</Grid>
<Stack gap={2}>
<Typography variant="body1" fontWeight="bold">
Привязать статью
</Typography>
<Stack gap={2.5}>
<FormControl fullWidth>
<InputLabel>Статья</InputLabel>
<Select value={selectedArticleId} onChange={(e) => setSelectedArticleId(Number(e.target.value))} label="Статья" fullWidth>
{availableArticles.map((article) => (
<MenuItem key={article.id} value={article.id}>
{article.heading}
</MenuItem>
))}
</Select>
</FormControl>
<FormControl fullWidth>
<TextField type="number" label="Номер страницы" name="page_num" value={pageNum} onChange={(e) => setPageNum(Number(e.target.value))} fullWidth InputLabelProps={{shrink: true}} />
</FormControl>
<Button variant="contained" onClick={linkArticle} disabled={!selectedArticleId}>
Привязать
</Button>
</Stack>
</Stack>
</Stack>
{record?.id && <LinkedItems<ArticleItem> type="show" parentId={record.id} parentResource="sight" childResource="article" fields={articleFields} title="статьи" />}
</Stack>
</Show>
)

17
src/pages/sight/types.ts Normal file
View File

@ -0,0 +1,17 @@
export type ArticleItem = {
id: number
heading: string
body: string
[key: string]: string | number
}
export type FieldType<T> = {
label: string
data: keyof T
render?: (value: any) => React.ReactNode
}
export const articleFields: Array<FieldType<ArticleItem>> = [
{label: 'Заголовок', data: 'heading'},
{label: 'Текст', data: 'body'},
]