lrj
2 天以前 93eb6b470773bc49ea6e1a9d4cbd914eb95d525b
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
import { 
  mockActivityPlayerDetail, 
  mockRatingScheme, 
  mockCurrentJudgeInfo, 
  mockJudgeRatings, 
  mockCurrentJudgeRating, 
  mockAverageScore,
  createMockResponse 
} from './mockData.js'
 
import { API_CONFIG, graphqlRequest } from '@/config/api'
 
// 模拟数据开关 - 设置为true时使用模拟数据
const USE_MOCK_DATA = false
 
// GraphQL查询语句
const GET_ACTIVITY_PLAYERS_QUERY = `
  query GetActivityPlayers($activityId: ID!, $page: Int!, $size: Int!, $name: String) {
    activityPlayers(activityId: $activityId, page: $page, size: $size, name: $name) {
      content {
        id
        playerId
        activityId
        signupTime
        state
        stateName
        player {
          id
          name
          phone
          regionId
          region {
            id
            name
          }
        }
      }
      totalElements
      page
      size
    }
  }
`
 
const GET_ACTIVITY_PLAYER_QUERY = `
  query GetActivityPlayer($id: ID!) {
    activityPlayer(id: $id) {
      id
      playerId
      activityId
      signupTime
      state
      stateName
      player {
        id
        name
        phone
        regionId
        region {
          id
          name
        }
      }
      activity {
        id
        name
        description
      }
      attachments {
        id
        fileName
        fileUrl
        fileSize
        uploadTime
      }
    }
  }
`
 
const SAVE_ACTIVITY_PLAYER_MUTATION = `
  mutation SaveActivityPlayer($input: ActivityPlayerInput!) {
    saveActivityPlayer(input: $input) {
      id
      playerId
      activityId
      signupTime
      state
      stateName
    }
  }
`
 
const DELETE_ACTIVITY_PLAYER_MUTATION = `
  mutation DeleteActivityPlayer($id: ID!) {
    deleteActivityPlayer(id: $id)
  }
`
 
// API函数
export const getActivityPlayers = async (activityId, page = 0, size = 10, name = '') => {
  if (USE_MOCK_DATA) {
    return mockActivityPlayers
  }
  
  try {
    const data = await graphqlRequest(GET_ACTIVITY_PLAYERS_QUERY, { activityId, page, size, name })
    return data.activityPlayers
  } catch (error) {
    throw new Error(error.message || '获取比赛报名列表失败')
  }
}
 
export const getActivityPlayer = async (id) => {
  if (USE_MOCK_DATA) {
    return mockActivityPlayerDetail
  }
  
  try {
    const data = await graphqlRequest(GET_ACTIVITY_PLAYER_QUERY, { id })
    return data.activityPlayer
  } catch (error) {
    throw new Error(error.message || '获取比赛报名详情失败')
  }
}
 
export const saveActivityPlayer = async (activityPlayerData) => {
  if (USE_MOCK_DATA) {
    return { ...activityPlayerData, id: Date.now().toString() }
  }
  
  try {
    const data = await graphqlRequest(SAVE_ACTIVITY_PLAYER_MUTATION, { input: activityPlayerData })
    return data.saveActivityPlayer
  } catch (error) {
    throw new Error(error.message || '保存比赛报名失败')
  }
}
 
export const deleteActivityPlayer = async (id) => {
  if (USE_MOCK_DATA) {
    return true
  }
  
  try {
    const data = await graphqlRequest(DELETE_ACTIVITY_PLAYER_MUTATION, { id })
    return data.deleteActivityPlayer
  } catch (error) {
    throw new Error(error.message || '删除比赛报名失败')
  }
}
 
const GET_ACTIVITY_PLAYER_DETAIL = `
  query GetActivityPlayerDetail($id: ID!) {
    activityPlayerDetail(id: $id) {
      id
      playerInfo {
        id
        name
        phone
        description
        avatarUrl
      }
      regionInfo {
        id
        name
        fullPath
      }
      activityName
      projectName
      description
      feedback
      state
      submissionFiles {
        id
        name
        url
        thumbUrl
        fileExt
        fileSize
        mediaType
      }
      ratingForm {
        schemeId
        schemeName
        items {
          id
          name
          maxScore
          orderNo
        }
        totalMaxScore
      }
    }
  }
`
 
/**
 * 获取比赛报名详情(用于评分)
 */
export function getActivityPlayerDetail(id) {
  if (USE_MOCK_DATA) {
    return Promise.resolve(createMockResponse({
      activityPlayerDetail: mockActivityPlayerDetail
    }))
  }
  return graphqlRequest(GET_ACTIVITY_PLAYER_DETAIL, { id })
}
 
