看板初始化提交
This commit is contained in:
@@ -0,0 +1,115 @@
|
||||
<?php
|
||||
|
||||
namespace Kanboard\Formatter;
|
||||
|
||||
use Kanboard\Core\Filter\FormatterInterface;
|
||||
|
||||
/**
|
||||
* Board Column Formatter
|
||||
*
|
||||
* @package formatter
|
||||
* @author Frederic Guillot
|
||||
*/
|
||||
class BoardColumnFormatter extends BaseFormatter implements FormatterInterface
|
||||
{
|
||||
protected $swimlaneId = 0;
|
||||
protected $columns = array();
|
||||
protected $tasks = array();
|
||||
protected $tags = array();
|
||||
protected $taskCountBySwimlaneAndColumn = array();
|
||||
|
||||
/**
|
||||
* Set swimlaneId
|
||||
*
|
||||
* @access public
|
||||
* @param integer $swimlaneId
|
||||
* @return $this
|
||||
*/
|
||||
public function withSwimlaneId($swimlaneId)
|
||||
{
|
||||
$this->swimlaneId = $swimlaneId;
|
||||
return $this;
|
||||
}
|
||||
|
||||
/**
|
||||
* Set columns
|
||||
*
|
||||
* @access public
|
||||
* @param array $columns
|
||||
* @return $this
|
||||
*/
|
||||
public function withColumns(array $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;
|
||||
}
|
||||
|
||||
/**
|
||||
* Set task count by swimlane and column
|
||||
*
|
||||
* @access public
|
||||
* @param array $taskCountBySwimlaneAndColumn
|
||||
* @return $this
|
||||
*/
|
||||
public function withTaskCountBySwimlaneAndColumn(array $taskCountBySwimlaneAndColumn)
|
||||
{
|
||||
$this->taskCountBySwimlaneAndColumn = $taskCountBySwimlaneAndColumn;
|
||||
return $this;
|
||||
}
|
||||
|
||||
/**
|
||||
* Apply formatter
|
||||
*
|
||||
* @access public
|
||||
* @return array
|
||||
*/
|
||||
public function format()
|
||||
{
|
||||
foreach ($this->columns as &$column) {
|
||||
$column['id'] = (int) $column['id'];
|
||||
$column['tasks'] = $this->boardTaskFormatter
|
||||
->withTasks($this->tasks)
|
||||
->withTags($this->tags)
|
||||
->withSwimlaneId($this->swimlaneId)
|
||||
->withColumnId($column['id'])
|
||||
->format();
|
||||
|
||||
$column['nb_tasks'] = count($column['tasks']);
|
||||
$column['score'] = (int) array_column_sum($column['tasks'], 'score');
|
||||
|
||||
if (empty($this->taskCountBySwimlaneAndColumn)) {
|
||||
$column['column_nb_open_tasks'] = $column['nb_open_tasks'];
|
||||
} else {
|
||||
$column['column_nb_open_tasks'] = isset($this->taskCountBySwimlaneAndColumn[$this->swimlaneId][$column['id']]) ? $this->taskCountBySwimlaneAndColumn[$this->swimlaneId][$column['id']] : 0;
|
||||
}
|
||||
}
|
||||
|
||||
return $this->columns;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user