feat(torrents): 实现种子上传和列表展示功能

- 新增种子上传功能,包括用户认证和表单处理
- 实现种子列表展示,含搜索和筛选功能
- 调整布局和样式,优化用户体验
- 移除不必要的分类和筛选条件
- 重构部分代码以适应新功能

Change-Id: I86229123ba1e1a70e632042b2a9544e08c3c6876
diff --git a/src/layouts/MainLayout.jsx b/src/layouts/MainLayout.jsx
index fc9a1d0..d63246f 100644
--- a/src/layouts/MainLayout.jsx
+++ b/src/layouts/MainLayout.jsx
@@ -28,7 +28,7 @@
 };
 
 const MainLayout = ({ children }) => {
-  const { user, logout } = useAuth();
+  const { user, logout, hasRole } = useAuth();
   const location = useLocation();
 
   // 根据当前路径获取对应的菜单key
@@ -89,7 +89,7 @@
   ];
 
   // 如果用户是管理员,添加管理面板菜单项
-  if (user?.role === "admin") {
+  if (hasRole("admin")) {
     menuItems.push({
       key: "7",
       icon: <SettingOutlined />,