Page Menu
Home
Phabricator
Search
Configure Global Search
Log In
Files
F15509632
D15037.id.diff
No One
Temporary
Actions
View File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Flag For Later
Size
3 KB
Referenced Files
None
Subscribers
None
D15037.id.diff
View Options
diff --git a/resources/celerity/map.php b/resources/celerity/map.php
--- a/resources/celerity/map.php
+++ b/resources/celerity/map.php
@@ -507,7 +507,7 @@
'rsrc/js/phui/behavior-phui-object-box-tabs.js' => '2bfa2836',
'rsrc/js/phuix/PHUIXActionListView.js' => 'b5c256b8',
'rsrc/js/phuix/PHUIXActionView.js' => '8cf6d262',
- 'rsrc/js/phuix/PHUIXAutocomplete.js' => '569edc21',
+ 'rsrc/js/phuix/PHUIXAutocomplete.js' => '377c9b3e',
'rsrc/js/phuix/PHUIXDropdownMenu.js' => 'bd4c8dca',
'rsrc/js/phuix/PHUIXFormControl.js' => '8fba1997',
'rsrc/js/phuix/PHUIXIconView.js' => 'bff6884b',
@@ -836,7 +836,7 @@
'phui-workpanel-view-css' => 'adec7699',
'phuix-action-list-view' => 'b5c256b8',
'phuix-action-view' => '8cf6d262',
- 'phuix-autocomplete' => '569edc21',
+ 'phuix-autocomplete' => '377c9b3e',
'phuix-dropdown-menu' => 'bd4c8dca',
'phuix-form-control-view' => '8fba1997',
'phuix-icon-view' => 'bff6884b',
@@ -1064,6 +1064,12 @@
'javelin-vector',
'phuix-autocomplete',
),
+ '377c9b3e' => array(
+ 'javelin-install',
+ 'javelin-dom',
+ 'phuix-icon-view',
+ 'phabricator-prefab',
+ ),
'3ab51e2c' => array(
'javelin-behavior',
'javelin-behavior-device',
@@ -1204,12 +1210,6 @@
'javelin-vector',
'javelin-dom',
),
- '569edc21' => array(
- 'javelin-install',
- 'javelin-dom',
- 'phuix-icon-view',
- 'phabricator-prefab',
- ),
'56a1ca03' => array(
'javelin-behavior',
'javelin-behavior-device',
diff --git a/webroot/rsrc/js/phuix/PHUIXAutocomplete.js b/webroot/rsrc/js/phuix/PHUIXAutocomplete.js
--- a/webroot/rsrc/js/phuix/PHUIXAutocomplete.js
+++ b/webroot/rsrc/js/phuix/PHUIXAutocomplete.js
@@ -32,6 +32,9 @@
_focus: null,
_focusRef: null,
_listNodes: null,
+ _x: null,
+ _y: null,
+ _visible: false,
setArea: function(area) {
this._area = area;
@@ -186,6 +189,7 @@
JX.DOM.hide(node);
this._active = false;
+ this._visible = false;
},
_onkeypress: function(e) {
@@ -412,18 +416,33 @@
this._datasource.didChange(trim);
- var node = this._getNode();
- node.style.left = x + 'px';
- node.style.top = y + 'px';
- JX.DOM.show(node);
+ this._x = x;
+ this._y = y;
- var echo = this._getEchoNode();
var hint = trim;
- if (!hint.length) {
+ if (hint.length) {
+ // We only show the autocompleter after the user types at least one
+ // character. For example, "@" does not trigger it, but "@d" does.
+ this._visible = true;
+ } else {
hint = this._getSpec().hintText;
}
+ var echo = this._getEchoNode();
JX.DOM.setContent(echo, hint);
+
+ this._redraw();
+ },
+
+ _redraw: function() {
+ if (!this._visible) {
+ return;
+ }
+
+ var node = this._getNode();
+ node.style.left = this._x + 'px';
+ node.style.top = this._y + 'px';
+ JX.DOM.show(node);
},
_autocomplete: function() {
File Metadata
Details
Attached
Mime Type
text/plain
Expires
Thu, Apr 17, 2:54 PM (1 w, 15 h ago)
Storage Engine
blob
Storage Format
Encrypted (AES-256-CBC)
Storage Handle
7354875
Default Alt Text
D15037.id.diff (3 KB)
Attached To
Mode
D15037: Don't show the autocompleter until the user types at least one character
Attached
Detach File
Event Timeline
Log In to Comment