mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-15 19:32:40 +01:00
b6d745b666
Summary: All classes should extend from some other class. See D13275 for some explanation. Test Plan: `arc unit` Reviewers: epriestley, #blessed_reviewers Reviewed By: epriestley, #blessed_reviewers Subscribers: epriestley, Korvin Differential Revision: https://secure.phabricator.com/D13283
137 lines
3.7 KiB
PHP
137 lines
3.7 KiB
PHP
<?php
|
|
|
|
final class DifferentialChangesetFileTreeSideNavBuilder extends Phobject {
|
|
|
|
private $title;
|
|
private $baseURI;
|
|
private $anchorName;
|
|
private $collapsed = false;
|
|
|
|
public function setAnchorName($anchor_name) {
|
|
$this->anchorName = $anchor_name;
|
|
return $this;
|
|
}
|
|
public function getAnchorName() {
|
|
return $this->anchorName;
|
|
}
|
|
|
|
public function setBaseURI(PhutilURI $base_uri) {
|
|
$this->baseURI = $base_uri;
|
|
return $this;
|
|
}
|
|
public function getBaseURI() {
|
|
return $this->baseURI;
|
|
}
|
|
|
|
public function setTitle($title) {
|
|
$this->title = $title;
|
|
return $this;
|
|
}
|
|
public function getTitle() {
|
|
return $this->title;
|
|
}
|
|
|
|
public function setCollapsed($collapsed) {
|
|
$this->collapsed = $collapsed;
|
|
return $this;
|
|
}
|
|
|
|
public function build(array $changesets) {
|
|
assert_instances_of($changesets, 'DifferentialChangeset');
|
|
|
|
$nav = new AphrontSideNavFilterView();
|
|
$nav->setBaseURI($this->getBaseURI());
|
|
$nav->setFlexible(true);
|
|
$nav->setCollapsed($this->collapsed);
|
|
|
|
$anchor = $this->getAnchorName();
|
|
|
|
$tree = new PhutilFileTree();
|
|
foreach ($changesets as $changeset) {
|
|
try {
|
|
$tree->addPath($changeset->getFilename(), $changeset);
|
|
} catch (Exception $ex) {
|
|
// TODO: See T1702. When viewing the versus diff of diffs, we may
|
|
// have files with the same filename. For example, if you have a setup
|
|
// like this in SVN:
|
|
//
|
|
// a/
|
|
// README
|
|
// b/
|
|
// README
|
|
//
|
|
// ...and you run "arc diff" once from a/, and again from b/, you'll
|
|
// get two diffs with path README. However, in the versus diff view we
|
|
// will compute their absolute repository paths and detect that they
|
|
// aren't really the same file. This is correct, but causes us to
|
|
// throw when inserting them.
|
|
//
|
|
// We should probably compute the smallest unique path for each file
|
|
// and show these as "a/README" and "b/README" when diffed against
|
|
// one another. However, we get this wrong in a lot of places (the
|
|
// other TOC shows two "README" files, and we generate the same anchor
|
|
// hash for both) so I'm just stopping the bleeding until we can get
|
|
// a proper fix in place.
|
|
}
|
|
}
|
|
|
|
require_celerity_resource('phabricator-filetree-view-css');
|
|
|
|
$filetree = array();
|
|
|
|
$path = $tree;
|
|
while (($path = $path->getNextNode())) {
|
|
$data = $path->getData();
|
|
|
|
$name = $path->getName();
|
|
$style = 'padding-left: '.(2 + (3 * $path->getDepth())).'px';
|
|
|
|
$href = null;
|
|
if ($data) {
|
|
$href = '#'.$data->getAnchorName();
|
|
$title = $name;
|
|
$icon = id(new PHUIIconView())
|
|
->setIconFont('fa-file-text-o bluetext');
|
|
} else {
|
|
$name .= '/';
|
|
$title = $path->getFullPath().'/';
|
|
$icon = id(new PHUIIconView())
|
|
->setIconFont('fa-folder-open blue');
|
|
}
|
|
|
|
$name_element = phutil_tag(
|
|
'span',
|
|
array(
|
|
'class' => 'phabricator-filetree-name',
|
|
),
|
|
$name);
|
|
|
|
$filetree[] = javelin_tag(
|
|
$href ? 'a' : 'span',
|
|
array(
|
|
'href' => $href,
|
|
'style' => $style,
|
|
'title' => $title,
|
|
'class' => 'phabricator-filetree-item',
|
|
),
|
|
array($icon, $name_element));
|
|
}
|
|
$tree->destroy();
|
|
|
|
$filetree = phutil_tag(
|
|
'div',
|
|
array(
|
|
'class' => 'phabricator-filetree',
|
|
),
|
|
$filetree);
|
|
|
|
Javelin::initBehavior('phabricator-file-tree', array());
|
|
|
|
$nav->addLabel(pht('Changed Files'));
|
|
$nav->addCustomBlock($filetree);
|
|
$nav->setActive(true);
|
|
$nav->selectFilter(null);
|
|
return $nav;
|
|
}
|
|
|
|
}
|