const SAVE_ACTIVITY_PLAYER_RATING = `
  mutation SaveActivityPlayerRating($input: ActivityPlayerRatingInput!) {
    saveActivityPlayerRating(input: $input)
  }
`
 
/**
 * 保存比赛报名评分
 */
export function saveActivityPlayerRating(input) {
  if (USE_MOCK_DATA) {
    console.log('模拟保存评分数据:', input)
    return Promise.resolve(createMockResponse({
      saveActivityPlayerRating: true
    }))
  }
  return graphqlRequest(SAVE_ACTIVITY_PLAYER_RATING, { input })
}
 
const GET_JUDGE_RATINGS_FOR_PLAYER = `
  query GetJudgeRatingsForPlayer($activityPlayerId: ID!) {
    judgeRatingsForPlayer(activityPlayerId: $activityPlayerId) {
      judgeId
      judgeName
      totalScore
      status
      isCurrentJudge
    }
  }
`
 
/**
 * 获取指定选手的所有评委评分状态
 */
export function getJudgeRatingsForPlayer(activityPlayerId) {
  if (USE_MOCK_DATA) {
    return Promise.resolve(createMockResponse({
      judgeRatingsForPlayer: mockJudgeRatings
    }))
  }
  return graphqlRequest(GET_JUDGE_RATINGS_FOR_PLAYER, { activityPlayerId })
}
 
const GET_CURRENT_JUDGE_RATING = `
  query GetCurrentJudgeRating($activityPlayerId: ID!) {
    currentJudgeRating(activityPlayerId: $activityPlayerId) {
      id
      totalScore
      status
      remark
      items {
        ratingItemId
        ratingItemName
        score
        weightedScore
      }
    }
  }
`
 
/**
 * 获取当前评委对指定选手的评分
 */
export function getCurrentJudgeRating(activityPlayerId) {
  if (USE_MOCK_DATA) {
    return Promise.resolve(createMockResponse({
      currentJudgeRating: mockCurrentJudgeRating
    }))
  }
  return graphqlRequest(GET_CURRENT_JUDGE_RATING, { activityPlayerId })
}
 
const GET_AVERAGE_SCORE_FOR_PLAYER = `
  query GetAverageScoreForPlayer($activityPlayerId: ID!) {
    averageScoreForPlayer(activityPlayerId: $activityPlayerId)
  }
`
 
/**
 * 获取指定选手的平均分
 */
export function getAverageScoreForPlayer(activityPlayerId) {
  if (USE_MOCK_DATA) {
    return Promise.resolve(createMockResponse({
      averageScoreForPlayer: mockAverageScore
    }))
  }
  return graphqlRequest(GET_AVERAGE_SCORE_FOR_PLAYER, { activityPlayerId })
}
 
const GET_CURRENT_JUDGE_INFO = `
  query GetCurrentJudgeInfo {
    currentJudgeInfo {
      id
      name
      phone
      description
    }
  }
`
 
/**
 * 获取当前评委信息
 */
export function getCurrentJudgeInfo() {
  if (USE_MOCK_DATA) {
    return Promise.resolve(createMockResponse({
      currentJudgeInfo: mockCurrentJudgeInfo
    }))
  }
  return graphqlRequest(GET_CURRENT_JUDGE_INFO)
}
 
// 审核相关mutations
const APPROVE_ACTIVITY_PLAYER = `
  mutation ApproveActivityPlayer($activityPlayerId: ID!, $feedback: String) {
    approveActivityPlayer(activityPlayerId: $activityPlayerId, feedback: $feedback)
  }
`
 
const REJECT_ACTIVITY_PLAYER = `
  mutation RejectActivityPlayer($activityPlayerId: ID!, $feedback: String!) {
    rejectActivityPlayer(activityPlayerId: $activityPlayerId, feedback: $feedback)
  }
`
 
const UPDATE_PLAYER_FEEDBACK = `
  mutation UpdatePlayerFeedback($activityPlayerId: ID!, $feedback: String!) {
    updatePlayerFeedback(activityPlayerId: $activityPlayerId, feedback: $feedback)
  }
`
 
/**
 * 审核通过
 */
export function approveActivityPlayer(activityPlayerId, feedback = '') {
  return graphqlRequest(APPROVE_ACTIVITY_PLAYER, { activityPlayerId, feedback })
}
 
/**
 * 审核驳回
 */
export function rejectActivityPlayer(activityPlayerId, feedback) {
  return graphqlRequest(REJECT_ACTIVITY_PLAYER, { activityPlayerId, feedback })
}
 
/**
 * 更新审核意见
 */
export function updatePlayerFeedback(activityPlayerId, feedback) {
  return graphqlRequest(UPDATE_PLAYER_FEEDBACK, { activityPlayerId, feedback })
}