From 1380d8e444d5961ecacd95dcb9dda6443da65acf Mon Sep 17 00:00:00 2001 From: Jan-Hendrik Willms <tleilax+studip@gmail.com> Date: Tue, 22 Oct 2024 10:31:47 +0000 Subject: [PATCH] fix my courses portal widget, re #4301, fixes #4728 Closes #4728 Merge request studip/studip!3524 --- lib/modules/MyCoursesWidget.php | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/lib/modules/MyCoursesWidget.php b/lib/modules/MyCoursesWidget.php index ba73e5b0405..f4f29397d70 100644 --- a/lib/modules/MyCoursesWidget.php +++ b/lib/modules/MyCoursesWidget.php @@ -27,11 +27,13 @@ class MyCoursesWidget extends CorePlugin implements PortalPlugin { // get the MyCoursesController in order to prepare the correct data for the overview $controller = app(MyCoursesController::class, ['dispatcher' => app(\Trails\Dispatcher::class)]); - $data = $controller->getPortalWidgetData(); - // add the json data to the head so vue can grab it - PageLayout::addHeadElement('script', [], 'STUDIP.MyCoursesData = ' . json_encode($data) . ';'); - - return $GLOBALS['template_factory']->open('start/my_courses'); + return Studip\VueApp::create('MyCourses') + ->withStore( + 'MyCoursesStore', + 'mycourses', + $controller->getPortalWidgetData() + ) + ->getTemplate(); } } -- GitLab