mirror of
https://we.phorge.it/source/phorge.git
synced 2025-01-24 21:48:21 +01:00
60d1762a85
Summary: Ref T11132, significantly cleans up the Config app, new layout, icons, spacing, etc. Some minor todos around re-designing "issues", mobile support, and maybe another pass at actual Group pages. Test Plan: Visit and test every page in the config app, set new items, resolve setup issues, etc. Reviewers: epriestley Reviewed By: epriestley Subscribers: PHID-OPKG-gm6ozazyms6q6i22gyam, Korvin Maniphest Tasks: T11132 Differential Revision: https://secure.phabricator.com/D16468
68 lines
1.9 KiB
PHP
68 lines
1.9 KiB
PHP
<?php
|
|
|
|
final class PhabricatorConfigIssueViewController
|
|
extends PhabricatorConfigController {
|
|
|
|
public function handleRequest(AphrontRequest $request) {
|
|
$viewer = $request->getViewer();
|
|
$issue_key = $request->getURIData('key');
|
|
|
|
$issues = PhabricatorSetupCheck::runAllChecks();
|
|
PhabricatorSetupCheck::setOpenSetupIssueKeys(
|
|
PhabricatorSetupCheck::getUnignoredIssueKeys($issues),
|
|
$update_database = true);
|
|
|
|
$nav = $this->buildSideNavView();
|
|
$nav->selectFilter('issue/');
|
|
|
|
if (empty($issues[$issue_key])) {
|
|
$content = id(new PHUIInfoView())
|
|
->setSeverity(PHUIInfoView::SEVERITY_NOTICE)
|
|
->setTitle(pht('Issue Resolved'))
|
|
->appendChild(pht('This setup issue has been resolved. '))
|
|
->appendChild(
|
|
phutil_tag(
|
|
'a',
|
|
array(
|
|
'href' => $this->getApplicationURI('issue/'),
|
|
),
|
|
pht('Return to Open Issue List')));
|
|
$title = pht('Resolved Issue');
|
|
} else {
|
|
$issue = $issues[$issue_key];
|
|
$content = $this->renderIssue($issue);
|
|
$title = $issue->getShortName();
|
|
}
|
|
|
|
$crumbs = $this
|
|
->buildApplicationCrumbs()
|
|
->setBorder(true)
|
|
->addTextCrumb(pht('Setup Issues'), $this->getApplicationURI('issue/'))
|
|
->addTextCrumb($title, $request->getRequestURI())
|
|
->setBorder(true);
|
|
|
|
return $this->newPage()
|
|
->setTitle($title)
|
|
->setCrumbs($crumbs)
|
|
->setNavigation($nav)
|
|
->appendChild($content)
|
|
->addClass('white-background');
|
|
}
|
|
|
|
private function renderIssue(PhabricatorSetupIssue $issue) {
|
|
require_celerity_resource('setup-issue-css');
|
|
|
|
$view = new PhabricatorSetupIssueView();
|
|
$view->setIssue($issue);
|
|
|
|
$container = phutil_tag(
|
|
'div',
|
|
array(
|
|
'class' => 'setup-issue-background',
|
|
),
|
|
$view->render());
|
|
|
|
return $container;
|
|
}
|
|
|
|
}
|