Show different links for different roles
This commit is contained in:
parent
f2a765ee3b
commit
6b2628b333
|
|
@ -23,6 +23,7 @@ export interface Props {
|
||||||
courseSession: CourseSession;
|
courseSession: CourseSession;
|
||||||
learningContent: LearningContentAssignment | LearningContentEdoniqTest;
|
learningContent: LearningContentAssignment | LearningContentEdoniqTest;
|
||||||
userSelectionIds?: string[];
|
userSelectionIds?: string[];
|
||||||
|
linkToResults?: boolean;
|
||||||
}
|
}
|
||||||
|
|
||||||
const props = defineProps<Props>();
|
const props = defineProps<Props>();
|
||||||
|
|
@ -85,6 +86,12 @@ function findUserPointsHtml(userId: string) {
|
||||||
}
|
}
|
||||||
return result;
|
return result;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
function generateCertificatesLink(userId: string) {
|
||||||
|
const parts = props.learningContent.competence_certificate?.frontend_url?.split("/");
|
||||||
|
const certificatePart = parts[parts.length - 1];
|
||||||
|
return `/course/${props.courseSession.course.slug}/profile/${userId}/competence/certificates/${certificatePart}`;
|
||||||
|
}
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<template>
|
<template>
|
||||||
|
|
@ -178,11 +185,19 @@ function findUserPointsHtml(userId: string) {
|
||||||
props.learningContent.content_type !==
|
props.learningContent.content_type !==
|
||||||
'learnpath.LearningContentEdoniqTest'
|
'learnpath.LearningContentEdoniqTest'
|
||||||
"
|
"
|
||||||
:to="`/course/${props.courseSession.course.slug}/assignment-evaluation/${learningContent.content_assignment.id}/${csu.user_id}`"
|
:to="
|
||||||
|
props.linkToResults
|
||||||
|
? `/course/${props.courseSession.course.slug}/assignment-evaluation/${learningContent.content_assignment.id}/${csu.user_id}`
|
||||||
|
: generateCertificatesLink(csu.user_id)
|
||||||
|
"
|
||||||
class="link lg:w-full lg:text-right"
|
class="link lg:w-full lg:text-right"
|
||||||
data-cy="show-results"
|
data-cy="show-results"
|
||||||
>
|
>
|
||||||
{{ $t("a.Ergebnisse anschauen") }}
|
{{
|
||||||
|
props.linkToResults
|
||||||
|
? $t("a.Ergebnisse anschauen")
|
||||||
|
: $t("a.Profil anzeigen")
|
||||||
|
}}
|
||||||
</router-link>
|
</router-link>
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
|
|
|
||||||
|
|
@ -53,6 +53,7 @@ const backRoute = computed(() => {
|
||||||
v-if="learningContentAssignment"
|
v-if="learningContentAssignment"
|
||||||
:course-session="courseSession"
|
:course-session="courseSession"
|
||||||
:learning-content="learningContentAssignment as (LearningContentAssignment | LearningContentEdoniqTest)"
|
:learning-content="learningContentAssignment as (LearningContentAssignment | LearningContentEdoniqTest)"
|
||||||
|
:link-to-results="true"
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
</main>
|
</main>
|
||||||
|
|
|
||||||
|
|
@ -53,6 +53,7 @@ const learningContentAssignment = computed(() => {
|
||||||
:course-session="courseSession"
|
:course-session="courseSession"
|
||||||
:learning-content="learningContentAssignment as (LearningContentAssignment | LearningContentEdoniqTest)"
|
:learning-content="learningContentAssignment as (LearningContentAssignment | LearningContentEdoniqTest)"
|
||||||
:user-selection-ids="participantUserIds"
|
:user-selection-ids="participantUserIds"
|
||||||
|
:link-to-results="props.agentRole.toLowerCase() !== 'berufsbildner'"
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
</main>
|
</main>
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue