132
132
<Column
133
133
:header =" $t('Ranking')"
134
134
:sortable =" true"
135
- field =" trackCourseRanking.realTotalScore "
135
+ field =" userVote.vote "
136
136
style =" min-width : 10rem ; text-align : center "
137
137
>
138
138
<template #body =" { data } " >
139
139
<Rating
140
140
:cancel =" false"
141
- :model-value =" data.trackCourseRanking ? data.trackCourseRanking.realTotalScore : 0"
141
+ :model-value =" data.userVote ? data.userVote.vote : 0"
142
142
:stars =" 5"
143
143
class =" pointer-events: none"
144
- @change =" onRatingChange($event, data.trackCourseRanking , data.id)"
144
+ @change =" onRatingChange($event, data.userVote , data.id)"
145
145
/>
146
146
</template >
147
147
</Column >
@@ -204,10 +204,9 @@ import { usePlatformConfig } from "../../store/platformConfig"
204
204
import { useSecurityStore } from " ../../store/securityStore"
205
205
206
206
import courseService from " ../../services/courseService"
207
- import * as trackCourseRanking from " ../../services/trackCourseRankingService"
208
-
209
207
import { useNotification } from " ../../composables/notification"
210
208
import { useLanguage } from " ../../composables/language"
209
+ import * as userRelCourseVoteService from " ../../services/userRelCourseVoteService"
211
210
212
211
const { showErrorNotification } = useNotification ()
213
212
const { findByIsoCode: findLanguageByIsoCode } = useLanguage ()
@@ -227,31 +226,43 @@ async function load() {
227
226
try {
228
227
const { items } = await courseService .listAll ()
229
228
230
- courses .value = items .map ((course ) => ({
231
- ... course,
232
- courseLanguage: findLanguageByIsoCode (course .courseLanguage )? .originalName ,
233
- }))
229
+ const votes = await userRelCourseVoteService .getUserVotes ({
230
+ userId: currentUserId,
231
+ urlId: window .access_url_id ,
232
+ })
233
+
234
+ courses .value = items .map ((course ) => {
235
+ const userVote = votes .find ((vote ) => vote .course === ` /api/courses/${ course .id } ` )
236
+
237
+ return {
238
+ ... course,
239
+ courseLanguage: findLanguageByIsoCode (course .courseLanguage )? .originalName ,
240
+ userVote: userVote ? { ... userVote } : { vote: 0 },
241
+ }
242
+ })
234
243
} catch (error) {
235
244
showErrorNotification (error)
236
245
} finally {
237
246
status .value = false
238
247
}
239
248
}
240
249
241
- async function updateRating (id , value ) {
250
+ async function updateRating (voteIri , value ) {
242
251
status .value = true
243
252
244
253
try {
245
- const response = await trackCourseRanking .updateRanking ({
246
- iri: ` /api/track_course_rankings/${ id} ` ,
247
- totalScore: value,
254
+ await userRelCourseVoteService .updateVote ({
255
+ iri: voteIri,
256
+ vote: value,
257
+ sessionId: window .session_id ,
258
+ urlId: window .access_url_id ,
248
259
})
249
260
250
- courses .value . forEach ((course ) => {
251
- if ( course .trackCourseRanking && course .trackCourseRanking . id === id) {
252
- course . trackCourseRanking . realTotalScore = response . realTotalScore
253
- }
254
- } )
261
+ courses .value = courses . value . map ((course ) =>
262
+ course .userVote && course .userVote [ " @id " ] === voteIri
263
+ ? { ... course, userVote : { ... course . userVote , vote : value } }
264
+ : course,
265
+ )
255
266
} catch (e) {
256
267
showErrorNotification (e)
257
268
} finally {
@@ -263,25 +274,47 @@ const newRating = async function (courseId, value) {
263
274
status .value = true
264
275
265
276
try {
266
- const response = await trackCourseRanking .saveRanking ({
267
- totalScore: value,
268
- courseIri: ` /api/courses/${ courseId} ` ,
277
+ const existingVote = await userRelCourseVoteService .getUserVote ({
278
+ userId: currentUserId,
279
+ courseId,
280
+ sessionId: window .session_id || null ,
269
281
urlId: window .access_url_id ,
270
- sessionId: 0 ,
271
282
})
272
283
273
- courses .value .forEach ((course ) => {
274
- if (course .id === courseId) {
275
- course .trackCourseRanking = response
276
- }
277
- })
284
+ if (existingVote) {
285
+ await updateRating (existingVote[" @id" ], value)
286
+ } else {
287
+ await userRelCourseVoteService .saveVote ({
288
+ vote: value,
289
+ courseIri: ` /api/courses/${ courseId} ` ,
290
+ userId: currentUserId,
291
+ sessionId: window .session_id || null ,
292
+ urlId: window .access_url_id ,
293
+ })
294
+ }
295
+
296
+ await load ()
278
297
} catch (e) {
279
298
showErrorNotification (e)
280
299
} finally {
281
300
status .value = false
282
301
}
283
302
}
284
303
304
+ const onRatingChange = function (event , userVote , courseId ) {
305
+ let { value } = event
306
+
307
+ if (value > 0 ) {
308
+ if (userVote && userVote[" @id" ]) {
309
+ updateRating (userVote[" @id" ], value)
310
+ } else {
311
+ newRating (courseId, value)
312
+ }
313
+ } else {
314
+ event .preventDefault ()
315
+ }
316
+ }
317
+
285
318
const isUserInCourse = (course ) => {
286
319
return course .users .some ((user ) => user .user .id === currentUserId)
287
320
}
@@ -296,16 +329,6 @@ const initFilters = function () {
296
329
}
297
330
}
298
331
299
- const onRatingChange = function (event , trackCourseRanking , courseId ) {
300
- let { value } = event
301
- if (value > 0 ) {
302
- if (trackCourseRanking) updateRating (trackCourseRanking .id , value)
303
- else newRating (courseId, value)
304
- } else {
305
- event .preventDefault ()
306
- }
307
- }
308
-
309
332
load ()
310
333
initFilters ()
311
334
</script >
0 commit comments