lrj
23 小时以前 9f8395fab13ca4b230a0f7d62636e209745c91d4
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
// pages/profile/profile.js
const app = getApp()
const { graphqlRequest, formatDate } = require('../../lib/utils')
 
Page({
  data: {
    userInfo: null,
    avatarText: '用', // 头像文字
    loading: false,
    
    // 统计数据
    stats: {
      totalRegistrations: 0,
      ongoingActivities: 0,
      completedActivities: 0,
      awards: 0
    },
    
    // 我的报名记录
    registrations: [],
    registrationLoading: false,
    
    // 角色相关
    userRoles: [],
    isJudge: false,
    isOrganizer: false,
    
    // 评委相关数据
    judgeStats: {
      pendingReviews: 0,
      completedReviews: 0,
      totalReviews: 0
    },
    
    // 主办方相关数据
    organizerStats: {
      activeActivities: 0,
      totalParticipants: 0,
      totalActivities: 0
    },
    
    // 通用菜单项
    menuItems: [
      {
        icon: '📝',
        iconName: 'ic-list',
        title: '我的报名',
        desc: '查看报名记录',
        path: '/pages/profile/registrations'
      },
      {
        icon: '🏆',
        iconName: 'ic-award',
        title: '我的成绩',
        desc: '查看活动成绩',
        path: '/pages/profile/achievements'
      },
      {
        icon: '⭐',
        iconName: 'ic-star',
        title: '我的收藏',
        desc: '收藏的活动',
        path: '/pages/profile/favorites'
      },
      {
        icon: '📊',
        iconName: 'ic-chart',
        title: '数据统计',
        desc: '个人数据分析',
        path: '/pages/profile/statistics'
      },
      {
        icon: '⚙️',
        iconName: 'ic-setting',
        title: '设置',
        desc: '个人设置',
        path: '/pages/profile/settings'
      }
    ],
    
    // 评委菜单
    judgeMenuItems: [
      {
        icon: '📋',
        iconName: 'ic-list',
        title: '待评审',
        desc: '待评审的作品',
        path: '/pages/judge/pending',
        badge: 0
      },
      {
        icon: '✅',
        iconName: 'ic-choose',
        title: '已评审',
        desc: '已完成评审',
        path: '/pages/judge/completed'
      },
      {
        icon: '📈',
        iconName: 'ic-chart',
        title: '评审统计',
        desc: '评审数据统计',
        path: '/pages/judge/statistics'
      }
    ],
    
    // 主办方菜单
    organizerMenuItems: [
      {
        icon: '🎯',
        iconName: 'ic-calendar',
        title: '活动管理',
        desc: '管理我的活动',
        path: '/pages/organizer/activities'
      },
      {
        icon: '👥',
        iconName: 'ic-user',
        title: '参赛管理',
        desc: '管理参赛者',
        path: '/pages/organizer/participants'
      },
      {
        icon: '📊',
        iconName: 'ic-chart',
        title: '数据分析',
        desc: '活动数据分析',
        path: '/pages/organizer/analytics'
      }
    ]
  },
 
  onLoad() {
    // 从全局数据获取用户信息并设置头像文字
    const globalUserInfo = app.globalData.userInfo
    if (globalUserInfo && globalUserInfo.name) {
      this.setData({
        avatarText: globalUserInfo.name.substring(0, 1)
      })
    }
    
    this.loadUserInfo()
    this.loadUserStats()
    this.loadRecentRegistrations()
  },
 
  onShow() {
    // 页面显示时刷新数据
    this.loadUserInfo()
    this.loadUserStats()
    this.loadRecentRegistrations()
    // 初始化自定义 tabbar
    if (typeof this.getTabBar === 'function' && this.getTabBar()) {
      this.getTabBar().init()
    }
  },
 
  onPullDownRefresh() {
    this.refreshData()
  },
 
  // 刷新数据
  async refreshData() {
    try {
      await Promise.all([
        this.loadUserInfo(),
        this.loadUserStats(),
        this.loadRecentRegistrations()
      ])
    } finally {
      wx.stopPullDownRefresh()
    }
  },
 
  // 加载用户信息
  async loadUserInfo() {
    try {
      this.setData({ loading: true })
      
      const query = `
        query GetUserProfile {
          userProfile {
            id
            name
            avatar
            phone
            email
            school
            major
            grade
            roles
            createdAt
          }
        }
      `
      
      const result = await graphqlRequest(query)
      
      if (result && result.userProfile) {
        const userInfo = result.userProfile
        
        // 解析用户角色
        const userRoles = userInfo.roles || []
        const isJudge = userRoles.includes('JUDGE')
        const isOrganizer = userRoles.includes('ORGANIZER')
        
        // 处理头像文字
        const avatarText = (userInfo.name || '用户').substring(0, 1)
        
        this.setData({
          userInfo,
          avatarText,
          userRoles,
          isJudge,
          isOrganizer
        })
        
        // 更新全局用户信息
        app.globalData.userInfo = userInfo
        
        // 根据角色加载相应数据
        if (isJudge) {
          this.loadJudgeStats()
        }
        
        if (isOrganizer) {
          this.loadOrganizerStats()
        }
      }
    } catch (error) {
      console.error('加载用户信息失败:', error)
      wx.showToast({
        title: '加载失败',
        icon: 'error'
      })
    } finally {
      this.setData({ loading: false })
    }
  },
 
  // 加载用户统计数据
  async loadUserStats() {
    try {
      const query = `
        query GetUserStats {
          userStats {
            totalRegistrations
            ongoingActivities
            completedActivities
            awards
          }
        }
      `
      
      const result = await graphqlRequest(query)
      
      if (result && result.userStats) {
        this.setData({
          stats: result.userStats
        })
      }
    } catch (error) {
      console.error('加载统计数据失败:', error)
    }
  },
 
  // 加载最近报名记录
  async loadRecentRegistrations() {
    try {
      this.setData({ registrationLoading: true })
      
      const query = `
        query GetRecentRegistrations {
          myRegistrations(limit: 5) {
            id
            activity {
              id
              title
              coverImage {
                id
                name
                path
                fullUrl
                fullThumbUrl
                mediaType
              }
              startTime
              status
            }
            status
            registrationTime
          }
        }
      `
      
      const result = await graphqlRequest(query)
      
      if (result && result.myRegistrations) {
        // 为每个活动添加标题文字
        const registrations = result.myRegistrations.map(registration => ({
          ...registration,
          activity: {
            ...registration.activity,
            titleText: (registration.activity.title || '活动').substring(0, 2)
          }
        }))
        
        this.setData({
          registrations
        })
      }
    } catch (error) {
      console.error('加载报名记录失败:', error)
    } finally {
      this.setData({ registrationLoading: false })
    }
  },
 
  // 加载评委统计数据
  async loadJudgeStats() {
    try {
      const query = `
        query GetJudgeStats {
          judgeStats {
            pendingReviews
            completedReviews
            totalReviews
          }
        }
      `
      
      const result = await graphqlRequest(query)
      
      if (result && result.judgeStats) {
        const judgeStats = result.judgeStats
        
        this.setData({
          judgeStats,
          'judgeMenuItems[0].badge': judgeStats.pendingReviews
        })
      }
    } catch (error) {
      console.error('加载评委统计失败:', error)
    }
  },
 
  // 加载主办方统计数据
  async loadOrganizerStats() {
    try {
      const query = `
        query GetOrganizerStats {
          organizerStats {
            activeActivities
            totalParticipants
            totalActivities
          }
        }
      `
      
      const result = await graphqlRequest(query)
      
      if (result && result.organizerStats) {
        this.setData({
          organizerStats: result.organizerStats
        })
      }
    } catch (error) {
      console.error('加载主办方统计失败:', error)
    }
  },
 
  // 编辑个人信息
  onEditProfile() {
    wx.navigateTo({
      url: '/pages/profile/edit'
    })
  },
 
  // 菜单项点击
  onMenuItemTap(e) {
    const { path } = e.currentTarget.dataset
    
    wx.navigateTo({
      url: path
    })
  },
 
  // 查看报名详情
  onRegistrationTap(e) {
    const { id } = e.currentTarget.dataset
    
    wx.navigateTo({
      url: `/pages/profile/registration-detail?id=${id}`
    })
  },
 
  // 查看活动详情
  onActivityTap(e) {
    const { id } = e.currentTarget.dataset
    
    wx.navigateTo({
      url: `/pages/activity/detail?id=${id}`
    })
  },
 
  // 查看更多报名记录
  onViewMoreRegistrations() {
    wx.navigateTo({
      url: '/pages/profile/registrations'
    })
  },
 
  // 获取状态文本
  getStatusText(status) {
    const statusMap = {
      'PENDING': '待审核',
      'APPROVED': '已通过',
      'REJECTED': '已拒绝',
      'CANCELLED': '已取消'
    }
    return statusMap[status] || status
  },
 
  // 获取状态样式类
  getStatusClass(status) {
    const classMap = {
      'PENDING': 'status-pending',
      'APPROVED': 'status-approved',
      'REJECTED': 'status-rejected',
      'CANCELLED': 'status-cancelled'
    }
    return classMap[status] || ''
  },
 
  // 获取活动状态文本
  getActivityStatusText(status) {
    const statusMap = {
      'UPCOMING': '即将开始',
      'ONGOING': '进行中',
      'COMPLETED': '已结束',
      'CANCELLED': '已取消'
    }
    return statusMap[status] || status
  },
 
  // 格式化日期
  formatDate(dateString) {
    return formatDate(dateString, 'MM-DD HH:mm')
  },
 
  // 退出登录
  onLogout() {
    wx.showModal({
      title: '确认退出',
      content: '确定要退出登录吗?',
      success: (res) => {
        if (res.confirm) {
          this.logout()
        }
      }
    })
  },
 
  // 执行退出登录
  async logout() {
    try {
      wx.showLoading({ title: '退出中...' })
      
      // 清除本地存储
      wx.removeStorageSync('token')
      wx.removeStorageSync('userInfo')
      
      // 清除全局数据
      app.globalData.token = ''
      app.globalData.userInfo = null
      app.globalData.isLoggedIn = false
      
      // 跳转到登录页
      wx.reLaunch({
        url: '/pages/login/login'
      })
      
      wx.showToast({
        title: '已退出登录',
        icon: 'success'
      })
    } catch (error) {
      console.error('退出登录失败:', error)
      wx.showToast({
        title: '退出失败',
        icon: 'error'
      })
    } finally {
      wx.hideLoading()
    }
  },
 
  // 分享页面
  onShareAppMessage() {
    return {
      title: '蓉易创 - 我的个人中心',
      path: '/pages/index/index'
    }
  }
})