mirror of
https://github.com/OpenXE-org/OpenXE.git
synced 2024-11-15 20:47:15 +01:00
58 lines
1.1 KiB
PHP
58 lines
1.1 KiB
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace Xentral\Modules\LearningDashboard\Data;
|
|
|
|
final class Lesson implements \JsonSerializable
|
|
{
|
|
/** @var string */
|
|
private $name;
|
|
|
|
/** @var array|Task[] */
|
|
private $tasks;
|
|
|
|
/**
|
|
* Lesson constructor.
|
|
*
|
|
* @param string $name
|
|
*/
|
|
public function __construct(string $name)
|
|
{
|
|
$this->name = $name;
|
|
}
|
|
|
|
/** @param Task $task */
|
|
public function addTask(Task $task)
|
|
{
|
|
$this->tasks[] = $task;
|
|
}
|
|
|
|
public function getProgress()
|
|
{
|
|
$totalSteps = 0;
|
|
$completedSteps = 0;
|
|
|
|
foreach ($this->tasks as $task) {
|
|
$taskProgress = $task->getProgress();
|
|
$totalSteps += $taskProgress['total'];
|
|
$completedSteps += $taskProgress['complete'];
|
|
}
|
|
|
|
return [
|
|
'total' => $totalSteps,
|
|
'completed' => $completedSteps,
|
|
];
|
|
}
|
|
|
|
/** @return array */
|
|
public function jsonSerialize()
|
|
{
|
|
return [
|
|
'name' => $this->name,
|
|
'progress' => $this->getProgress(),
|
|
'tasks' => $this->tasks,
|
|
];
|
|
}
|
|
}
|