mirror of
https://we.phorge.it/source/phorge.git
synced 2025-04-06 09:28:25 +02:00
Summary: This diff covers a bit of ground. - PHUIDocumentExample has been added - PHUIDocument has been extended with new features - PhabricatorMenuView is now PHUIListView - PhabricatorMenuItemView is now PHUIItemListView Overall - I think I've gotten all the edges covered here. There is some derpi-ness that we can talk about, comments in the code. Responsive design is missing from the new features on PHUIDocument, will follow up later. Test Plan: Tested mobile and desktop menus, old phriction layout, new document views, new lists, and object lists. Reviewers: epriestley, btrahan Reviewed By: epriestley CC: aran, Korvin Differential Revision: https://secure.phabricator.com/D6130
94 lines
2.7 KiB
PHP
94 lines
2.7 KiB
PHP
<?php
|
|
|
|
final class ReleephBranchViewController extends ReleephController {
|
|
|
|
public function processRequest() {
|
|
$request = $this->getRequest();
|
|
|
|
$releeph_branch = $this->getReleephBranch();
|
|
$releeph_project = $this->getReleephProject();
|
|
$all_releeph_requests = $releeph_branch->loadReleephRequests(
|
|
$request->getUser());
|
|
|
|
$selector = $releeph_project->getReleephFieldSelector();
|
|
$fields = $selector->arrangeFieldsForSelectForm(
|
|
$selector->getFieldSpecifications());
|
|
|
|
$form = id(new AphrontFormView())
|
|
->setMethod('GET')
|
|
->setUser($request->getUser());
|
|
|
|
$filtered_releeph_requests = $all_releeph_requests;
|
|
foreach ($fields as $field) {
|
|
$all_releeph_requests_without_this_field = $all_releeph_requests;
|
|
foreach ($fields as $other_field) {
|
|
if ($other_field != $field) {
|
|
$other_field->selectReleephRequestsHook(
|
|
$request,
|
|
$all_releeph_requests_without_this_field);
|
|
|
|
}
|
|
}
|
|
|
|
$field->appendSelectControlsHook(
|
|
$form,
|
|
$request,
|
|
$all_releeph_requests,
|
|
$all_releeph_requests_without_this_field);
|
|
|
|
$field->selectReleephRequestsHook(
|
|
$request,
|
|
$filtered_releeph_requests);
|
|
}
|
|
|
|
$form->appendChild(
|
|
id(new AphrontFormSubmitControl())
|
|
->setValue(pht('Filter')));
|
|
|
|
$list = id(new ReleephRequestHeaderListView())
|
|
->setOriginType('branch')
|
|
->setUser($request->getUser())
|
|
->setAphrontRequest($this->getRequest())
|
|
->setReleephProject($releeph_project)
|
|
->setReleephBranch($releeph_branch)
|
|
->setReleephRequests($filtered_releeph_requests);
|
|
|
|
$filter = id(new AphrontListFilterView())
|
|
->appendChild($form);
|
|
|
|
$crumbs = $this->buildApplicationCrumbs()
|
|
->addCrumb(
|
|
id(new PhabricatorCrumbView())
|
|
->setName($releeph_project->getName())
|
|
->setHref($releeph_project->getURI()))
|
|
->addCrumb(
|
|
id(new PhabricatorCrumbView())
|
|
->setName($releeph_branch->getDisplayNameWithDetail())
|
|
->setHref($releeph_branch->getURI()));
|
|
|
|
// Don't show the request button for inactive (closed) branches
|
|
if ($releeph_branch->isActive()) {
|
|
$create_uri = $releeph_branch->getURI('request/');
|
|
$crumbs->addAction(
|
|
id(new PHUIListItemView())
|
|
->setHref($create_uri)
|
|
->setName(pht('Request Pick'))
|
|
->setIcon('create'));
|
|
}
|
|
|
|
return $this->buildStandardPageResponse(
|
|
array(
|
|
$crumbs,
|
|
$filter,
|
|
$list
|
|
),
|
|
array(
|
|
'title' =>
|
|
$releeph_project->getName().
|
|
' - '.
|
|
$releeph_branch->getDisplayName().
|
|
' requests'
|
|
));
|
|
}
|
|
|
|
}
|