mirror of
https://we.phorge.it/source/phorge.git
synced 2025-01-08 22:01:03 +01:00
3b2f4c258f
Summary: Ref T9252. Currently, Drydock blueprint pages: - show all resources, even if there are a million; - show resources in all states, although destroyed resources are usually uninteresting; - have some junky `$pager` code. Instead, show the few most recent active resources and link to a filtered resource view in ApplicationSearch. Test Plan: - Viewed some blueprints. - Clicked "View All Resources". - Saw all resources. - Used query / crumbs / etc. Reviewers: chad Reviewed By: chad Maniphest Tasks: T9252 Differential Revision: https://secure.phabricator.com/D14157
106 lines
2.4 KiB
PHP
106 lines
2.4 KiB
PHP
<?php
|
|
|
|
final class DrydockResourceSearchEngine
|
|
extends PhabricatorApplicationSearchEngine {
|
|
|
|
private $blueprint;
|
|
|
|
public function setBlueprint(DrydockBlueprint $blueprint) {
|
|
$this->blueprint = $blueprint;
|
|
return $this;
|
|
}
|
|
|
|
public function getBlueprint() {
|
|
return $this->blueprint;
|
|
}
|
|
|
|
public function getResultTypeDescription() {
|
|
return pht('Drydock Resources');
|
|
}
|
|
|
|
public function getApplicationClassName() {
|
|
return 'PhabricatorDrydockApplication';
|
|
}
|
|
|
|
public function newQuery() {
|
|
$query = new DrydockResourceQuery();
|
|
|
|
$blueprint = $this->getBlueprint();
|
|
if ($blueprint) {
|
|
$query->withBlueprintPHIDs(array($blueprint->getPHID()));
|
|
}
|
|
|
|
return $query;
|
|
}
|
|
|
|
protected function buildQueryFromParameters(array $map) {
|
|
$query = $this->newQuery();
|
|
|
|
if ($map['statuses']) {
|
|
$query->withStatuses($map['statuses']);
|
|
}
|
|
|
|
return $query;
|
|
}
|
|
|
|
protected function buildCustomSearchFields() {
|
|
return array(
|
|
id(new PhabricatorSearchCheckboxesField())
|
|
->setLabel(pht('Statuses'))
|
|
->setKey('statuses')
|
|
->setOptions(DrydockResourceStatus::getStatusMap()),
|
|
);
|
|
}
|
|
|
|
protected function getURI($path) {
|
|
$blueprint = $this->getBlueprint();
|
|
if ($blueprint) {
|
|
$id = $blueprint->getID();
|
|
return "/drydock/blueprint/{$id}/resources/".$path;
|
|
} else {
|
|
return '/drydock/resource/'.$path;
|
|
}
|
|
}
|
|
|
|
protected function getBuiltinQueryNames() {
|
|
return array(
|
|
'active' => pht('Active Resources'),
|
|
'all' => pht('All Resources'),
|
|
);
|
|
}
|
|
|
|
public function buildSavedQueryFromBuiltin($query_key) {
|
|
$query = $this->newSavedQuery();
|
|
$query->setQueryKey($query_key);
|
|
|
|
switch ($query_key) {
|
|
case 'active':
|
|
return $query->setParameter(
|
|
'statuses',
|
|
array(
|
|
DrydockResourceStatus::STATUS_PENDING,
|
|
DrydockResourceStatus::STATUS_ACTIVE,
|
|
));
|
|
case 'all':
|
|
return $query;
|
|
}
|
|
|
|
return parent::buildSavedQueryFromBuiltin($query_key);
|
|
}
|
|
|
|
protected function renderResultList(
|
|
array $resources,
|
|
PhabricatorSavedQuery $query,
|
|
array $handles) {
|
|
|
|
$list = id(new DrydockResourceListView())
|
|
->setUser($this->requireViewer())
|
|
->setResources($resources);
|
|
|
|
$result = new PhabricatorApplicationSearchResultView();
|
|
$result->setTable($list);
|
|
|
|
return $result;
|
|
}
|
|
|
|
}
|