mirror of
https://we.phorge.it/source/phorge.git
synced 2024-12-01 03:02:43 +01:00
cdcfbb69a0
Summary: Updates the review status list to align better inside property lists. Alsu uses the default colors a bit more. This removes an overflow hidden on the value side, but that shouldnt cause any issues, given it has plenty of space. Test Plan: tested differential and audit, highlighted and not. Reviewers: epriestley Reviewed By: epriestley CC: Korvin, epriestley, aran Differential Revision: https://secure.phabricator.com/D7441
102 lines
2.6 KiB
PHP
102 lines
2.6 KiB
PHP
<?php
|
|
|
|
final class DifferentialReviewersView extends AphrontView {
|
|
|
|
private $reviewers;
|
|
private $handles;
|
|
private $diff;
|
|
|
|
public function setReviewers(array $reviewers) {
|
|
assert_instances_of($reviewers, 'DifferentialReviewer');
|
|
$this->reviewers = $reviewers;
|
|
return $this;
|
|
}
|
|
|
|
public function setHandles(array $handles) {
|
|
assert_instances_of($handles, 'PhabricatorObjectHandle');
|
|
$this->handles = $handles;
|
|
return $this;
|
|
}
|
|
|
|
public function setActiveDiff(DifferentialDiff $diff) {
|
|
$this->diff = $diff;
|
|
return $this;
|
|
}
|
|
|
|
public function render() {
|
|
$viewer = $this->getUser();
|
|
|
|
$view = new PHUIStatusListView();
|
|
foreach ($this->reviewers as $reviewer) {
|
|
$phid = $reviewer->getReviewerPHID();
|
|
$handle = $this->handles[$phid];
|
|
|
|
// If we're missing either the diff or action information for the
|
|
// reviewer, render information as current.
|
|
$is_current = (!$this->diff) ||
|
|
(!$reviewer->getDiffID()) ||
|
|
($this->diff->getID() == $reviewer->getDiffID());
|
|
|
|
$item = new PHUIStatusItemView();
|
|
|
|
$item->setHighlighted($reviewer->hasAuthority($viewer));
|
|
|
|
switch ($reviewer->getStatus()) {
|
|
case DifferentialReviewerStatus::STATUS_ADDED:
|
|
$item->setIcon('open', pht('Review Requested'));
|
|
break;
|
|
|
|
case DifferentialReviewerStatus::STATUS_ACCEPTED:
|
|
if ($is_current) {
|
|
$item->setIcon(
|
|
'accept-green',
|
|
pht('Accepted'));
|
|
} else {
|
|
$item->setIcon(
|
|
'accept-dark',
|
|
pht('Accepted Prior Diff'));
|
|
}
|
|
break;
|
|
|
|
case DifferentialReviewerStatus::STATUS_REJECTED:
|
|
if ($is_current) {
|
|
$item->setIcon(
|
|
'reject-red',
|
|
pht('Requested Changes'));
|
|
} else {
|
|
$item->setIcon(
|
|
'reject-dark',
|
|
pht('Requested Changes to Prior Diff'));
|
|
}
|
|
break;
|
|
|
|
case DifferentialReviewerStatus::STATUS_COMMENTED:
|
|
if ($is_current) {
|
|
$item->setIcon(
|
|
'info',
|
|
pht('Commented'));
|
|
} else {
|
|
$item->setIcon(
|
|
'info-dark',
|
|
pht('Commented Previously'));
|
|
}
|
|
break;
|
|
|
|
case DifferentialReviewerStatus::STATUS_BLOCKING:
|
|
$item->setIcon('minus-red', pht('Blocking Review'));
|
|
break;
|
|
|
|
default:
|
|
$item->setIcon('question', pht('%s?', $reviewer->getStatus()));
|
|
break;
|
|
|
|
}
|
|
|
|
$item->setTarget($handle->renderLink());
|
|
$view->addItem($item);
|
|
}
|
|
|
|
return $view;
|
|
}
|
|
|
|
}
|