mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-28 17:52:43 +01:00
45ae9cf340
Summary: Ref T7014, laying the groundwork for redesigning crumbs. Test Plan: Tested numberous pages, grep'd locations. Reviewers: btrahan, epriestley Reviewed By: epriestley Subscribers: Korvin, epriestley Maniphest Tasks: T7014 Differential Revision: https://secure.phabricator.com/D11478
94 lines
2.6 KiB
PHP
94 lines
2.6 KiB
PHP
<?php
|
|
|
|
abstract class PhrictionController extends PhabricatorController {
|
|
|
|
public function buildSideNavView($for_app = false) {
|
|
$user = $this->getRequest()->getUser();
|
|
|
|
$nav = new AphrontSideNavFilterView();
|
|
$nav->setBaseURI(new PhutilURI($this->getApplicationURI()));
|
|
|
|
if ($for_app) {
|
|
$nav->addFilter('create', pht('New Document'));
|
|
$nav->addFilter('/phriction/', pht('Index'));
|
|
}
|
|
|
|
id(new PhrictionSearchEngine())
|
|
->setViewer($user)
|
|
->addNavigationItems($nav->getMenu());
|
|
|
|
$nav->selectFilter(null);
|
|
|
|
return $nav;
|
|
}
|
|
|
|
public function buildApplicationMenu() {
|
|
return $this->buildSideNavView(true)->getMenu();
|
|
}
|
|
|
|
protected function buildApplicationCrumbs() {
|
|
$crumbs = parent::buildApplicationCrumbs();
|
|
|
|
if (get_class($this) != 'PhrictionListController') {
|
|
$crumbs->addAction(
|
|
id(new PHUIListItemView())
|
|
->setName(pht('Index'))
|
|
->setHref('/phriction/')
|
|
->setIcon('fa-home'));
|
|
}
|
|
|
|
$crumbs->addAction(
|
|
id(new PHUIListItemView())
|
|
->setName(pht('New Document'))
|
|
->setHref('/phriction/new/?slug='.$this->getDocumentSlug())
|
|
->setWorkflow(true)
|
|
->setIcon('fa-plus-square'));
|
|
|
|
return $crumbs;
|
|
}
|
|
|
|
public function renderBreadcrumbs($slug) {
|
|
$ancestor_handles = array();
|
|
$ancestral_slugs = PhabricatorSlug::getAncestry($slug);
|
|
$ancestral_slugs[] = $slug;
|
|
if ($ancestral_slugs) {
|
|
$empty_slugs = array_fill_keys($ancestral_slugs, null);
|
|
$ancestors = id(new PhrictionDocumentQuery())
|
|
->setViewer($this->getRequest()->getUser())
|
|
->withSlugs($ancestral_slugs)
|
|
->execute();
|
|
$ancestors = mpull($ancestors, null, 'getSlug');
|
|
|
|
$ancestor_phids = mpull($ancestors, 'getPHID');
|
|
$handles = array();
|
|
if ($ancestor_phids) {
|
|
$handles = $this->loadViewerHandles($ancestor_phids);
|
|
}
|
|
|
|
$ancestor_handles = array();
|
|
foreach ($ancestral_slugs as $slug) {
|
|
if (isset($ancestors[$slug])) {
|
|
$ancestor_handles[] = $handles[$ancestors[$slug]->getPHID()];
|
|
} else {
|
|
$handle = new PhabricatorObjectHandle();
|
|
$handle->setName(PhabricatorSlug::getDefaultTitle($slug));
|
|
$handle->setURI(PhrictionDocument::getSlugURI($slug));
|
|
$ancestor_handles[] = $handle;
|
|
}
|
|
}
|
|
}
|
|
|
|
$breadcrumbs = array();
|
|
foreach ($ancestor_handles as $ancestor_handle) {
|
|
$breadcrumbs[] = id(new PHUICrumbView())
|
|
->setName($ancestor_handle->getName())
|
|
->setHref($ancestor_handle->getUri());
|
|
}
|
|
return $breadcrumbs;
|
|
}
|
|
|
|
protected function getDocumentSlug() {
|
|
return '';
|
|
}
|
|
|
|
}
|