-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpaper-input-autocomplete.html
executable file
·524 lines (452 loc) · 13.6 KB
/
paper-input-autocomplete.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
<!--
@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="../iron-flex-layout/iron-flex-layout.html">
<link rel="import" href="../paper-input/paper-input.html">
<link rel="import" href="../paper-icon-button/paper-icon-button.html">
<link rel="import" href="../iron-icons/iron-icons.html">
<link rel="import" href="../paper-item/paper-item.html">
<link rel="import" href="../paper-ripple/paper-ripple.html">
<link rel="import" href="../paper-material/paper-material.html">
<!--
Paper Input Autocomplete field to offer a type-ahead functionality
Example:
<paper-input-autocomplete id="fruits" label="Fruits"></paper-input-autocomplete>
<script>
document.getElementById('fruits').source = ['Apple', 'Orange', 'Bananas'];
</script>
@group Paper Elements
@element paper-input-autocomplete
@demo demo/index.html
@hero hero.svg
-->
<dom-module id="paper-input-autocomplete">
<style>
:host {
display: block;
box-sizing: border-box;
position: relative;
}
.input-wrapper {
@apply(--layout-horizontal);
}
.input-wrapper paper-input {
@apply(--layout-flex);
}
#suggestionsWrapper {
display: none;
background-color: white;
}
:host[suggestions-in-overlay="true"] #suggestionsWrapper {
width: 100%;
position: absolute;
z-index: 1000;
}
paper-item {
position: relative;
}
#clear{
display: none;
}
</style>
<template>
<div class="input-wrapper">
<paper-input id="input"
label="{{label}}"
on-keyup="_handleSuggestions"
disabled="{{disabled}}"
invalid="{{invalid}}"
prevent-invalid-input="{{preventInvalidInput}}"
allowedpattern="{{allowedPattern}}"
type="{{type}}"
list="{{list}}"
pattern="{{pattern}}"
required="{{required}}"
maxlength="{{maxlength}}"
error-message="{{errorMessage}}"
char-counter="{{charCounter}}"
auto-validate="{{autoValidate}}"
validator="{{validator}}"
autocomplete="{{autocomplete}}"
autofocus="{{autofocus}}"
inputmode="{{inputmode}}"
minlength="{{minlength}}"
name="{{name}}"
placeholder="{{placeholder}}"
readonly="{{readonly}}"
size="{{size}}"
_aria-described-by="{{_ariaDescribedBy}}"
value="{{inputValue}}"
no-label-float="{{noLabelFloat}}"
always-float-label="{{alwaysFloatLabel}}"
display-options-on-focus="{{displayOptionsOnFocus}}"
on-focus="_onFocus"
on-blur="_onBlur"
></paper-input>
<paper-icon-button id="clear" icon="clear" on-click="clear"></paper-icon-button>
</div>
<paper-material elevation="1" id="suggestionsWrapper">
<template is="dom-repeat" items="{{_suggestions}}">
<paper-item on-click="_selectSuggestion">
<div>{{item.text}}</div>
<paper-ripple></paper-ripple>
</paper-item>
</template>
</paper-material>
</template>
</dom-module>
<script>
Polymer({
is: 'paper-input-autocomplete',
properties: {
/**
* `label` Text to display as the input label
*/
label: String,
/**
* `source` Array of objects with the options to execute the autocomplete feature
*/
source: Array,
/**
* `searchProperty` Property of the source objects that will be used to execute
* the autocomplete feature
*/
searchProperty: String,
/**
* `autocompleteSearchLength` Number that determines when the autocomplete will start
* searching for matches
*/
autocompleteSearchLength: {
type: Number,
value: 1
},
/**
* `value` Selected object from the suggestions
*/
value: {
type: Object,
notify: true
},
/**
* `inputValue` Current value of the input-paper element
*/
inputValue: {
type: String,
notify: true
},
/**
* `suggestionsInOverlay` Display the suggestions in an overlay above the next elements
*/
suggestionsInOverlay: Boolean,
/**
* `_suggestions` Array with the actual suggestions to display
*/
_suggestions: Array,
/**
* Set to true to disable this input. Bind this to both the `<paper-input-container>`'s
* and the input's `disabled` property.
*/
disabled: {
type: Boolean,
value: false
},
/**
* Returns true if the value is invalid. Bind this to both the `<paper-input-container>`'s
* and the input's `invalid` property.
*/
invalid: {
type: Boolean,
value: false
},
/**
* Set to true to prevent the user from entering invalid input. Bind this to the
* `<input is="iron-input">`'s `preventInvalidInput` property.
*/
preventInvalidInput: {
type: Boolean
},
/**
* Set this to specify the pattern allowed by `preventInvalidInput`. Bind this to the
* `<input is="iron-input">`'s `allowedPattern` property.
*/
allowedPattern: {
type: String
},
/**
* The type of the input. The supported types are `text`, `number` and `password`. Bind this
* to the `<input is="iron-input">`'s `type` property.
*/
type: {
type: String
},
/**
* The datalist of the input (if any). This should match the id of an existing <datalist>. Bind this
* to the `<input is="iron-input">`'s `list` property.
*/
list: {
type: String
},
/**
* A pattern to validate the `input` with. Bind this to the `<input is="iron-input">`'s
* `pattern` property.
*/
pattern: {
type: String
},
/**
* Set to true to mark the input as required. Bind this to the `<input is="iron-input">`'s
* `required` property.
*/
required: {
type: Boolean,
value: false
},
/**
* The maximum length of the input value. Bind this to the `<input is="iron-input">`'s
* `maxlength` property.
*/
maxlength: {
type: Number
},
/**
* The error message to display when the input is invalid. Bind this to the
* `<paper-input-error>`'s content, if using.
*/
errorMessage: {
type: String
},
/**
* Set to true to show a character counter.
*/
charCounter: {
type: Boolean,
value: false
},
/**
* Set to true to disable the floating label. Bind this to the `<paper-input-container>`'s
* `noLabelFloat` property.
*/
noLabelFloat: {
type: Boolean,
value: false,
notify: true,
},
/**
* Set to true to always float the label. Bind this to the `<paper-input-container>`'s
* `alwaysFloatLabel` property.
*/
alwaysFloatLabel: {
type: Boolean,
value: false
},
/**
* Set to true to auto-validate the input value. Bind this to the `<paper-input-container>`'s
* `autoValidate` property.
*/
autoValidate: {
type: Boolean,
value: false
},
/**
* Name of the validator to use. Bind this to the `<input is="iron-input">`'s `validator`
* property.
*/
validator: {
type: String
},
// HTMLInputElement attributes for binding if needed
/**
* Bind this to the `<input is="iron-input">`'s `autocomplete` property.
*/
autocomplete: {
type: String,
value: 'off'
},
/**
* Bind this to the `<input is="iron-input">`'s `autofocus` property.
*/
autofocus: {
type: Boolean
},
/**
* Bind this to the `<input is="iron-input">`'s `inputmode` property.
*/
inputmode: {
type: String
},
/**
* Bind this to the `<input is="iron-input">`'s `minlength` property.
*/
minlength: {
type: Number
},
/**
* Bind this to the `<input is="iron-input">`'s `name` property.
*/
name: {
type: String
},
/**
* A placeholder string in addition to the label. If this is set, the label will always float.
*/
placeholder: {
type: String,
// need to set a default so _computeAlwaysFloatLabel is run
value: ''
},
/**
* Bind this to the `<input is="iron-input">`'s `readonly` property.
*/
readonly: {
type: Boolean,
value: false
},
/**
* Bind this to the `<input is="iron-input">`'s `size` property.
*/
size: {
type: Number
},
_ariaDescribedBy: {
type: String,
value: ''
},
/**
* Display all the options when the input is empty and when the user focus the input.
*/
displayOptionsOnFocus: {
type: Boolean,
value: false
}
},
// 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.
},
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`.
},
// Element Behavior
/**
* Clears the input text
*/
clear : function() {
this.$.input.value = '';
this.$.clear.style.display = 'none';
this.value = undefined;
this._hideSuggestionsWrapper();
},
/**
* Hide the suggestions wrapper
*/
_hideSuggestionsWrapper: function() {
this.$.suggestionsWrapper.style.display = 'none';
},
/**
* Event fired when the user types in the input field.
*
* @param {string} event fired
*/
_handleSuggestions : function(event) {
this.value = this.$.input.value;
var value = event.target.value;
if (value && value.length > 0) {
this._handleSuggestionsAux(value);
} else {
this.$.clear.style.display = 'none';
this._suggestions = [];
}
},
/**
* Auxiliary event to handle the suggestions.
*
* @param {string} event fired
*/
_handleSuggestionsAux : function(value) {
// Check if the given value should be processed according to the min length for search
if (value.length >= this.autocompleteSearchLength) {
var valueToProcess = value.toLowerCase();
// Shows the clear button.
this.$.clear.style.display = 'block';
// Search for the word in the source properties.
if(this.source && this.source.length > 0){
this._suggestions = [];
var length = this.source.length
var hasSearchProperty = this.searchProperty != null;
for(var i = 0; i < length; i++){
var item = this.source[i];
if(hasSearchProperty){
item = this.source[i][this.searchProperty];
}
if(item.toLowerCase().indexOf(valueToProcess) != -1){
// Adds the item to the suggestions list.
this.push('_suggestions', {text : item , value : this.source[i]});
}
}
if (this._suggestions.length > 0) {
this.$.suggestionsWrapper.style.display = 'block';
}
}
}
},
/**
* Event fired when the user selects a suggestion
*
* @param {Object} event fired
*/
_selectSuggestion : function(event) {
var selectedOption = this._suggestions[event.model.index];
var self = this;
this.$.input.value = selectedOption.text;
this.value = selectedOption.value;
setTimeout(function() {
self._hideSuggestionsWrapper();
}, 300);
},
_onFocus: function() {
if (this.displayOptionsOnFocus && (this.value === '' || this.value === undefined)) {
this.value = '';
this.autocompleteSearchLength = 0;
this._handleSuggestionsAux(this.value);
}
},
_onBlur: function(event) {
var self = this;
setTimeout(function() {
self._hideSuggestionsWrapper();
if (self.value === '') {
self.clear();
}
}, 300);
},
/**
* Return the selected suggestion
*/
getValue : function() {
return this.value;
}
});
</script>