mirror of
https://we.phorge.it/source/phorge.git
synced 2025-01-29 16:08:22 +01:00
Convert Applications to two column view
Summary: Converts the meta applications application view layout to two column Test Plan: click through "Configure" on each application, set up some emails. uninstall Phrequent Reviewers: epriestley Reviewed By: epriestley Subscribers: Korvin Differential Revision: https://secure.phabricator.com/D15405
This commit is contained in:
parent
f6127f5835
commit
010b7811b4
1 changed files with 45 additions and 25 deletions
|
@ -24,11 +24,13 @@ final class PhabricatorApplicationDetailViewController
|
|||
|
||||
$crumbs = $this->buildApplicationCrumbs();
|
||||
$crumbs->addTextCrumb($selected->getName());
|
||||
$crumbs->setBorder(true);
|
||||
|
||||
$header = id(new PHUIHeaderView())
|
||||
->setHeader($title)
|
||||
->setUser($viewer)
|
||||
->setPolicyObject($selected);
|
||||
->setPolicyObject($selected)
|
||||
->setHeaderIcon($selected->getIcon());
|
||||
|
||||
if ($selected->isInstalled()) {
|
||||
$header->setStatus('fa-check', 'bluegrey', pht('Installed'));
|
||||
|
@ -37,11 +39,8 @@ final class PhabricatorApplicationDetailViewController
|
|||
}
|
||||
|
||||
$actions = $this->buildActionView($viewer, $selected);
|
||||
$properties = $this->buildPropertyView($selected, $actions);
|
||||
|
||||
$object_box = id(new PHUIObjectBoxView())
|
||||
->setHeader($header)
|
||||
->addPropertyList($properties);
|
||||
$details = $this->buildPropertySectionView($selected);
|
||||
$policies = $this->buildPolicyView($selected);
|
||||
|
||||
$configs =
|
||||
PhabricatorApplicationConfigurationPanel::loadAllPanelsForApplication(
|
||||
|
@ -51,29 +50,35 @@ final class PhabricatorApplicationDetailViewController
|
|||
foreach ($configs as $config) {
|
||||
$config->setViewer($viewer);
|
||||
$config->setApplication($selected);
|
||||
$panel = $config->buildConfigurationPagePanel();
|
||||
$panel->setBackground(PHUIObjectBoxView::BLUE_PROPERTY);
|
||||
$panels[] = $panel;
|
||||
|
||||
$panels[] = $config->buildConfigurationPagePanel();
|
||||
}
|
||||
|
||||
return $this->buildApplicationPage(
|
||||
array(
|
||||
$crumbs,
|
||||
$object_box,
|
||||
$panels,
|
||||
),
|
||||
array(
|
||||
'title' => $title,
|
||||
$view = id(new PHUITwoColumnView())
|
||||
->setHeader($header)
|
||||
->setMainColumn(array(
|
||||
$policies,
|
||||
$panels,
|
||||
))
|
||||
->addPropertySection(pht('DETAILS'), $details)
|
||||
->setActionList($actions);
|
||||
|
||||
return $this->newPage()
|
||||
->setTitle($title)
|
||||
->setCrumbs($crumbs)
|
||||
->appendChild(
|
||||
array(
|
||||
$view,
|
||||
));
|
||||
}
|
||||
|
||||
private function buildPropertyView(
|
||||
PhabricatorApplication $application,
|
||||
PhabricatorActionListView $actions) {
|
||||
|
||||
$viewer = $this->getRequest()->getUser();
|
||||
private function buildPropertySectionView(
|
||||
PhabricatorApplication $application) {
|
||||
|
||||
$viewer = $this->getViewer();
|
||||
$properties = id(new PHUIPropertyListView());
|
||||
$properties->setActionList($actions);
|
||||
|
||||
$properties->addProperty(
|
||||
pht('Description'),
|
||||
|
@ -111,20 +116,35 @@ final class PhabricatorApplicationDetailViewController
|
|||
$properties->addTextContent($overview);
|
||||
}
|
||||
|
||||
return $properties;
|
||||
}
|
||||
|
||||
private function buildPolicyView(
|
||||
PhabricatorApplication $application) {
|
||||
|
||||
$viewer = $this->getViewer();
|
||||
$properties = id(new PHUIPropertyListView())
|
||||
->setStacked(true);
|
||||
|
||||
$header = id(new PHUIHeaderView())
|
||||
->setHeader(pht('POLICIES'))
|
||||
->setHeaderIcon('fa-lock');
|
||||
|
||||
$descriptions = PhabricatorPolicyQuery::renderPolicyDescriptions(
|
||||
$viewer,
|
||||
$application);
|
||||
|
||||
$properties->addSectionHeader(
|
||||
pht('Policies'), 'fa-lock');
|
||||
|
||||
foreach ($application->getCapabilities() as $capability) {
|
||||
$properties->addProperty(
|
||||
$application->getCapabilityLabel($capability),
|
||||
idx($descriptions, $capability));
|
||||
}
|
||||
|
||||
return $properties;
|
||||
return id(new PHUIObjectBoxView())
|
||||
->setHeader($header)
|
||||
->setBackground(PHUIObjectBoxView::BLUE_PROPERTY)
|
||||
->appendChild($properties);
|
||||
|
||||
}
|
||||
|
||||
private function buildActionView(
|
||||
|
|
Loading…
Add table
Reference in a new issue