MemberPage.tsx 6.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142
  1. import debug from 'debug';
  2. const rpcLogger = debug('frontend:api:rpc');
  3. import React from 'react';
  4. import { UserIcon, PencilIcon } from '@heroicons/react/24/outline';
  5. import { useParams, useNavigate } from 'react-router-dom';
  6. import { useQuery } from '@tanstack/react-query';
  7. import type { InferResponseType } from 'hono/client';
  8. import { userClient } from '@/client/api';
  9. import { useAuth, User } from '@/client/home/hooks/AuthProvider';
  10. const MemberPage: React.FC = () => {
  11. const navigate = useNavigate();
  12. const { user } = useAuth();
  13. if (!user) {
  14. return (
  15. <div className="text-center py-12">
  16. <h2 className="text-2xl font-bold text-gray-900 mb-4">用户不存在</h2>
  17. <button
  18. onClick={() => navigate('/')}
  19. className="bg-blue-600 text-white px-4 py-2 rounded-md hover:bg-blue-700 focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-blue-500"
  20. >
  21. 返回首页
  22. </button>
  23. </div>
  24. );
  25. }
  26. return (
  27. <div className="min-h-screen bg-gray-50">
  28. <div className="container mx-auto px-4 py-8 max-w-4xl">
  29. {/* 用户资料卡片 */}
  30. <div className="bg-white rounded-lg shadow-sm p-6 mb-8">
  31. <div className="flex flex-col items-center">
  32. <div className="w-24 h-24 rounded-full bg-gray-200 flex items-center justify-center mb-4">
  33. {user.avatar ? (
  34. <img src={user.avatar} alt={user.nickname || user.username} className="h-full w-full object-cover rounded-full" />
  35. ) : (
  36. <UserIcon className="h-12 w-12 text-gray-500" />
  37. )}
  38. </div>
  39. <h1 className="text-2xl font-bold text-gray-900 mb-1">{user.nickname || user.username}</h1>
  40. <div className="flex space-x-8 my-4">
  41. <div className="text-center">
  42. <p className="text-2xl font-semibold text-gray-900">0</p>
  43. <p className="text-sm text-gray-500">内容</p>
  44. </div>
  45. <div className="text-center">
  46. <p className="text-2xl font-semibold text-gray-900">0</p>
  47. <p className="text-sm text-gray-500">关注</p>
  48. </div>
  49. <div className="text-center">
  50. <p className="text-2xl font-semibold text-gray-900">0</p>
  51. <p className="text-sm text-gray-500">粉丝</p>
  52. </div>
  53. </div>
  54. <button
  55. onClick={() => navigate('/profile/edit')}
  56. className="bg-blue-600 text-white px-4 py-2 rounded-md hover:bg-blue-700 focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-blue-500 flex items-center"
  57. >
  58. <PencilIcon className="w-4 h-4 mr-2" />
  59. 编辑资料
  60. </button>
  61. {(user as any).bio && (
  62. <p className="mt-4 text-center text-gray-600 max-w-lg">
  63. {(user as any).bio}
  64. </p>
  65. )}
  66. <div className="flex items-center mt-4 space-x-4">
  67. {(user as any).location && (
  68. <div className="flex items-center text-gray-600">
  69. <svg xmlns="http://www.w3.org/2000/svg" className="h-4 w-4 mr-1" fill="none" viewBox="0 0 24 24" stroke="currentColor">
  70. <path strokeLinecap="round" strokeLinejoin="round" strokeWidth={2} d="M17.657 16.657L13.414 20.9a1.998 1.998 0 01-2.827 0l-4.244-4.243a8 8 0 1111.314 0z" />
  71. <path strokeLinecap="round" strokeLinejoin="round" strokeWidth={2} d="M15 11a3 3 0 11-6 0 3 3 0 016 0z" />
  72. </svg>
  73. <span className="text-sm">{(user as any).location}</span>
  74. </div>
  75. )}
  76. {(user as any).website && (
  77. <a
  78. href={(user as any).website}
  79. target="_blank"
  80. rel="noopener noreferrer"
  81. className="flex items-center text-blue-600 hover:text-blue-800"
  82. >
  83. <svg xmlns="http://www.w3.org/2000/svg" className="h-4 w-4 mr-1" fill="none" viewBox="0 0 24 24" stroke="currentColor">
  84. <path strokeLinecap="round" strokeLinejoin="round" strokeWidth={2} d="M10 6H6a2 2 0 00-2 2v10a2 2 0 002 2h10a2 2 0 002-2v-4M14 4h6m0 0v6m0-6v6m0 0v6m0-6h-6" />
  85. </svg>
  86. <span className="text-sm truncate max-w-[150px]">{(user as any).website}</span>
  87. </a>
  88. )}
  89. </div>
  90. </div>
  91. </div>
  92. {/* 用户内容区域 */}
  93. <div className="bg-white rounded-lg shadow-sm p-6">
  94. <h2 className="text-xl font-semibold mb-6">个人资料</h2>
  95. <div className="space-y-4">
  96. <div className="border-b border-gray-100 pb-4">
  97. <h3 className="text-sm font-medium text-gray-500 mb-1">用户名</h3>
  98. <p className="text-gray-900">{user.username}</p>
  99. </div>
  100. <div className="border-b border-gray-100 pb-4">
  101. <h3 className="text-sm font-medium text-gray-500 mb-1">电子邮箱</h3>
  102. <p className="text-gray-900">{user.email || '未设置'}</p>
  103. </div>
  104. <div className="border-b border-gray-100 pb-4">
  105. <h3 className="text-sm font-medium text-gray-500 mb-1">注册时间</h3>
  106. <p className="text-gray-900">{user.createdAt ? new Date(user.createdAt).toLocaleDateString() : '未知'}</p>
  107. </div>
  108. <div className="border-b border-gray-100 pb-4">
  109. <h3 className="text-sm font-medium text-gray-500 mb-1">最后登录</h3>
  110. <p className="text-gray-900">{user.updatedAt ? new Date(user.updatedAt).toLocaleString() : '从未登录'}</p>
  111. </div>
  112. </div>
  113. <div className="mt-8">
  114. <button
  115. onClick={() => navigate('/profile/security')}
  116. className="w-full py-2 px-4 border border-gray-300 rounded-md shadow-sm text-sm font-medium text-gray-700 bg-white hover:bg-gray-50 focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-blue-500"
  117. >
  118. 安全设置
  119. </button>
  120. </div>
  121. </div>
  122. </div>
  123. </div>
  124. );
  125. };
  126. export default MemberPage;