znt/module/block/ui/singlemonthlyprogressblock.html.php

165 lines
8.2 KiB
PHP

<?php
declare(strict_types=1);
/**
* The singleproductmonthlyprogressblock block view file of block module of ZenTaoPMS.
* @copyright Copyright 2009-2023 禅道软件(青岛)有限公司(ZenTao Software (Qingdao) Co., Ltd. www.zentao.net)
* @license ZPL(https://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html)
* @author Mengyi Liu <liumengyi@easycorp.ltd>
* @package block
* @link https://www.zentao.net
*/
namespace zin;
blockPanel
(
to::titleSuffix
(
icon
(
setClass('text-light text-sm cursor-pointer'),
toggle::tooltip
(
array
(
'title' => sprintf($lang->block->tooltips['metricTime'], $metricTime),
'placement' => 'bottom',
'type' => 'white',
'className' => 'text-dark border border-light leading-5'
)
),
'help'
)
),
div
(
setClass('flex h-full w-full' . ($longBlock ? ' flex-nowrap' : ' flex-wrap')),
cell
(
setClass('chart line-chart ' . ($longBlock ? 'py-2' : 'py-1 w-full')),
set::width($longBlock ? '1/4' : '100%'),
echarts
(
set::title(array('text' => $lang->block->monthlyprogress->doneStoryEstimateTrendChart, 'textStyle' => array('fontSize' => '12'))),
set::color(array('#2B80FF', '#17CE97')),
set::width('100%'),
set::height(200),
set::grid(array('left' => '10px', 'top' => '60px', 'right' => '0', 'bottom' => '0', 'containLabel' => true)),
set::xAxis(array('type' => 'category', 'data' => array_keys($doneStoryEstimate), 'splitLine' => array('show' => false), 'axisTick' => array('alignWithLabel' => true, 'interval' => 0), 'axisLabel' => array('fontSize' => $longBlock ? '8' : '10'))),
set::yAxis(array('type' => 'value', 'name' => "({$config->block->storyUnitList[$config->custom->hourPoint]})", 'splitLine' => array('show' => false), 'axisLine' => array('show' => true, 'color' => '#DDD'), 'axisLabel' => array('showMaxLabel' => true, 'interval' => 'auto'))),
set::series
(
array
(
'type' => 'line',
'data' => array_values($doneStoryEstimate),
'emphasis' => array('label' => array('show' => true))
)
)
)
),
cell
(
setClass('chart line-chart ' . ($longBlock ? 'py-2' : 'py-1 w-full')),
set::width($longBlock ? '1/4' : '100%'),
echarts
(
set::title(array('text' => $lang->block->monthlyprogress->storyTrendChart, 'textStyle' => array('fontSize' => '12'))),
set::color(array('#2B80FF', '#17CE97')),
set::width('100%'),
set::height(200),
set::grid(array('left' => '10px', 'top' => '60px', 'right' => '0', 'bottom' => '0', 'containLabel' => true)),
set::legend(array('show' => true, 'right' => '0', 'top' => '25px', 'textStyle' => array('fontSize' => '11'))),
set::xAxis(array('type' => 'category', 'data' => array_keys($createStoryCount), 'splitLine' => array('show' => false), 'axisTick' => array('alignWithLabel' => true, 'interval' => 0), 'axisLabel' => array('fontSize' => $longBlock ? '8' : '10'))),
set::yAxis(array('type' => 'value', 'name' => "({$lang->block->projectstatistic->unit})", 'splitLine' => array('show' => false), 'axisLine' => array('show' => true, 'color' => '#DDD'), 'axisLabel' => array('showMaxLabel' => true, 'interval' => 'auto'))),
set::series
(
array
(
array
(
'type' => 'line',
'name' => $lang->block->productstatistic->opened,
'data' => array_values($createStoryCount),
'emphasis' => array('label' => array('show' => true))
),
array
(
'type' => 'line',
'name' => $lang->block->productstatistic->done,
'data' => array_values($doneStoryCount),
'emphasis' => array('label' => array('show' => true))
)
)
)
)
),
cell
(
setClass('chart line-chart ' . ($longBlock ? 'py-2' : 'py-1 w-full')),
set::width($longBlock ? '1/4' : '100%'),
echarts
(
set::title(array('text' => $lang->block->monthlyprogress->bugTrendChart, 'textStyle' => array('fontSize' => '12'))),
set::color(array('#2B80FF', '#17CE97')),
set::width('100%'),
set::height(200),
set::grid(array('left' => '10px', 'top' => '60px', 'right' => '0', 'bottom' => '0', 'containLabel' => true)),
set::legend(array('show' => true, 'right' => '0', 'top' => '25px', 'textStyle' => array('fontSize' => '11'))),
set::xAxis(array('type' => 'category', 'data' => array_keys($createBugCount), 'splitLine' => array('show' => false), 'axisTick' => array('alignWithLabel' => true, 'interval' => 0), 'axisLabel' => array('fontSize' => $longBlock ? '8' : '10'))),
set::yAxis(array('type' => 'value', 'name' => "({$lang->block->projectstatistic->unit})", 'splitLine' => array('show' => false), 'axisLine' => array('show' => true, 'color' => '#DDD'), 'axisLabel' => array('showMaxLabel' => true, 'interval' => 'auto'))),
set::series
(
array
(
array
(
'type' => 'line',
'name' => $lang->block->productstatistic->opened,
'data' => array_values($createBugCount),
'emphasis' => array('label' => array('show' => true))
),
array
(
'type' => 'line',
'name' => $lang->bug->resolve,
'data' => array_values($fixedBugCount),
'emphasis' => array('label' => array('show' => true))
)
)
)
)
),
cell
(
setClass('chart line-chart ' . ($longBlock ? 'py-2' : 'py-1 w-full')),
set::width($longBlock ? '1/4' : '100%'),
echarts
(
set::title(array('text' => $lang->block->releasestatistic->monthly, 'textStyle' => array('fontSize' => '12'))),
set::color(array('#2B80FF')),
set::width('100%'),
set::height(200),
set::grid(array('left' => '10px', 'top' => '60px', 'right' => '0', 'bottom' => '0', 'containLabel' => true)),
set::xAxis(array('type' => 'category', 'data' => array_keys($releaseCount), 'splitLine' => array('show' => false), 'axisTick' => array('alignWithLabel' => true, 'interval' => 0), 'axisLabel' => array('fontSize' => $longBlock ? '8' : '10'))),
set::yAxis(array('type' => 'value', 'name' => "({$lang->block->projectstatistic->unit})", 'splitLine' => array('show' => false), 'axisLine' => array('show' => true, 'color' => '#DDD'), 'axisLabel' => array('showMaxLabel' => true, 'interval' => 'auto'))),
set::series
(
array
(
array
(
'type' => 'line',
'name' => $lang->product->releases,
'data' => array_values($releaseCount),
'emphasis' => array('label' => array('show' => true))
)
)
)
)
)
)
);
render();