mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-15 19:32:40 +01:00
148a50e48b
Summary: First pass at converting Differential, I likely have some buggy-poos but thought I'd toss this up now in case very bad bugs present. To do: - Need to put status back on Hovercards - "Diff Detail" probably needs a better design Test Plan: Looking at lots of diffs, admittedly I dont have harbormaster, etc, running locally. Checked Diffusion for Table of Content changes on small and large commits. Reviewers: epriestley Reviewed By: epriestley Subscribers: Korvin Differential Revision: https://secure.phabricator.com/D15463
154 lines
3.7 KiB
PHP
154 lines
3.7 KiB
PHP
<?php
|
|
|
|
final class DifferentialLocalCommitsView extends AphrontView {
|
|
|
|
private $localCommits;
|
|
private $commitsForLinks = array();
|
|
|
|
public function setLocalCommits($local_commits) {
|
|
$this->localCommits = $local_commits;
|
|
return $this;
|
|
}
|
|
|
|
public function setCommitsForLinks(array $commits) {
|
|
assert_instances_of($commits, 'PhabricatorRepositoryCommit');
|
|
$this->commitsForLinks = $commits;
|
|
return $this;
|
|
}
|
|
|
|
public function render() {
|
|
$viewer = $this->getViewer();
|
|
|
|
$local = $this->localCommits;
|
|
if (!$local) {
|
|
return null;
|
|
}
|
|
|
|
$has_tree = false;
|
|
$has_local = false;
|
|
|
|
foreach ($local as $commit) {
|
|
if (idx($commit, 'tree')) {
|
|
$has_tree = true;
|
|
}
|
|
if (idx($commit, 'local')) {
|
|
$has_local = true;
|
|
}
|
|
}
|
|
|
|
$rows = array();
|
|
foreach ($local as $commit) {
|
|
$row = array();
|
|
if (idx($commit, 'commit')) {
|
|
$commit_link = $this->buildCommitLink($commit['commit']);
|
|
} else if (isset($commit['rev'])) {
|
|
$commit_link = $this->buildCommitLink($commit['rev']);
|
|
} else {
|
|
$commit_link = null;
|
|
}
|
|
$row[] = $commit_link;
|
|
|
|
if ($has_tree) {
|
|
$row[] = $this->buildCommitLink($commit['tree']);
|
|
}
|
|
|
|
if ($has_local) {
|
|
$row[] = $this->buildCommitLink($commit['local']);
|
|
}
|
|
|
|
$parents = idx($commit, 'parents', array());
|
|
foreach ($parents as $k => $parent) {
|
|
if (is_array($parent)) {
|
|
$parent = idx($parent, 'rev');
|
|
}
|
|
$parents[$k] = $this->buildCommitLink($parent);
|
|
}
|
|
$parents = phutil_implode_html(phutil_tag('br'), $parents);
|
|
$row[] = $parents;
|
|
|
|
$author = nonempty(
|
|
idx($commit, 'user'),
|
|
idx($commit, 'author'));
|
|
$row[] = $author;
|
|
|
|
$message = idx($commit, 'message');
|
|
|
|
$summary = idx($commit, 'summary');
|
|
$summary = id(new PhutilUTF8StringTruncator())
|
|
->setMaximumGlyphs(80)
|
|
->truncateString($summary);
|
|
|
|
$view = new AphrontMoreView();
|
|
$view->setSome($summary);
|
|
|
|
if ($message && (trim($summary) != trim($message))) {
|
|
$view->setMore(phutil_escape_html_newlines($message));
|
|
}
|
|
|
|
$row[] = $view->render();
|
|
|
|
$date = nonempty(
|
|
idx($commit, 'date'),
|
|
idx($commit, 'time'));
|
|
if ($date) {
|
|
$date = phabricator_datetime($date, $viewer);
|
|
}
|
|
$row[] = $date;
|
|
|
|
$rows[] = $row;
|
|
}
|
|
|
|
$column_classes = array('');
|
|
if ($has_tree) {
|
|
$column_classes[] = '';
|
|
}
|
|
if ($has_local) {
|
|
$column_classes[] = '';
|
|
}
|
|
$column_classes[] = '';
|
|
$column_classes[] = '';
|
|
$column_classes[] = 'wide';
|
|
$column_classes[] = 'date';
|
|
$table = id(new AphrontTableView($rows))
|
|
->setColumnClasses($column_classes);
|
|
$headers = array();
|
|
$headers[] = pht('Commit');
|
|
if ($has_tree) {
|
|
$headers[] = pht('Tree');
|
|
}
|
|
if ($has_local) {
|
|
$headers[] = pht('Local');
|
|
}
|
|
$headers[] = pht('Parents');
|
|
$headers[] = pht('Author');
|
|
$headers[] = pht('Summary');
|
|
$headers[] = pht('Date');
|
|
$table->setHeaders($headers);
|
|
|
|
return id(new PHUIObjectBoxView())
|
|
->setHeaderText(pht('Local Commits'))
|
|
->setBackground(PHUIObjectBoxView::BLUE_PROPERTY)
|
|
->setTable($table);
|
|
}
|
|
|
|
private static function formatCommit($commit) {
|
|
return substr($commit, 0, 12);
|
|
}
|
|
|
|
private function buildCommitLink($hash) {
|
|
$commit_for_link = idx($this->commitsForLinks, $hash);
|
|
$commit_hash = self::formatCommit($hash);
|
|
if ($commit_for_link) {
|
|
$link = phutil_tag(
|
|
'a',
|
|
array(
|
|
'href' => $commit_for_link->getURI(),
|
|
),
|
|
$commit_hash);
|
|
} else {
|
|
$link = $commit_hash;
|
|
}
|
|
return $link;
|
|
}
|
|
|
|
}
|