完成基本网站布局

This commit is contained in:
宇阳
2024-08-07 19:35:28 +08:00
parent a7167f9022
commit bec8545d1a
4 changed files with 323 additions and 1 deletions

View File

@@ -200,6 +200,18 @@ const Sidebar = ({ sidebarOpen, setSidebarOpen }: SidebarProps) => {
</NavLink>
</li>
<li>
<NavLink
to="/web"
className={({ isActive }) =>
'group relative flex items-center gap-2.5 rounded-md px-4 font-medium text-bodydark2 duration-300 ease-in-out hover:text-white ' +
(isActive && '!text-white')
}
>
</NavLink>
</li>
</ul>
</div>
{/* <!-- Dropdown Menu End --> */}

159
src/pages/Web/index.scss Normal file
View File

@@ -0,0 +1,159 @@
.list {
display: flex;
flex-wrap: wrap;
justify-content: center;
min-height: 100px;
margin-top: 40px;
.item {
overflow: hidden;
position: relative;
display: flex;
flex-direction: column;
align-items: center;
width: 200px;
height: 250px;
padding: 0px 20px;
margin-right: 50px;
margin-bottom: 20px;
border: 1px solid #eee;
border-radius: 5px;
background-color: #fff;
transition: box-shadow 0.3s;
&:hover {
box-shadow: 0px 2px 15px -3px rgba(121, 122, 243, 0.1);
}
&:hover .name {
color: #727cf5;
}
&::after {
content: "";
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 80px;
background-color: #727cf5;
border-top-left-radius: 5px;
border-top-right-radius: 5px;
border-bottom-left-radius: 50%;
border-bottom-right-radius: 50%;
}
.avatar {
position: relative;
display: flex;
justify-content: center;
align-items: center;
width: 90px;
height: 90px;
margin-top: 30px;
border-radius: 50%;
background-color: #fff;
z-index: 2;
img {
width: 93%;
height: 93%;
border-radius: 50%;
transition: transform 0.3s;
&:hover {
transform: scale(1.1);
}
}
}
.name {
margin: 10px 0;
font-weight: 900;
transition: color 0.3s;
cursor: pointer;
}
.description {
font-size: 13px;
color: #666;
line-height: 20px;
display: -webkit-box !important;
overflow: hidden;
word-break: break-all;
text-overflow: ellipsis;
-webkit-box-orient: vertical;
-webkit-line-clamp: 2;
}
.type {
position: absolute;
bottom: 12px;
padding: 2px 15px;
margin: 10px 0;
border-radius: 10px;
color: #fff;
background-color: #727cf5;
transition: bottom 0.3s;
}
&:hover .type {
bottom: -40px;
}
.operate {
position: absolute;
bottom: -40px;
display: flex;
background-color: #fff;
transition: bottom 0.3s;
width: 100%;
justify-content: center;
padding: 10px 0;
div {
padding: 3px 10px;
margin: 0 5px;
color: #fff;
font-size: 14px;
border-radius: 5px;
cursor: pointer;
&:nth-child(1) {
background-color: #49b984;
}
&:nth-child(2) {
background-color: #f16c6d;
}
}
}
&:hover .operate {
bottom: 35px;
}
.headFor {
position: absolute;
bottom: -30px;
display: flex;
justify-content: center;
align-items: center;
width: 100%;
height: 30px;
color: #fff;
background-color: #727cf5;
transition: bottom 0.3s;
border-bottom-left-radius: 5px;
border-bottom-right-radius: 5px;
cursor: pointer;
}
&:hover .headFor {
bottom: 0;
}
}
}

View File

@@ -0,0 +1,151 @@
import React, { useState, useEffect, useRef } from 'react';
import { Tabs, Input, Button, Form, notification, Row, Spin, Empty, Card } from 'antd';
import { SearchOutlined } from '@ant-design/icons';
import { getLinkListAPI, addLinkDataAPI, editLinkDataAPI, delLinkDataAPI } from '@/api/Web';
import { Web } from '@/types/web'
import Title from '@/components/Title';
import "./index.scss"
const LinkManager: React.FC = () => {
const [loading, setLoading] = useState(false);
const [tab, setTab] = useState<string>('list');
const [list, setList] = useState<Web[]>([]);
const [listTemp, setListTemp] = useState<Web[]>([]);
const [search, setSearch] = useState<string>('');
const [link, setLink] = useState<Web>({
title: '',
description: '',
email: '',
image: '',
url: '',
type: ''
});
const formRef = useRef<any>(null);
const getLinkList = async () => {
setLoading(true);
const { data } = await getLinkListAPI();
setList(data as Web[]);
setListTemp(data as Web[]);
setLoading(false);
};
useEffect(() => {
getLinkList();
}, []);
useEffect(() => {
setListTemp(list.filter(item => item.title.includes(search) || item.description.includes(search)));
}, [search, list]);
const toHref = (url: string) => {
window.open(url, '_blank');
};
const deleteLink = async (id: number) => {
await delLinkDataAPI(id);
notification.success({ message: '删除网站成功' });
getLinkList();
};
const editLink = (item: Web) => {
setTab('operate');
setLink(item);
};
const submit = async () => {
formRef.current.validateFields().then(async (values: Web) => {
if (link.id) {
await editLinkDataAPI({ ...link, ...values });
notification.success({ message: '编辑网站成功' });
} else {
await addLinkDataAPI(values);
notification.success({ message: '新增网站成功' });
}
formRef.current.resetFields();
getLinkList();
setTab('list');
});
};
return (
<>
<Title value="网站管理" />
<Card className='mt-2'>
<Tabs activeKey={tab} onChange={setTab} tabPosition="left">
<Tabs.TabPane tab="网站列表" key="list">
<div className="w-[300px] mx-auto">
<Input
size="large"
placeholder="请输入网站名称或描述信息进行查询"
prefix={<SearchOutlined />}
value={search}
onChange={e => setSearch(e.target.value)}
/>
</div>
<Spin spinning={loading}>
<div className="list">
{listTemp.length > 0 ? (
listTemp.map(item => (
<div key={item.id} className="item">
<div className="avatar">
<img src={item.image} alt="" className="avatar-img" />
</div>
<div className="name">{item.title}</div>
<div className="description">{item.description}</div>
<div className="type">{item.type}</div>
<div className="operate">
<div onClick={() => editLink(item)} className="edit"></div>
<div onClick={() => deleteLink(item.id!)} className="delete"></div>
</div>
<div onClick={() => toHref(item.url)} className="headFor"> &rarr;</div>
</div>
))
) : (
<Empty description="暂无数据" />
)}
</div>
</Spin>
</Tabs.TabPane>
<Tabs.TabPane tab={link.id ? '编辑网站' : '新增网站'} key="operate">
<Row className="form-container">
<h2 className="form-title">{link.id ? '编辑网站' : '新增网站'}</h2>
<Form ref={formRef} layout="vertical" initialValues={link} onFinish={submit}>
<Form.Item label="标题" name="title" rules={[{ required: true, message: '网站标题不能为空' }, { min: 2, max: 30, message: '网站标题限制在2 ~ 30个字符' }]}>
<Input placeholder="Thrive" />
</Form.Item>
<Form.Item label="描述" name="description" rules={[{ required: true, message: '网站描述不能为空' }, { min: 2, max: 100, message: '网站描述限制在2 ~ 100个字符' }]}>
<Input placeholder="记录前端、Python、Java点点滴滴" />
</Form.Item>
<Form.Item label="邮箱" name="email" rules={[{ required: true, message: '网站邮箱不能为空' }]}>
<Input placeholder="3311118881@qq.com" />
</Form.Item>
<Form.Item label="头像" name="image" rules={[{ required: true, message: '网站图标不能为空' }]}>
<Input placeholder="https://liuyuyang.net/logo.png" />
</Form.Item>
<Form.Item label="链接" name="url" rules={[{ required: true, message: '网站链接不能为空' }]}>
<Input placeholder="https://liuyuyang.net/" />
</Form.Item>
<Form.Item label="类型" name="type" rules={[{ required: true, message: '网站类型不能为空' }, { min: 2, max: 10, message: '网站类型限制在2 ~ 10个字符' }]}>
<Input placeholder="技术类" />
</Form.Item>
<Form.Item>
<Button type="primary" htmlType="submit">{link.id ? '编辑网站' : '新增网站'}</Button>
</Form.Item>
</Form>
</Row>
</Tabs.TabPane>
</Tabs>
</Card>
</>
);
};
export default LinkManager;

2
src/types/web.d.ts vendored
View File

@@ -1,4 +1,4 @@
export interface Link {
export interface Web {
id?: number;
title: string;
description: string;