feat: add creators, dates and overall ux improvements

This commit is contained in:
swve 2025-05-25 22:05:30 +02:00
parent 988534a42c
commit a73b6ae57e
3 changed files with 103 additions and 6 deletions

View file

@ -77,7 +77,7 @@ export default function ActivityChapterDropdown(props: ActivityChapterDropdownPr
</button>
{isOpen && (
<div className={`absolute z-50 mt-2 ${isMobile ? 'left-0 w-[90vw] sm:w-72' : 'left-0 w-72'} max-h-[70vh] cursor-pointer overflow-y-auto bg-white rounded-lg shadow-xl border border-gray-200 py-1 animate-in fade-in duration-200`}>
<div className={`absolute z-50 mt-2 ${isMobile ? 'right-0 w-[90vw] sm:w-72' : 'right-0 w-72'} max-h-[70vh] cursor-pointer overflow-y-auto bg-white rounded-lg shadow-xl border border-gray-200 py-1 animate-in fade-in duration-200`}>
<div className="px-3 py-1.5 border-b border-gray-100 flex justify-between items-center">
<h3 className="text-sm font-semibold text-gray-800">Course Content</h3>
<button

View file

@ -4,6 +4,7 @@ import React, { useMemo, memo, useState } from 'react'
import ToolTip from '@components/Objects/StyledElements/Tooltip/Tooltip'
import { getUriWithOrg } from '@services/config/config'
import Link from 'next/link'
import { useRouter } from 'next/navigation'
interface Props {
course: any
@ -100,6 +101,7 @@ function ActivityIndicators(props: Props) {
const orgslug = props.orgslug
const courseid = props.course_uuid.replace('course_', '')
const enableNavigation = props.enableNavigation || false
const router = useRouter()
const [currentIndex, setCurrentIndex] = useState(0)
@ -161,7 +163,7 @@ function ActivityIndicators(props: Props) {
if (currentActivityIndex > 0) {
const prevActivity = allActivities[currentActivityIndex - 1]
const activityId = prevActivity.activity_uuid.replace('activity_', '')
window.location.href = getUriWithOrg(orgslug, '') + `/course/${courseid}/activity/${activityId}`
router.push(getUriWithOrg(orgslug, '') + `/course/${courseid}/activity/${activityId}`)
}
}
@ -169,7 +171,7 @@ function ActivityIndicators(props: Props) {
if (currentActivityIndex < allActivities.length - 1) {
const nextActivity = allActivities[currentActivityIndex + 1]
const activityId = nextActivity.activity_uuid.replace('activity_', '')
window.location.href = getUriWithOrg(orgslug, '') + `/course/${courseid}/activity/${activityId}`
router.push(getUriWithOrg(orgslug, '') + `/course/${courseid}/activity/${activityId}`)
}
}