mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-29 02:02:41 +01:00
b73622b866
Summary: My claims that this worked on D4183 were incorrect: - Make it work. - Then use it. - Also make cancel URI not cancel to the same page. Test Plan: Clicked "Create Document", got a workflow on-page dialog instead of a page transition. Reviewers: codeblock Reviewed By: codeblock CC: aran Differential Revision: https://secure.phabricator.com/D4403
101 lines
2.9 KiB
PHP
101 lines
2.9 KiB
PHP
<?php
|
|
|
|
/**
|
|
* @group phriction
|
|
*/
|
|
abstract class PhrictionController extends PhabricatorController {
|
|
|
|
public function buildStandardPageResponse($view, array $data) {
|
|
|
|
$page = $this->buildStandardPageView();
|
|
|
|
$page->setApplicationName('Phriction');
|
|
$page->setBaseURI('/w/');
|
|
$page->setTitle(idx($data, 'title'));
|
|
$page->setGlyph("\xE2\x9A\xA1");
|
|
|
|
$page->appendChild($view);
|
|
$page->setSearchDefaultScope(PhabricatorSearchScope::SCOPE_WIKI);
|
|
|
|
$response = new AphrontWebpageResponse();
|
|
return $response->setContent($page->render());
|
|
}
|
|
|
|
public function buildSideNavView($filter = null, $for_app = false) {
|
|
$user = $this->getRequest()->getUser();
|
|
|
|
$nav = new AphrontSideNavFilterView();
|
|
$nav->setBaseURI(new PhutilURI('/phriction/list/'));
|
|
|
|
if ($for_app) {
|
|
$nav->addFilter('', pht('Root Document'), '/w/');
|
|
$nav->addFilter('', pht('Create Document'), '/phriction/new');
|
|
}
|
|
|
|
$nav->addLabel('Filters');
|
|
$nav->addFilter('active', pht('Active Documents'));
|
|
$nav->addFilter('all', pht('All Documents'));
|
|
$nav->addFilter('updates', pht('Recently Updated'));
|
|
|
|
$nav->selectFilter($filter, 'active');
|
|
|
|
return $nav;
|
|
}
|
|
|
|
public function buildApplicationMenu() {
|
|
return $this->buildSideNavView(null, true)->getMenu();
|
|
}
|
|
|
|
public function buildApplicationCrumbs() {
|
|
$crumbs = parent::buildApplicationCrumbs();
|
|
|
|
$crumbs->addAction(
|
|
id(new PhabricatorMenuItemView())
|
|
->setName(pht('Create Document'))
|
|
->setHref('/phriction/new/')
|
|
->setWorkflow(true)
|
|
->setIcon('create'));
|
|
|
|
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 PhrictionDocument())->loadAllWhere(
|
|
'slug IN (%Ls)',
|
|
$ancestral_slugs);
|
|
$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 PhabricatorCrumbView())
|
|
->setName($ancestor_handle->getName())
|
|
->setHref($ancestor_handle->getUri());
|
|
}
|
|
return $breadcrumbs;
|
|
}
|
|
|
|
}
|