Skip to content

Commit

Permalink
fix3: resolve review comments
Browse files Browse the repository at this point in the history
  • Loading branch information
raviks789 committed Sep 30, 2024
1 parent efda19d commit 01bf509
Show file tree
Hide file tree
Showing 8 changed files with 36 additions and 18 deletions.
7 changes: 4 additions & 3 deletions library/Icingadb/Common/StateBadges.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
use InvalidArgumentException;
use ipl\Html\BaseHtmlElement;
use ipl\Html\Html;
use ipl\Html\HtmlElement;
use ipl\Stdlib\BaseFilter;
use ipl\Stdlib\Filter;
use ipl\Web\Url;
Expand Down Expand Up @@ -157,7 +158,7 @@ protected function createBadge(string $state): ?BaseHtmlElement
);
}

return Html::tag('li', $stateBadge);
return new HtmlElement('li', null, $stateBadge);
}

return null;
Expand Down Expand Up @@ -190,7 +191,7 @@ protected function createGroup(string $state): ?BaseHtmlElement
);
}

$content[] = Html::tag('li', $unhandledStateBadge);
$content[] = new HtmlElement('li', null, $unhandledStateBadge);
}

if (isset($this->item->$handledKey) && $this->item->$handledKey) {
Expand All @@ -209,7 +210,7 @@ protected function createGroup(string $state): ?BaseHtmlElement
);
}

$content[] = Html::tag('li', $handledStateBadge);
$content[] = new HtmlElement('li', null, $handledStateBadge);
}

if (empty($content)) {
Expand Down
12 changes: 5 additions & 7 deletions library/Icingadb/Model/RedundancyGroupParentStateSummary.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,13 @@

namespace Icinga\Module\Icingadb\Model;

use ipl\Orm\Query;
use ipl\Sql\Connection;
use ipl\Sql\Expression;

/**
* Redundancy group's parent nodes summary
*
* @property int $objects_down_critical_handled
* @property int $objects_down_critical_unhandled
* @property int $objects_pending
Expand All @@ -21,7 +24,7 @@
*/
class RedundancyGroupParentStateSummary extends RedundancyGroup
{
public function getSummaryColumns()
public function getSummaryColumns(): array
{
return [
'objects_problem_handled' => new Expression(
Expand Down Expand Up @@ -81,7 +84,7 @@ public function getSummaryColumns()
];
}

public static function on(Connection $db)
public static function on(Connection $db): Query
{
$q = parent::on($db)->with([
'from',
Expand All @@ -102,9 +105,4 @@ public function getColumns(): array
{
return array_merge(parent::getColumns(), $this->getSummaryColumns());
}

public function getDefaultSort()
{
return null;
}
}
11 changes: 10 additions & 1 deletion library/Icingadb/Widget/Detail/ObjectDetail.php
Original file line number Diff line number Diff line change
Expand Up @@ -628,10 +628,19 @@ protected function createRootProblems(): ?array
'service.state.last_comment',
'service.host',
'service.host.state'
])->orderBy([
'host.state.severity' => SORT_DESC,
'host.state.last_state_change' => SORT_DESC,
'service.state.severity' => SORT_DESC,
'service.state.last_state_change' => SORT_DESC,
'redundancy_group.state.last_state_change' => SORT_DESC
]);

$this->applyRestrictions($rootProblems);

return [HtmlElement::create('h2', null, t('Root Problems')), new DependencyNodeList($rootProblems)];
return [
HtmlElement::create('h2', null, Text::create(t('Root Problems'))),
new DependencyNodeList($rootProblems)
];
}
}
6 changes: 5 additions & 1 deletion library/Icingadb/Widget/ItemList/DependencyNodeList.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,11 @@

use Icinga\Module\Icingadb\Model\DependencyNode;
use Icinga\Module\Icingadb\Model\UnreachableParent;
use ipl\Web\Common\BaseListItem;

/**
* Dependency node list
*/
class DependencyNodeList extends StateList
{
protected $defaultAttributes = ['class' => ['root-problem-list']];
Expand All @@ -21,7 +25,7 @@ protected function getItemClass(): string
return '';
}

protected function createListItem(object $data)
protected function createListItem(object $data): BaseListItem
{
/** @var UnreachableParent|DependencyNode $data */
if ($data->redundancy_group_id !== null) {
Expand Down
6 changes: 3 additions & 3 deletions library/Icingadb/Widget/ItemList/RedundancyGroupListItem.php
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ protected function assembleCaption(BaseHtmlElement $caption): void
->orderBy([
'objects_severity',
'objects_last_state_change',
], 'DESC');
], SORT_DESC);

$this->applyRestrictions($members);

Expand All @@ -135,13 +135,13 @@ protected function assembleTitle(BaseHtmlElement $title): void
$stateTextElement = Html::sprintf(
t('%s has %s', '<hostname> has <state-text>'),
$subject,
Html::tag('span', ['class' => 'state-text'], 'FAILED')
new HtmlElement('span', Attributes::create(['class' => 'state-text']), 'FAILED')
);
} else {
$stateTextElement = Html::sprintf(
t('%s is %s', '<hostname> is <state-text>'),
$subject,
Html::tag('span', ['class' => 'state-text'], 'OK')
new HtmlElement('span', Attributes::create(['class' => 'state-text']), 'OK')
);
}

Expand Down
7 changes: 5 additions & 2 deletions library/Icingadb/Widget/ObjectsStateBadges.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,19 +6,22 @@

use Icinga\Module\Icingadb\Common\StateBadges;

/**
* State badges for the objects
*/
class ObjectsStateBadges extends StateBadges
{
protected function getType(): string
{
return 'redundancy_group_objects';
return 'objects';
}

protected function getPrefix(): string
{
return 'objects';
}

protected function assemble()
protected function assemble(): void
{
$this->addAttributes(['class' => 'objects-state-badges']);

Expand Down
3 changes: 3 additions & 0 deletions library/Icingadb/Widget/ObjectsStatistics.php
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,9 @@
use ipl\Html\ValidHtml;
use ipl\Html\HtmlString;

/**
* Objects statistics
*/
class ObjectsStatistics extends ObjectStatistics
{
protected $summary;
Expand Down
2 changes: 1 addition & 1 deletion public/css/list/redundancy-group-list-item.less
Original file line number Diff line number Diff line change
Expand Up @@ -22,4 +22,4 @@
.state-problem {
background-color: @state-critical;
}
}
}

0 comments on commit 01bf509

Please sign in to comment.