forked from cheonhyangzhang/paper-typeahead-input
-
Notifications
You must be signed in to change notification settings - Fork 0
/
paper-typeahead-input.html
executable file
·555 lines (522 loc) · 17.3 KB
/
paper-typeahead-input.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
<!--
@license
Copyright (c) 2015 The Polymer Project Authors. All rights reserved.
This code may only be used under the BSD style license found at http://polymer.github.io/LICENSE.txt
The complete set of authors may be found at http://polymer.github.io/AUTHORS.txt
The complete set of contributors may be found at http://polymer.github.io/CONTRIBUTORS.txt
Code distributed by Google as part of the polymer project is also
subject to an additional IP rights grant found at http://polymer.github.io/PATENTS.txt
-->
<link rel="import" href="../polymer/polymer.html">
<link rel="import" href="../paper-input/paper-input.html">
<link rel="import" href="../paper-menu/paper-menu.html">
<link rel="import" href="../paper-item/paper-item.html">
<link rel="import" href="../iron-ajax/iron-ajax.html">
<link rel="import" href="../paper-material/paper-material.html">
<!--
paper-typeahead-input is an element providing typeahead feature for input.
Basic use of paper-typeahead-input. Use a predefined list of suggestions.
<paper-typeahead-input label="US states" local-candidates="{{states}}"
placeholder="Please enter value" max-suggestions="4">
</paper-typeahead-input>
For now, there are three types of sources for suggetions. localCandidates, prefetchUrl, and remoteUrl. The candidates combined from these three ways becomes the potential candidates for input.
<b>Installation</b>
Install with bower
bower install paper-typeahead-input
If you want to save it in bower.json file, remember to add flag --save
bower install --save paper-typeahead-input
@demo
-->
<dom-module id="paper-typeahead-input">
<style>
:host {
display: block;
box-sizing: border-box;
}
paper-material{
left:0;
right:0;
position: absolute;
z-index: 10;
}
paper-item{
cursor: pointer;
}
.iron-selected{
background: #E0E0E0;
}
</style>
<template>
<template is="dom-if" if="{{label}}">
<h3>{{label}}</h3>
</template>
<template is="dom-if" if="{{prefetchUrl}}">
<iron-ajax
auto
url="{{prefetchUrl}}"
handle-as="json"
last-response="{{_prefetchedCandidates}}"
></iron-ajax>
</template>
<div style="position:relative;">
<paper-input value="{{inputValue}}" on-keyup="_keyup" on-keydown="_keydown" label="{{placeholder}}"
always-float-label="{{alwaysFloatLabel}}"
autofocus="{{autofocus}}"
char-counter="{{charCounter}}"
disabled="{{disabled}}"
error-message="{{errorMessage}}"
maxlength="{{maxlength}}"
minlength="{{minlength}}"
name="{{name}}"
no-label-float="{{noLabelFloat}}"
readonly="{{readonly}}"
required="{{required}}"
auto-validate="{{autoValidate}}"
pattern="{{pattern}}"
></paper-input>
<template is="dom-if" if="{{_suggestions.length}}">
<paper-material >
<paper-menu on-iron-select="_itemSelect">
<template is="dom-repeat" items="{{_suggestions}}">
<template is="dom-if" if="{{isCandidatesJson}}">
<paper-item on-mouseover="_selection" on-tap="_select">
<span>{{_getDisplayValue(item)}}</span>
</paper-item>
</template>
<template is="dom-if" if="{{!isCandidatesJson}}">
<paper-item on-mouseover="_selection" on-tap="_select">
<span>{{item}}</span>
</paper-item>
</template>
</template>
</paper-menu>
</paper-material>
</template>
</div>
</template>
</dom-module>
<script>
Polymer({
is: 'paper-typeahead-input',
/**
* Fired when an item in the suggestion list is selected, either by up and down key or hover by mouse.
*
* @event pt-item-select
*/
/**
* Fired when an item in the suggestion list is confirmed, either by hit enter key where element selected or clicked on the element directly by mouse.
*
* @event pt-item-confirmed
*/
/**
* Fired when remoteUrl is set up and http request on remoteUrl is scheduled to send ( depends on remoteUrlWaitMs setting).
*
* @event pt-remote-searching-start
*/
/**
* Fired when remoteUrl is set up and http request on remoteUrl is finished.
*
* @event pt-remote-searching-end
*/
properties: {
/**
* The label that will show up as the label for tags input. It not specified, no label will show up.
*/
label:{
type:String,
value:''
},
/**
* The placeholder for the paper-input element.
*/
placeholder:{
type:String,
value:'Please enter values here'
},
/**
* The candidates from local variable.
*/
localCandidates:{
type:Array,
value:[]
},
/**
* Url for a prefectched list in json format for the list of suggestion candidates. The response should be something like: ["a","b"]
*/
prefetchUrl:String,
/**
* The prefetched candidates get by prefetchUrl
*/
_prefetchedCandidates:{
type:Array,
value:[]
},
/**
* Internal variable holding all matched suggestions.
*/
_suggestions:{
type:Array,
value:[]
},
/**
* Maximum number of suggestions to show up in typeahead.
*/
maxSuggestions:{
type:Number,
value:5
},
/**
* Remote url to perform a search using the value in the input. The input value will be passed in as url parameter. The placeholder should be %QUERY.
*/
remoteUrl:String,
/**
* Number of milliseconds to wait after user types a character.
* This is helpful to reduce number of calls to remoteUrl based on performance consideration if it's set up properly based on how fast user usually types.
* Default is undefined which means the search request to remoteUrl will be fired immediately after user types a character.
* This propery only makes sense if remoteUrl is set up.
*/
remoteUrlWaitMs:{
type:Number,
value:undefined
},
/**
* A boolean property to indicate if elements in the candidates list are json dictionary.
* When this property set up to be true, the candidates will be treated as list of json objects. Otherwise will be treated as list of strings.
*/
isCandidatesJson:{
type:Boolean,
value:false
},
/**
* An array to tell what property in the json object of candidate is searchable.
* This property only makes sense when property isCandidatesJson set to be true.
*/
searchableProps:{
type:Array,
value:[]
},
/**
* The property in json object that should be chosen for the paper-input value when an element is selected from the suggestions.
* This property only makes sense when property isCandidatesJson set to be true.
*/
displayProp:{
type:String,
value:"undefined"
},
/**
* A boolean property to indicate if there is a searching going on to remoteUrl.
* This propery only makes sense if remoteUrl is set up.
*/
remoteUrlSearching:{
type:Boolean,
value:false,
notify:true
},
/**
* Input value.
*/
inputValue:{
type:String,
notify:true
},
/**
* Input object.
*/
inputObject:{
type:Object,
notify:true
},
/**
* Bind this to the <paper-input>'s alwaysFloatLabel property.
*/
alwaysFloatLabel:Boolean,
/**
* Bind this to the <paper-input>'s autofocus property.
*/
autofocus:Boolean,
/**
* Bind this to the <paper-input>'s charCounter property.
*/
charCounter:Boolean,
/**
* Bind this to the <paper-input>'s disabled property.
*/
disabled:Boolean,
/**
* Bind this to the <paper-input>'s errorMessage property.
*/
errorMessage:String,
/**
* Bind this to the <paper-input>'s maxlength property.
*/
maxlength:Number,
/**
* Bind this to the <paper-input>'s minlength property.
*/
minlength:Number,
/**
* Bind this to the <paper-input>'s name property.
*/
name:String,
/**
* Bind this to the <paper-input>'s noLabelFloat property.
*/
noLabelFloat:Boolean,
/**
* Bind this to the <paper-input>'s readonly property.
*/
readonly:Boolean,
/**
* Bind this to the <paper-input>'s required property.
*/
required:Boolean,
/**
* Bind this to the <paper-input>'s autoValidate property.
*/
autoValidate:Boolean,
/**
* Bind this to the <paper-input>'s pattern property.
*/
pattern:String
},
// Element Lifecycle
ready: function() {
// `ready` is called after all elements have been configured, but
// propagates bottom-up. This element's children are ready, but parents
// are not.
//
// This is the point where you should make modifications to the DOM (when
// necessary), or kick off any processes the element wants to perform.
document.addEventListener("click", function(){
var ptinputs = document.querySelectorAll('paper-typeahead-input')
for (var i = 0; i < ptinputs.length; i ++){
var ptinput = ptinputs[i];
ptinput._suggestions = [];
}
});
var input = Polymer.dom(this.root).querySelector('paper-input');
input.$.input.autocomplete = 'address-level4';
},
attached: function() {
// `attached` fires once the element and its parents have been inserted
// into a document.
//
// This is a good place to perform any work related to your element's
// visual state or active behavior (measuring sizes, beginning animations,
// loading resources, etc).
},
detached: function() {
// The analog to `attached`, `detached` fires when the element has been
// removed from a document.
//
// Use this to clean up anything you did in `attached`.
},
_itemSelect:function(e, detail){
this.fire('pt-item-select',detail);
},
// Element Behavior
/**
* Callback for keydown event
*
* @param {e} event
*/
_keydown: function(e) {
if (e.which == 40 || e.which == 38){
e.preventDefault();
}
},
/**
* Callback on mouseover event on paper-item
*
*/
_selection:function(e){
var suggestionsMenu = Polymer.dom(this.root).querySelector('paper-menu');
if (suggestionsMenu && typeof(suggestionsMenu) != 'undefined'){
var selectedItem = e.currentTarget;
index = Number(suggestionsMenu.indexOf(selectedItem));
suggestionsMenu.select(index);
var input = Polymer.dom(this.root).querySelector('paper-input');
input.$.input.focus();
}
else{
console.log("suggestionsMenu not defined");
}
},
/**
* Callback on click event on paper-item
*
*/
_select: function(e) {
var suggestionsMenu = Polymer.dom(this.root).querySelector('paper-menu');
if (suggestionsMenu && typeof(suggestionsMenu) != 'undefined'){
var selectedItem = e.currentTarget;
index = Number(suggestionsMenu.indexOf(selectedItem));
if (this.isCandidatesJson == true){
this.inputObject = this._suggestions[index];
this.inputValue = this._getDisplayValue(this.inputObject);
}
else{
this.inputValue = this._suggestions[index];
}
this._suggestions = [];
this.fire('pt-item-confirmed',e.target);
e.stopPropagation();
}
else{
console.log("suggestionsMenu not defined");
}
},
/**
* Callback for keyup event
*
* @param {e} event
*/
_keyup: function(e) {
if (e.which == 40){
//down button
var suggestionsMenu = Polymer.dom(this.root).querySelector('paper-menu');
var selectedItem = suggestionsMenu.focusedItem;
var index = 0;
if (typeof(selectedItem) != 'undefined'){
index = Number(suggestionsMenu.indexOf(selectedItem));
index = Math.min(index + 1, this._suggestions.length - 1);
}
suggestionsMenu.select(index);
var input = Polymer.dom(this.root).querySelector('paper-input');
input.$.input.focus();
}
else if (e.which == 38){
//up
var suggestionsMenu = Polymer.dom(this.root).querySelector('paper-menu');
var selectedItem = suggestionsMenu.focusedItem;
if (typeof(selectedItem) != 'undefined'){
index = Number(suggestionsMenu.indexOf(selectedItem));
index = Math.max(index - 1, -1);
suggestionsMenu.select(index);
}
var input = Polymer.dom(this.root).querySelector('paper-input');
input.$.input.focus();
}
else if (e.which == 13){
var suggestionsMenu = Polymer.dom(this.root).querySelector('paper-menu');
if (suggestionsMenu && typeof(suggestionsMenu) != 'undefined'){
var selectedItem = suggestionsMenu.focusedItem;
if (typeof(selectedItem) != 'undefined'){
index = Number(suggestionsMenu.indexOf(selectedItem));
if (this.isCandidatesJson == true){
this.inputObject = this._suggestions[index];
this.inputValue = this._getDisplayValue(this.inputObject);
}
else{
this.inputValue = this._suggestions[index];
}
this._suggestions = [];
this.fire('pt-item-confirmed',selectedItem);
}
}
}
else{
var suggestionsMenu = Polymer.dom(this.root).querySelector('paper-menu');
if (suggestionsMenu && typeof(suggestionsMenu) != 'undefined'){
suggestionsMenu.select(-1);
}
// if (this.inputValue.length >= 3){
this._search(this.inputValue.trim());
// this._suggestions = this._search(this.inputValue.trim());
// }
}
},
_getDisplayValue:function(item){
if (this.displayProp && typeof(this.displayProp) != 'undefined'){
return item[this.displayProp];
}
else{
console.log("paper-typeahead-input: displayProp not set up");
return "";
}
},
_getTestCandidate:function(item){
if (this.isCandidatesJson == true){
var toTest = [];
for (var i = 0; i < this.searchableProps.length; i ++){
if (item[this.searchableProps[i]] != "undefined"){
toTest.push(item[this.searchableProps[i]]);
}
}
return toTest;
}
else{
return [item];
}
},
_search:function(term){
if (term == ""){
this._suggestions = [];
return;
}
var patt = new RegExp(term.toLowerCase());
var matched = [];
if (typeof(this.localCandidates) != 'undefined'){
for (var i = 0; i < this.localCandidates.length; i ++){
if (matched.length == this.maxSuggestions){
break;
}
var toTest = this._getTestCandidate(this.localCandidates[i]);
for (var j = 0; j < toTest.length; j ++){
var item = toTest[j];
if (patt.test(item.toLowerCase()) == true){
matched.push(this.localCandidates[i]);
break;
}
}
}
}
if (typeof(this._prefetchedCandidates) != 'undefined'){
for (var i = 0; i < this._prefetchedCandidates.length; i ++){
if (matched.length == this.maxSuggestions){
break;
}
var toTest = this._getTestCandidate(this._prefetchedCandidates[i]);
for (var j = 0; j < toTest.length; j ++){
var item = toTest[j];
if (patt.test(item.toLowerCase()) == true){
matched.push(this._prefetchedCandidates[i]);
break;
}
}
}
}
// this._suggestions = this._suggestions.concat(matched);
if (typeof(this.remoteUrl) != 'undefined'){
var pt_element = this;
pt_element.fire('pt-remote-searching-start',pt_element);
pt_element.remoteUrlSearching = true;
this.debounce('remoteUrlSearch', function(){
var url = pt_element.remoteUrl.replace("%QUERY", term);
var xmlhttp = new XMLHttpRequest();
xmlhttp.open('GET', url, true);
xmlhttp.setRequestHeader("Content-type", "application/json");
var ptinput = pt_element;
xmlhttp.onreadystatechange = function() {
if (xmlhttp.readyState === 4) {
if (xmlhttp.status == 200){
var resp = xmlhttp.response;
var remoteMatched = JSON.parse(resp);
var cuttedMatched = remoteMatched.slice(0,ptinput.maxSuggestions);
matched = matched.concat(cuttedMatched);
// ptinput._suggestions = ptinput._suggestions.concat(cuttedMatched);
ptinput._suggestions = matched;
}
pt_element.remoteUrlSearching = false;
pt_element.fire('pt-remote-searching-end',pt_element);
}
}
xmlhttp.send();
}, this.remoteUrlWaitMs);
}
else{
this._suggestions = matched;
}
}
});
</script>