mirror of https://github.com/sunface/rust-course
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
80 lines
3.0 KiB
80 lines
3.0 KiB
import {Text, Box, Heading, Image, Center, Button, Flex, VStack, Divider, useToast } from "@chakra-ui/react"
|
|
import Card from "components/card"
|
|
import Nav from "layouts/nav/nav"
|
|
import PageContainer from "layouts/page-container"
|
|
import Sidebar from "layouts/sidebar/sidebar"
|
|
import React, { useEffect, useState } from "react"
|
|
import {adminLinks, followLinks} from "src/data/links"
|
|
import { requestApi } from "utils/axios/request"
|
|
import TagCard from "components/tags/tag-card"
|
|
import { useRouter } from "next/router"
|
|
import Link from "next/link"
|
|
import { ReserveUrls } from "src/data/reserve-urls"
|
|
import { Tag } from "src/types/tag"
|
|
import { route } from "next/dist/next-server/server/router"
|
|
import PageContainer1 from "layouts/page-container1"
|
|
import Empty from "components/empty"
|
|
|
|
|
|
const FollowersPage = () => {
|
|
const [tags, setTags] = useState([])
|
|
const router = useRouter()
|
|
const toast = useToast()
|
|
const getTags = () => {
|
|
requestApi.get(`/tag/all`).then((res) => setTags(res.data)).catch(_ => setTags([]))
|
|
}
|
|
|
|
useEffect(() => {
|
|
getTags()
|
|
}, [])
|
|
|
|
const editTag = (tag: Tag) => {
|
|
router.push(`${ReserveUrls.Admin}/tag/${tag.name}`)
|
|
}
|
|
|
|
const deleteTag= async (id) => {
|
|
await requestApi.delete(`/tag/${id}`)
|
|
getTags()
|
|
toast({
|
|
description: "删除成功",
|
|
status: "success",
|
|
duration: 2000,
|
|
isClosable: true,
|
|
})
|
|
}
|
|
|
|
return (
|
|
<>
|
|
<PageContainer1>
|
|
<Box display="flex">
|
|
<Sidebar routes={followLinks} title="我的关注" />
|
|
<Card ml="4" p="6" width="100%">
|
|
<Flex alignItems="center" justify="space-between">
|
|
<Heading size="md">标签列表({tags.length})</Heading>
|
|
<Button colorScheme="teal" size="sm" _focus={null}><Link href={`${ReserveUrls.Admin}/tag/new`}>新建标签</Link></Button>
|
|
</Flex>
|
|
{
|
|
tags.length === 0 ?
|
|
<Empty />
|
|
:
|
|
<>
|
|
<VStack mt="4">
|
|
{tags.map(tag =>
|
|
<Box width="100%" key={tag.id}>
|
|
<TagCard tag={tag} showActions={true} mt="4" onEdit={() => editTag(tag)} onDelete={() => deleteTag(tag.id)} />
|
|
<Divider mt="5" />
|
|
</Box>
|
|
)}
|
|
</VStack>
|
|
<Center><Text layerStyle="textSecondary" fontSize="sm" mt="5">没有更多标签了</Text></Center>
|
|
</>
|
|
}
|
|
</Card>
|
|
</Box>
|
|
</PageContainer1>
|
|
</>
|
|
)
|
|
}
|
|
export default FollowersPage
|
|
|