mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-16 03:42:41 +01:00
70a5ec600d
Summary: Fixes T3579 As a basic overview, this enables the author of a question to open/close a question. Other bits; - Add "Open" filter to the builtin queries - Add "Status" to search form - Refactor ponder constants - Add coloured bars for different question statuses Test Plan: - Open/Close questions - Search for some bits - Use filters Reviewers: epriestley Reviewed By: epriestley CC: aran, Korvin Maniphest Tasks: T3579 Differential Revision: https://secure.phabricator.com/D6590 Conflicts: src/infrastructure/storage/patch/PhabricatorBuiltinPatchList.php
68 lines
1.9 KiB
PHP
68 lines
1.9 KiB
PHP
<?php
|
|
|
|
final class PonderQuestionListController extends PonderController
|
|
implements PhabricatorApplicationSearchResultsControllerInterface {
|
|
|
|
private $queryKey;
|
|
|
|
public function shouldAllowPublic() {
|
|
return true;
|
|
}
|
|
|
|
public function willProcessRequest(array $data) {
|
|
$this->queryKey = idx($data, 'queryKey');
|
|
}
|
|
|
|
public function processRequest() {
|
|
$request = $this->getRequest();
|
|
$controller = id(new PhabricatorApplicationSearchController($request))
|
|
->setQueryKey($this->queryKey)
|
|
->setSearchEngine(new PonderQuestionSearchEngine())
|
|
->setNavigation($this->buildSideNavView());
|
|
|
|
return $this->delegateToController($controller);
|
|
}
|
|
|
|
public function renderResultsList(
|
|
array $questions,
|
|
PhabricatorSavedQuery $query) {
|
|
assert_instances_of($questions, 'PonderQuestion');
|
|
$viewer = $this->getRequest()->getUser();
|
|
|
|
$phids = array();
|
|
$phids[] = mpull($questions, 'getAuthorPHID');
|
|
$phids = array_mergev($phids);
|
|
|
|
$handles = $this->loadViewerHandles($phids);
|
|
|
|
|
|
$view = id(new PhabricatorObjectItemListView())
|
|
->setUser($viewer);
|
|
|
|
foreach ($questions as $question) {
|
|
$item = new PhabricatorObjectItemView();
|
|
$item->setObjectName('Q'.$question->getID());
|
|
$item->setHeader($question->getTitle());
|
|
$item->setHref('/Q'.$question->getID());
|
|
$item->setObject($question);
|
|
$item->setBarColor(
|
|
PonderQuestionStatus::getQuestionStatusTagColor(
|
|
$question->getStatus()));
|
|
|
|
$created_date = phabricator_date($question->getDateCreated(), $viewer);
|
|
$item->addIcon('none', $created_date);
|
|
$item->addByline(
|
|
pht(
|
|
'Asked by %s',
|
|
$handles[$question->getAuthorPHID()]->renderLink()));
|
|
|
|
$item->addAttribute(
|
|
pht('%d Answer(s)', $question->getAnswerCount()));
|
|
|
|
$view->addItem($item);
|
|
}
|
|
|
|
return $view;
|
|
}
|
|
|
|
}
|