Page Menu
Home
Phabricator
Search
Configure Global Search
Log In
Files
F13992045
D9891.id23748.diff
No One
Temporary
Actions
View File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Flag For Later
Size
13 KB
Referenced Files
None
Subscribers
None
D9891.id23748.diff
View Options
diff --git a/src/__phutil_library_map__.php b/src/__phutil_library_map__.php
--- a/src/__phutil_library_map__.php
+++ b/src/__phutil_library_map__.php
@@ -2322,12 +2322,13 @@
'PhabricatorTranslationsConfigOptions' => 'applications/config/option/PhabricatorTranslationsConfigOptions.php',
'PhabricatorTrivialTestCase' => 'infrastructure/testing/__tests__/PhabricatorTrivialTestCase.php',
'PhabricatorTwoColumnExample' => 'applications/uiexample/examples/PhabricatorTwoColumnExample.php',
- 'PhabricatorTypeaheadCommonDatasourceController' => 'applications/typeahead/controller/PhabricatorTypeaheadCommonDatasourceController.php',
'PhabricatorTypeaheadCompositeDatasource' => 'applications/typeahead/datasource/PhabricatorTypeaheadCompositeDatasource.php',
'PhabricatorTypeaheadDatasource' => 'applications/typeahead/datasource/PhabricatorTypeaheadDatasource.php',
'PhabricatorTypeaheadDatasourceController' => 'applications/typeahead/controller/PhabricatorTypeaheadDatasourceController.php',
'PhabricatorTypeaheadModularDatasourceController' => 'applications/typeahead/controller/PhabricatorTypeaheadModularDatasourceController.php',
'PhabricatorTypeaheadMonogramDatasource' => 'applications/typeahead/datasource/PhabricatorTypeaheadMonogramDatasource.php',
+ 'PhabricatorTypeaheadNoOwnerDatasource' => 'applications/typeahead/datasource/PhabricatorTypeaheadNoOwnerDatasource.php',
+ 'PhabricatorTypeaheadOwnerDatasource' => 'applications/typeahead/datasource/PhabricatorTypeaheadOwnerDatasource.php',
'PhabricatorTypeaheadResult' => 'applications/typeahead/storage/PhabricatorTypeaheadResult.php',
'PhabricatorTypeaheadRuntimeCompositeDatasource' => 'applications/typeahead/datasource/PhabricatorTypeaheadRuntimeCompositeDatasource.php',
'PhabricatorUIConfigOptions' => 'applications/config/option/PhabricatorUIConfigOptions.php',
@@ -5235,12 +5236,13 @@
'PhabricatorTranslationsConfigOptions' => 'PhabricatorApplicationConfigOptions',
'PhabricatorTrivialTestCase' => 'PhabricatorTestCase',
'PhabricatorTwoColumnExample' => 'PhabricatorUIExample',
- 'PhabricatorTypeaheadCommonDatasourceController' => 'PhabricatorTypeaheadDatasourceController',
'PhabricatorTypeaheadCompositeDatasource' => 'PhabricatorTypeaheadDatasource',
'PhabricatorTypeaheadDatasource' => 'Phobject',
'PhabricatorTypeaheadDatasourceController' => 'PhabricatorController',
'PhabricatorTypeaheadModularDatasourceController' => 'PhabricatorTypeaheadDatasourceController',
'PhabricatorTypeaheadMonogramDatasource' => 'PhabricatorTypeaheadDatasource',
+ 'PhabricatorTypeaheadNoOwnerDatasource' => 'PhabricatorTypeaheadDatasource',
+ 'PhabricatorTypeaheadOwnerDatasource' => 'PhabricatorTypeaheadCompositeDatasource',
'PhabricatorTypeaheadRuntimeCompositeDatasource' => 'PhabricatorTypeaheadCompositeDatasource',
'PhabricatorUIConfigOptions' => 'PhabricatorApplicationConfigOptions',
'PhabricatorUIExampleRenderController' => 'PhabricatorController',
diff --git a/src/applications/maniphest/controller/ManiphestBatchEditController.php b/src/applications/maniphest/controller/ManiphestBatchEditController.php
--- a/src/applications/maniphest/controller/ManiphestBatchEditController.php
+++ b/src/applications/maniphest/controller/ManiphestBatchEditController.php
@@ -63,6 +63,7 @@
$projects_source = new PhabricatorProjectDatasource();
$mailable_source = new PhabricatorMetaMTAMailableDatasource();
+ $owner_source = new PhabricatorTypeaheadOwnerDatasource();
require_celerity_resource('maniphest-batch-editor');
Javelin::initBehavior(
@@ -76,9 +77,8 @@
'placeholder' => $projects_source->getPlaceholderText(),
),
'owner' => array(
- 'src' => '/typeahead/common/searchowner/',
- 'placeholder' => pht(
- 'Type a user name or "upforgrabs" to unassign...'),
+ 'src' => $owner_source->getDatasourceURI(),
+ 'placeholder' => $owner_source->getPlaceholderText(),
'limit' => 1,
),
'cc' => array(
diff --git a/src/applications/search/query/PhabricatorSearchApplicationSearchEngine.php b/src/applications/search/query/PhabricatorSearchApplicationSearchEngine.php
--- a/src/applications/search/query/PhabricatorSearchApplicationSearchEngine.php
+++ b/src/applications/search/query/PhabricatorSearchApplicationSearchEngine.php
@@ -142,7 +142,7 @@
id(new AphrontFormTokenizerControl())
->setName('ownerPHIDs')
->setLabel('Owners')
- ->setDatasource('/typeahead/common/searchowner/')
+ ->setDatasource(new PhabricatorTypeaheadOwnerDatasource())
->setValue($owner_handles))
->appendChild(
id(new AphrontFormCheckboxControl())
diff --git a/src/applications/typeahead/controller/PhabricatorTypeaheadCommonDatasourceController.php b/src/applications/typeahead/controller/PhabricatorTypeaheadCommonDatasourceController.php
deleted file mode 100644
--- a/src/applications/typeahead/controller/PhabricatorTypeaheadCommonDatasourceController.php
+++ /dev/null
@@ -1,179 +0,0 @@
-<?php
-
-final class PhabricatorTypeaheadCommonDatasourceController
- extends PhabricatorTypeaheadDatasourceController {
-
- private $type;
-
- public function shouldAllowPublic() {
- return true;
- }
-
- public function willProcessRequest(array $data) {
- $this->type = $data['type'];
- }
-
- public function processRequest() {
- $request = $this->getRequest();
- $viewer = $request->getUser();
- $query = $request->getStr('q');
- $raw_query = $request->getStr('raw');
-
- $need_users = false;
- $need_upforgrabs = false;
- $need_rich_data = false;
- switch ($this->type) {
- case 'searchowner':
- $need_users = true;
- $need_upforgrabs = true;
- break;
- }
-
- $results = array();
-
- if ($need_upforgrabs) {
- $results[] = id(new PhabricatorTypeaheadResult())
- ->setName('upforgrabs (Up For Grabs)')
- ->setPHID(ManiphestTaskOwner::OWNER_UP_FOR_GRABS);
- }
-
- if ($need_users) {
- $columns = array(
- 'isSystemAgent',
- 'isAdmin',
- 'isDisabled',
- 'userName',
- 'realName',
- 'phid');
-
- if ($query) {
- // This is an arbitrary limit which is just larger than any limit we
- // actually use in the application.
-
- // TODO: The datasource should pass this in the query.
- $limit = 15;
-
- $user_table = new PhabricatorUser();
- $conn_r = $user_table->establishConnection('r');
- $ids = queryfx_all(
- $conn_r,
- 'SELECT id FROM %T WHERE username LIKE %>
- ORDER BY username ASC LIMIT %d',
- $user_table->getTableName(),
- $query,
- $limit);
- $ids = ipull($ids, 'id');
-
- if (count($ids) < $limit) {
- // If we didn't find enough username hits, look for real name hits.
- // We need to pull the entire pagesize so that we end up with the
- // right number of items if this query returns many duplicate IDs
- // that we've already selected.
-
- $realname_ids = queryfx_all(
- $conn_r,
- 'SELECT DISTINCT userID FROM %T WHERE token LIKE %>
- ORDER BY token ASC LIMIT %d',
- PhabricatorUser::NAMETOKEN_TABLE,
- $query,
- $limit);
- $realname_ids = ipull($realname_ids, 'userID');
- $ids = array_merge($ids, $realname_ids);
-
- $ids = array_unique($ids);
- $ids = array_slice($ids, 0, $limit);
- }
-
- // Always add the logged-in user because some tokenizers autosort them
- // first. They'll be filtered out on the client side if they don't
- // match the query.
- $ids[] = $request->getUser()->getID();
-
- if ($ids) {
- $users = id(new PhabricatorUser())->loadColumnsWhere(
- $columns,
- 'id IN (%Ld)',
- $ids);
- } else {
- $users = array();
- }
- } else {
- $users = id(new PhabricatorUser())->loadColumns($columns);
- }
-
- if ($need_rich_data) {
- $phids = mpull($users, 'getPHID');
- $handles = $this->loadViewerHandles($phids);
- }
-
- foreach ($users as $user) {
- $closed = null;
- if ($user->getIsDisabled()) {
- $closed = pht('Disabled');
- } else if ($user->getIsSystemAgent()) {
- $closed = pht('Bot/Script');
- }
-
- $result = id(new PhabricatorTypeaheadResult())
- ->setName($user->getFullName())
- ->setURI('/p/'.$user->getUsername())
- ->setPHID($user->getPHID())
- ->setPriorityString($user->getUsername())
- ->setIcon('fa-user bluegrey')
- ->setPriorityType('user')
- ->setClosed($closed);
-
- if ($need_rich_data) {
- $display_type = 'User';
- if ($user->getIsAdmin()) {
- $display_type = 'Administrator';
- }
- $result->setDisplayType($display_type);
- $result->setImageURI($handles[$user->getPHID()]->getImageURI());
- }
- $results[] = $result;
- }
- }
-
- $content = mpull($results, 'getWireFormat');
-
- if ($request->isAjax()) {
- return id(new AphrontAjaxResponse())->setContent($content);
- }
-
- // If there's a non-Ajax request to this endpoint, show results in a tabular
- // format to make it easier to debug typeahead output.
-
- $rows = array();
- foreach ($results as $result) {
- $wire = $result->getWireFormat();
- $rows[] = $wire;
- }
-
- $table = new AphrontTableView($rows);
- $table->setHeaders(
- array(
- 'Name',
- 'URI',
- 'PHID',
- 'Priority',
- 'Display Name',
- 'Display Type',
- 'Image URI',
- 'Priority Type',
- 'Sprite Class',
- ));
-
- $panel = new AphrontPanelView();
- $panel->setHeader('Typeahead Results');
- $panel->appendChild($table);
-
- return $this->buildStandardPageResponse(
- $panel,
- array(
- 'title' => pht('Typeahead Results'),
- 'device' => true
- ));
- }
-
-}
diff --git a/src/applications/typeahead/datasource/PhabricatorTypeaheadNoOwnerDatasource.php b/src/applications/typeahead/datasource/PhabricatorTypeaheadNoOwnerDatasource.php
new file mode 100644
--- /dev/null
+++ b/src/applications/typeahead/datasource/PhabricatorTypeaheadNoOwnerDatasource.php
@@ -0,0 +1,28 @@
+<?php
+
+final class PhabricatorTypeaheadNoOwnerDatasource
+ extends PhabricatorTypeaheadDatasource {
+
+ public function getPlaceholderText() {
+ return pht('Type "none"...');
+ }
+
+ public function getDatasourceApplicationClass() {
+ return null;
+ }
+
+ public function loadResults() {
+ $viewer = $this->getViewer();
+ $raw_query = $this->getRawQuery();
+
+ $results = array();
+
+ $results[] = id(new PhabricatorTypeaheadResult())
+ ->setName(pht('None'))
+ ->setIcon('fa-ban orange')
+ ->setPHID(ManiphestTaskOwner::OWNER_UP_FOR_GRABS);
+
+ return $results;
+ }
+
+}
diff --git a/src/applications/typeahead/datasource/PhabricatorTypeaheadOwnerDatasource.php b/src/applications/typeahead/datasource/PhabricatorTypeaheadOwnerDatasource.php
new file mode 100644
--- /dev/null
+++ b/src/applications/typeahead/datasource/PhabricatorTypeaheadOwnerDatasource.php
@@ -0,0 +1,17 @@
+<?php
+
+final class PhabricatorTypeaheadOwnerDatasource
+ extends PhabricatorTypeaheadCompositeDatasource {
+
+ public function getPlaceholderText() {
+ return pht('Type a user name or "none"...');
+ }
+
+ public function getComponentDatasources() {
+ return array(
+ new PhabricatorPeopleDatasource(),
+ new PhabricatorTypeaheadNoOwnerDatasource(),
+ );
+ }
+
+}
diff --git a/src/view/form/control/AphrontFormTokenizerControl.php b/src/view/form/control/AphrontFormTokenizerControl.php
--- a/src/view/form/control/AphrontFormTokenizerControl.php
+++ b/src/view/form/control/AphrontFormTokenizerControl.php
@@ -7,7 +7,7 @@
private $limit;
private $placeholder;
- public function setDatasource($datasource) {
+ public function setDatasource(PhabricatorTypeaheadDatasource $datasource) {
$this->datasource = $datasource;
return $this;
}
@@ -43,8 +43,11 @@
$id = celerity_generate_unique_node_id();
}
+ $placeholder = null;
if (!strlen($this->placeholder)) {
- $placeholder = $this->getDefaultPlaceholder();
+ if ($this->datasource) {
+ $placeholder = $this->datasource->getPlaceholderText();
+ }
} else {
$placeholder = $this->placeholder;
}
@@ -59,10 +62,9 @@
$username = $this->user->getUsername();
}
- if ($this->datasource instanceof PhabricatorTypeaheadDatasource) {
+ $datasource_uri = null;
+ if ($this->datasource) {
$datasource_uri = $this->datasource->getDatasourceURI();
- } else {
- $datasource_uri = $this->datasource;
}
if (!$this->disableBehavior) {
@@ -80,26 +82,4 @@
return $template->render();
}
- private function getDefaultPlaceholder() {
- $datasource = $this->datasource;
-
- if ($datasource instanceof PhabricatorTypeaheadDatasource) {
- return $datasource->getPlaceholderText();
- }
-
- $matches = null;
- if (!preg_match('@^/typeahead/common/(.*)/$@', $datasource, $matches)) {
- return null;
- }
-
- $request = $matches[1];
-
- $map = array(
- 'searchowner' => pht('Type a user name...'),
- );
-
- return idx($map, $request);
- }
-
-
}
File Metadata
Details
Attached
Mime Type
text/plain
Expires
Wed, Oct 23, 2:06 PM (3 w, 6 d ago)
Storage Engine
blob
Storage Format
Encrypted (AES-256-CBC)
Storage Handle
6744370
Default Alt Text
D9891.id23748.diff (13 KB)
Attached To
Mode
D9891: Modernize "owner" typeahead datasource
Attached
Detach File
Event Timeline
Log In to Comment