mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-11 17:32:41 +01:00
52104a4b54
Summary: I think I've gotten like 95% of Differential now. Some outliers that need rethinking. Test Plan: Bring up a new diff, edit a diff, search and sort diffs. Reviewers: epriestley, btrahan Reviewed By: epriestley CC: aran, Korvin Differential Revision: https://secure.phabricator.com/D4623
112 lines
3.1 KiB
PHP
112 lines
3.1 KiB
PHP
<?php
|
|
|
|
final class DifferentialRevisionDetailView extends AphrontView {
|
|
|
|
private $revision;
|
|
private $actions;
|
|
private $auxiliaryFields = array();
|
|
private $diff;
|
|
|
|
public function setDiff(DifferentialDiff $diff) {
|
|
$this->diff = $diff;
|
|
return $this;
|
|
}
|
|
private function getDiff() {
|
|
return $this->diff;
|
|
}
|
|
|
|
public function setRevision(DifferentialRevision $revision) {
|
|
$this->revision = $revision;
|
|
return $this;
|
|
}
|
|
|
|
public function setActions(array $actions) {
|
|
$this->actions = $actions;
|
|
return $this;
|
|
}
|
|
private function getActions() {
|
|
return $this->actions;
|
|
}
|
|
|
|
public function setAuxiliaryFields(array $fields) {
|
|
assert_instances_of($fields, 'DifferentialFieldSpecification');
|
|
$this->auxiliaryFields = $fields;
|
|
return $this;
|
|
}
|
|
|
|
public function render() {
|
|
|
|
require_celerity_resource('differential-core-view-css');
|
|
|
|
$revision = $this->revision;
|
|
$user = $this->getUser();
|
|
|
|
$header = $this->renderHeader($revision);
|
|
|
|
$actions = id(new PhabricatorActionListView())
|
|
->setUser($user)
|
|
->setObject($revision);
|
|
foreach ($this->getActions() as $action) {
|
|
$obj = id(new PhabricatorActionView())
|
|
->setIcon(idx($action, 'icon', 'edit'))
|
|
->setName($action['name'])
|
|
->setHref(idx($action, 'href'))
|
|
->setWorkflow(idx($action, 'sigil') == 'workflow')
|
|
->setUser($user)
|
|
->setDisabled(idx($action, 'disabled', false));
|
|
$actions->addAction($obj);
|
|
}
|
|
|
|
$properties = new PhabricatorPropertyListView();
|
|
$status = $revision->getStatus();
|
|
$local_vcs = $this->getDiff()->getSourceControlSystem();
|
|
|
|
$next_step = null;
|
|
if ($status == ArcanistDifferentialRevisionStatus::ACCEPTED) {
|
|
switch ($local_vcs) {
|
|
case PhabricatorRepositoryType::REPOSITORY_TYPE_MERCURIAL:
|
|
case PhabricatorRepositoryType::REPOSITORY_TYPE_GIT:
|
|
$next_step = '<tt>arc land</tt>';
|
|
break;
|
|
case PhabricatorRepositoryType::REPOSITORY_TYPE_SVN:
|
|
$next_step = '<tt>arc commit</tt>';
|
|
break;
|
|
}
|
|
}
|
|
if ($next_step) {
|
|
$properties->addProperty(pht('Next Step'), $next_step);
|
|
}
|
|
|
|
foreach ($this->auxiliaryFields as $field) {
|
|
$value = $field->renderValueForRevisionView();
|
|
if (strlen($value)) {
|
|
$label = rtrim($field->renderLabelForRevisionView(), ':');
|
|
$properties->addProperty($label, $value);
|
|
}
|
|
}
|
|
$properties->setHasKeyboardShortcuts(true);
|
|
|
|
return $header->render() . $actions->render() . $properties->render();
|
|
}
|
|
|
|
private function renderHeader(DifferentialRevision $revision) {
|
|
$view = id(new PhabricatorHeaderView())
|
|
->setObjectName('D'.$revision->getID())
|
|
->setHeader($revision->getTitle());
|
|
|
|
$status = $revision->getStatus();
|
|
$status_name =
|
|
ArcanistDifferentialRevisionStatus::getNameForRevisionStatus($status);
|
|
$status_color =
|
|
DifferentialRevisionStatus::getRevisionStatusTagColor($status);
|
|
|
|
$view->addTag(
|
|
id(new PhabricatorTagView())
|
|
->setType(PhabricatorTagView::TYPE_STATE)
|
|
->setName($status_name)
|
|
->setBackgroundColor($status_color)
|
|
);
|
|
|
|
return $view;
|
|
}
|
|
}
|