mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-15 19:32:40 +01:00
97c690fc0f
Summary: This builds out and implements PHUIPropertyListView (container) and PHUIPropertyListItemView (section) as well as adding tabs. Test Plan: Tested each page I edited with the exception of Releeph and Phortune, though those changes look ok to me diff wise. Updated examples page with tabs. Reviewers: epriestley, btrahan Reviewed By: epriestley CC: Korvin, epriestley, aran Differential Revision: https://secure.phabricator.com/D7283
107 lines
2.9 KiB
PHP
107 lines
2.9 KiB
PHP
<?php
|
|
|
|
final class DiffusionBrowseDirectoryController
|
|
extends DiffusionBrowseController {
|
|
|
|
private $browseQueryResults;
|
|
|
|
public function setBrowseQueryResults(DiffusionBrowseResultSet $results) {
|
|
$this->browseQueryResults = $results;
|
|
return $this;
|
|
}
|
|
|
|
public function getBrowseQueryResults() {
|
|
return $this->browseQueryResults;
|
|
}
|
|
|
|
public function processRequest() {
|
|
$drequest = $this->diffusionRequest;
|
|
|
|
$results = $this->getBrowseQueryResults();
|
|
$reason = $results->getReasonForEmptyResultSet();
|
|
|
|
$content = array();
|
|
$actions = $this->buildActionView($drequest);
|
|
$properties = $this->buildPropertyView($drequest, $actions);
|
|
|
|
$object_box = id(new PHUIObjectBoxView())
|
|
->setHeader($this->buildHeaderView($drequest))
|
|
->addPropertyList($properties);
|
|
|
|
$content[] = $object_box;
|
|
$content[] = $this->renderSearchForm($collapsed = true);
|
|
|
|
if (!$results->isValidResults()) {
|
|
$empty_result = new DiffusionEmptyResultView();
|
|
$empty_result->setDiffusionRequest($drequest);
|
|
$empty_result->setDiffusionBrowseResultSet($results);
|
|
$empty_result->setView($this->getRequest()->getStr('view'));
|
|
$content[] = $empty_result;
|
|
} else {
|
|
$phids = array();
|
|
foreach ($results->getPaths() as $result) {
|
|
$data = $result->getLastCommitData();
|
|
if ($data) {
|
|
if ($data->getCommitDetail('authorPHID')) {
|
|
$phids[$data->getCommitDetail('authorPHID')] = true;
|
|
}
|
|
}
|
|
}
|
|
|
|
$phids = array_keys($phids);
|
|
$handles = $this->loadViewerHandles($phids);
|
|
|
|
$browse_table = new DiffusionBrowseTableView();
|
|
$browse_table->setDiffusionRequest($drequest);
|
|
$browse_table->setHandles($handles);
|
|
$browse_table->setPaths($results->getPaths());
|
|
$browse_table->setUser($this->getRequest()->getUser());
|
|
|
|
$browse_panel = new AphrontPanelView();
|
|
$browse_panel->appendChild($browse_table);
|
|
$browse_panel->setNoBackground();
|
|
|
|
$content[] = $browse_panel;
|
|
}
|
|
|
|
$content[] = $this->buildOpenRevisions();
|
|
|
|
$readme = $this->callConduitWithDiffusionRequest(
|
|
'diffusion.readmequery',
|
|
array(
|
|
'paths' => $results->getPathDicts(),
|
|
));
|
|
if ($readme) {
|
|
$box = new PHUIBoxView();
|
|
$box->appendChild($readme);
|
|
$box->addPadding(PHUI::PADDING_LARGE);
|
|
|
|
$object_box = id(new PHUIObjectBoxView())
|
|
->setHeaderText(pht('README'))
|
|
->appendChild($box);
|
|
|
|
$content[] = $object_box;
|
|
}
|
|
|
|
$crumbs = $this->buildCrumbs(
|
|
array(
|
|
'branch' => true,
|
|
'path' => true,
|
|
'view' => 'browse',
|
|
));
|
|
|
|
return $this->buildApplicationPage(
|
|
array(
|
|
$crumbs,
|
|
$content,
|
|
),
|
|
array(
|
|
'device' => true,
|
|
'title' => array(
|
|
nonempty(basename($drequest->getPath()), '/'),
|
|
$drequest->getRepository()->getCallsign().' Repository',
|
|
),
|
|
));
|
|
}
|
|
|
|
}
|