mirror of
https://we.phorge.it/source/phorge.git
synced 2024-12-11 08:06:13 +01:00
fdf001739c
Summary: Run through all the pages in projects and make sure they all feel similar. Adds back curtain on board manage page, even though it is sad for only having a single action. Test Plan: Test all pages on a project for consistency in UI. Reviewers: epriestley Reviewed By: epriestley Subscribers: Korvin Differential Revision: https://secure.phabricator.com/D17909
111 lines
2.9 KiB
PHP
111 lines
2.9 KiB
PHP
<?php
|
|
|
|
final class PhabricatorProjectColumnDetailController
|
|
extends PhabricatorProjectBoardController {
|
|
|
|
public function handleRequest(AphrontRequest $request) {
|
|
$viewer = $request->getViewer();
|
|
$id = $request->getURIData('id');
|
|
$project_id = $request->getURIData('projectID');
|
|
|
|
$project = id(new PhabricatorProjectQuery())
|
|
->setViewer($viewer)
|
|
->requireCapabilities(
|
|
array(
|
|
PhabricatorPolicyCapability::CAN_VIEW,
|
|
))
|
|
->withIDs(array($project_id))
|
|
->needImages(true)
|
|
->executeOne();
|
|
if (!$project) {
|
|
return new Aphront404Response();
|
|
}
|
|
$this->setProject($project);
|
|
|
|
$project_id = $project->getID();
|
|
|
|
$column = id(new PhabricatorProjectColumnQuery())
|
|
->setViewer($viewer)
|
|
->withIDs(array($id))
|
|
->requireCapabilities(
|
|
array(
|
|
PhabricatorPolicyCapability::CAN_VIEW,
|
|
))
|
|
->executeOne();
|
|
if (!$column) {
|
|
return new Aphront404Response();
|
|
}
|
|
|
|
$timeline = $this->buildTransactionTimeline(
|
|
$column,
|
|
new PhabricatorProjectColumnTransactionQuery());
|
|
$timeline->setShouldTerminate(true);
|
|
|
|
$title = $column->getDisplayName();
|
|
|
|
$header = $this->buildHeaderView($column);
|
|
$properties = $this->buildPropertyView($column);
|
|
|
|
$crumbs = $this->buildApplicationCrumbs();
|
|
$crumbs->addTextCrumb(pht('Workboard'), "/project/board/{$project_id}/");
|
|
$crumbs->addTextCrumb(pht('Column: %s', $title));
|
|
$crumbs->setBorder(true);
|
|
|
|
$nav = $this->getProfileMenu();
|
|
require_celerity_resource('project-view-css');
|
|
|
|
$view = id(new PHUITwoColumnView())
|
|
->setHeader($header)
|
|
->addClass('project-view-home')
|
|
->addClass('project-view-people-home')
|
|
->setMainColumn(array(
|
|
$properties,
|
|
$timeline,
|
|
));
|
|
|
|
return $this->newPage()
|
|
->setTitle($title)
|
|
->setNavigation($nav)
|
|
->setCrumbs($crumbs)
|
|
->appendChild($view);
|
|
}
|
|
|
|
private function buildHeaderView(PhabricatorProjectColumn $column) {
|
|
$viewer = $this->getViewer();
|
|
|
|
$header = id(new PHUIHeaderView())
|
|
->setHeader(pht('Column: %s', $column->getDisplayName()))
|
|
->setUser($viewer);
|
|
|
|
if ($column->isHidden()) {
|
|
$header->setStatus('fa-ban', 'dark', pht('Hidden'));
|
|
}
|
|
|
|
return $header;
|
|
}
|
|
|
|
private function buildPropertyView(
|
|
PhabricatorProjectColumn $column) {
|
|
$viewer = $this->getViewer();
|
|
|
|
$properties = id(new PHUIPropertyListView())
|
|
->setUser($viewer)
|
|
->setObject($column);
|
|
|
|
$limit = $column->getPointLimit();
|
|
if ($limit === null) {
|
|
$limit_text = pht('No Limit');
|
|
} else {
|
|
$limit_text = $limit;
|
|
}
|
|
$properties->addProperty(pht('Point Limit'), $limit_text);
|
|
|
|
$box = id(new PHUIObjectBoxView())
|
|
->setHeaderText(pht('Details'))
|
|
->setBackground(PHUIObjectBoxView::BLUE_PROPERTY)
|
|
->appendChild($properties);
|
|
|
|
return $box;
|
|
}
|
|
|
|
}
|