mirror of
https://we.phorge.it/source/phorge.git
synced 2024-12-01 11:12:42 +01:00
c9366acbec
Summary: Ref T5471. Adds an archived state for panels. Archived panels don't show up in the default query view or in the "Add Existing Panel" workflow. Test Plan: - Archived a panel. - Activated a panel. - Viewed / searched for archived/active panels. - Popped "Add Existing Panel" dropdown and saw it omit archived panels. Reviewers: chad Reviewed By: chad Subscribers: epriestley Maniphest Tasks: T5471 Differential Revision: https://secure.phabricator.com/D9779
125 lines
2.9 KiB
PHP
125 lines
2.9 KiB
PHP
<?php
|
|
|
|
final class PhabricatorDashboardPanelSearchEngine
|
|
extends PhabricatorApplicationSearchEngine {
|
|
|
|
public function getResultTypeDescription() {
|
|
return pht('Dashboard Panels');
|
|
}
|
|
|
|
public function getApplicationClassName() {
|
|
return 'PhabricatorApplicationDashboard';
|
|
}
|
|
|
|
public function buildSavedQueryFromRequest(AphrontRequest $request) {
|
|
$saved = new PhabricatorSavedQuery();
|
|
|
|
$saved->setParameter('status', $request->getStr('status'));
|
|
|
|
return $saved;
|
|
}
|
|
|
|
public function buildQueryFromSavedQuery(PhabricatorSavedQuery $saved) {
|
|
$query = id(new PhabricatorDashboardPanelQuery());
|
|
|
|
$status = $saved->getParameter('status');
|
|
switch ($status) {
|
|
case 'active':
|
|
$query->withArchived(false);
|
|
break;
|
|
case 'archived':
|
|
$query->withArchived(true);
|
|
break;
|
|
default:
|
|
break;
|
|
}
|
|
|
|
return $query;
|
|
}
|
|
|
|
public function buildSearchForm(
|
|
AphrontFormView $form,
|
|
PhabricatorSavedQuery $saved_query) {
|
|
|
|
$status = $saved_query->getParameter('status', '');
|
|
|
|
$form
|
|
->appendChild(
|
|
id(new AphrontFormSelectControl())
|
|
->setLabel(pht('Status'))
|
|
->setName('status')
|
|
->setValue($status)
|
|
->setOptions(
|
|
array(
|
|
'' => pht('(All Panels)'),
|
|
'active' => pht('Active Panels'),
|
|
'archived' => pht('Archived Panels'),
|
|
)));
|
|
}
|
|
|
|
protected function getURI($path) {
|
|
return '/dashboard/panel/'.$path;
|
|
}
|
|
|
|
public function getBuiltinQueryNames() {
|
|
$names = array(
|
|
'active' => pht('Active Panels'),
|
|
'all' => pht('All Panels'),
|
|
);
|
|
|
|
return $names;
|
|
}
|
|
|
|
public function buildSavedQueryFromBuiltin($query_key) {
|
|
|
|
$query = $this->newSavedQuery();
|
|
$query->setQueryKey($query_key);
|
|
|
|
switch ($query_key) {
|
|
case 'active':
|
|
return $query->setParameter('status', 'active');
|
|
case 'all':
|
|
return $query;
|
|
}
|
|
|
|
return parent::buildSavedQueryFromBuiltin($query_key);
|
|
}
|
|
|
|
protected function renderResultList(
|
|
array $panels,
|
|
PhabricatorSavedQuery $query,
|
|
array $handles) {
|
|
|
|
$viewer = $this->requireViewer();
|
|
|
|
$list = new PHUIObjectItemListView();
|
|
$list->setUser($viewer);
|
|
foreach ($panels as $panel) {
|
|
$item = id(new PHUIObjectItemView())
|
|
->setObjectName($panel->getMonogram())
|
|
->setHeader($panel->getName())
|
|
->setHref('/'.$panel->getMonogram())
|
|
->setObject($panel);
|
|
|
|
$impl = $panel->getImplementation();
|
|
if ($impl) {
|
|
$type_text = $impl->getPanelTypeName();
|
|
$type_icon = 'none';
|
|
} else {
|
|
$type_text = nonempty($panel->getPanelType(), pht('Unknown Type'));
|
|
$type_icon = 'fa-question';
|
|
}
|
|
|
|
$item->addIcon($type_icon, $type_text);
|
|
|
|
if ($panel->getIsArchived()) {
|
|
$item->setDisabled(true);
|
|
}
|
|
|
|
$list->addItem($item);
|
|
}
|
|
|
|
return $list;
|
|
}
|
|
|
|
}
|