mirror of
https://github.com/YunoHost-Apps/kanboard_ynh.git
synced 2024-09-03 19:36:17 +02:00
120 lines
3 KiB
PHP
120 lines
3 KiB
PHP
<?php
|
|
|
|
namespace Kanboard\Formatter;
|
|
|
|
use Kanboard\Core\Filter\FormatterInterface;
|
|
|
|
/**
|
|
* Board Swimlane Formatter
|
|
*
|
|
* @package formatter
|
|
* @author Frederic Guillot
|
|
*/
|
|
class BoardSwimlaneFormatter extends BaseFormatter implements FormatterInterface
|
|
{
|
|
protected $swimlanes = array();
|
|
protected $columns = array();
|
|
protected $tasks = array();
|
|
protected $tags = array();
|
|
|
|
/**
|
|
* Set swimlanes
|
|
*
|
|
* @access public
|
|
* @param array $swimlanes
|
|
* @return $this
|
|
*/
|
|
public function withSwimlanes($swimlanes)
|
|
{
|
|
$this->swimlanes = $swimlanes;
|
|
return $this;
|
|
}
|
|
|
|
/**
|
|
* Set columns
|
|
*
|
|
* @access public
|
|
* @param array $columns
|
|
* @return $this
|
|
*/
|
|
public function withColumns($columns)
|
|
{
|
|
$this->columns = $columns;
|
|
return $this;
|
|
}
|
|
|
|
/**
|
|
* Set tasks
|
|
*
|
|
* @access public
|
|
* @param array $tasks
|
|
* @return $this
|
|
*/
|
|
public function withTasks(array $tasks)
|
|
{
|
|
$this->tasks = $tasks;
|
|
return $this;
|
|
}
|
|
|
|
/**
|
|
* Set tags
|
|
*
|
|
* @access public
|
|
* @param array $tags
|
|
* @return $this
|
|
*/
|
|
public function withTags(array $tags)
|
|
{
|
|
$this->tags = $tags;
|
|
return $this;
|
|
}
|
|
|
|
/**
|
|
* Apply formatter
|
|
*
|
|
* @access public
|
|
* @return array
|
|
*/
|
|
public function format()
|
|
{
|
|
$nb_swimlanes = count($this->swimlanes);
|
|
$nb_columns = count($this->columns);
|
|
|
|
foreach ($this->swimlanes as &$swimlane) {
|
|
$swimlane['columns'] = BoardColumnFormatter::getInstance($this->container)
|
|
->withSwimlaneId($swimlane['id'])
|
|
->withColumns($this->columns)
|
|
->withTasks($this->tasks)
|
|
->withTags($this->tags)
|
|
->format();
|
|
|
|
$swimlane['nb_swimlanes'] = $nb_swimlanes;
|
|
$swimlane['nb_columns'] = $nb_columns;
|
|
$swimlane['nb_tasks'] = array_column_sum($swimlane['columns'], 'nb_tasks');
|
|
$swimlane['score'] = array_column_sum($swimlane['columns'], 'score');
|
|
|
|
$this->calculateStatsByColumnAcrossSwimlanes($swimlane['columns']);
|
|
}
|
|
|
|
return $this->swimlanes;
|
|
}
|
|
|
|
/**
|
|
* Calculate stats for each column acrosss all swimlanes
|
|
*
|
|
* @access protected
|
|
* @param array $columns
|
|
*/
|
|
protected function calculateStatsByColumnAcrossSwimlanes(array $columns)
|
|
{
|
|
foreach ($columns as $columnIndex => $column) {
|
|
if (! isset($this->swimlanes[0]['columns'][$columnIndex]['column_nb_tasks'])) {
|
|
$this->swimlanes[0]['columns'][$columnIndex]['column_nb_tasks'] = 0;
|
|
$this->swimlanes[0]['columns'][$columnIndex]['column_score'] = 0;
|
|
}
|
|
|
|
$this->swimlanes[0]['columns'][$columnIndex]['column_nb_tasks'] += $column['nb_tasks'];
|
|
$this->swimlanes[0]['columns'][$columnIndex]['column_score'] += $column['score'];
|
|
}
|
|
}
|
|
}
|