Blame view

bower_components/paper-input/paper-input-behavior.html 16.6 KB
73bcce88   luigser   COMPONENTS
1
2
3
4
5
6
7
8
9
  <!--
  @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
  -->
a1a3bc73   Luigi Serra   graphs updates
10
  
73bcce88   luigser   COMPONENTS
11
  <link rel="import" href="../polymer/polymer.html">
a1a3bc73   Luigi Serra   graphs updates
12
  <link rel="import" href="../iron-a11y-keys-behavior/iron-a11y-keys-behavior.html">
73bcce88   luigser   COMPONENTS
13
14
15
  <link rel="import" href="../iron-behaviors/iron-control-state.html">
  
  <script>
73bcce88   luigser   COMPONENTS
16
17
18
19
20
21
22
23
24
25
26
    /**
     * Use `Polymer.PaperInputBehavior` to implement inputs with `<paper-input-container>`. This
     * behavior is implemented by `<paper-input>`. It exposes a number of properties from
     * `<paper-input-container>` and `<input is="iron-input">` and they should be bound in your
     * template.
     *
     * The input element can be accessed by the `inputElement` property if you need to access
     * properties or methods that are not exposed.
     * @polymerBehavior Polymer.PaperInputBehavior
     */
    Polymer.PaperInputBehaviorImpl = {
73bcce88   luigser   COMPONENTS
27
      properties: {
e619a3b0   Luigi Serra   Controllet cross ...
28
29
30
31
32
        /**
         * Fired when the input changes due to user interaction.
         *
         * @event change
         */
73bcce88   luigser   COMPONENTS
33
34
  
        /**
a1a3bc73   Luigi Serra   graphs updates
35
36
37
38
         * The label for this input. If you're using PaperInputBehavior to
         * implement your own paper-input-like element, bind this to
         * `<label>`'s content and `hidden` property, e.g.
         * `<label hidden$="[[!label]]">[[label]]</label>` in your `template`
73bcce88   luigser   COMPONENTS
39
40
41
42
43
44
         */
        label: {
          type: String
        },
  
        /**
a1a3bc73   Luigi Serra   graphs updates
45
46
47
         * The value for this input. If you're using PaperInputBehavior to
         * implement your own paper-input-like element, bind this to
         * the `<input is="iron-input">`'s `bindValue`
73bcce88   luigser   COMPONENTS
48
49
50
51
52
53
54
55
         * property, or the value property of your input that is `notify:true`.
         */
        value: {
          notify: true,
          type: String
        },
  
        /**
a1a3bc73   Luigi Serra   graphs updates
56
57
58
         * Set to true to disable this input. If you're using PaperInputBehavior to
         * implement your own paper-input-like element, bind this to
         * both the `<paper-input-container>`'s and the input's `disabled` property.
73bcce88   luigser   COMPONENTS
59
60
61
62
63
64
65
         */
        disabled: {
          type: Boolean,
          value: false
        },
  
        /**
a1a3bc73   Luigi Serra   graphs updates
66
67
68
69
70
71
         * Returns true if the value is invalid. If you're using PaperInputBehavior to
         * implement your own paper-input-like element, bind this to both the
         * `<paper-input-container>`'s and the input's `invalid` property.
         *
         * If `autoValidate` is true, the `invalid` attribute is managed automatically,
         * which can clobber attempts to manage it manually.
73bcce88   luigser   COMPONENTS
72
73
74
         */
        invalid: {
          type: Boolean,
e619a3b0   Luigi Serra   Controllet cross ...
75
76
          value: false,
          notify: true
73bcce88   luigser   COMPONENTS
77
78
79
        },
  
        /**
a1a3bc73   Luigi Serra   graphs updates
80
81
82
         * Set to true to prevent the user from entering invalid input. If you're
         * using PaperInputBehavior to  implement your own paper-input-like element,
         * bind this to `<input is="iron-input">`'s `preventInvalidInput` property.
73bcce88   luigser   COMPONENTS
83
84
85
86
87
88
         */
        preventInvalidInput: {
          type: Boolean
        },
  
        /**
a1a3bc73   Luigi Serra   graphs updates
89
90
91
92
         * Set this to specify the pattern allowed by `preventInvalidInput`. If
         * you're using PaperInputBehavior to implement your own paper-input-like
         * element, bind this to the `<input is="iron-input">`'s `allowedPattern`
         * property.
73bcce88   luigser   COMPONENTS
93
94
95
96
97
98
         */
        allowedPattern: {
          type: String
        },
  
        /**
a1a3bc73   Luigi Serra   graphs updates
99
100
101
         * The type of the input. The supported types are `text`, `number` and `password`.
         * If you're using PaperInputBehavior to implement your own paper-input-like element,
         * bind this to the `<input is="iron-input">`'s `type` property.
73bcce88   luigser   COMPONENTS
102
103
104
105
106
107
         */
        type: {
          type: String
        },
  
        /**
a1a3bc73   Luigi Serra   graphs updates
108
109
110
         * The datalist of the input (if any). This should match the id of an existing `<datalist>`.
         * If you're using PaperInputBehavior to implement your own paper-input-like
         * element, bind this to the `<input is="iron-input">`'s `list` property.
73bcce88   luigser   COMPONENTS
111
112
113
114
115
116
         */
        list: {
          type: String
        },
  
        /**
a1a3bc73   Luigi Serra   graphs updates
117
118
119
         * A pattern to validate the `input` with. If you're using PaperInputBehavior to
         * implement your own paper-input-like element, bind this to
         * the `<input is="iron-input">`'s `pattern` property.
73bcce88   luigser   COMPONENTS
120
121
122
123
124
125
         */
        pattern: {
          type: String
        },
  
        /**
a1a3bc73   Luigi Serra   graphs updates
126
127
128
         * Set to true to mark the input as required. If you're using PaperInputBehavior to
         * implement your own paper-input-like element, bind this to
         * the `<input is="iron-input">`'s `required` property.
73bcce88   luigser   COMPONENTS
129
130
131
132
133
134
135
         */
        required: {
          type: Boolean,
          value: false
        },
  
        /**
a1a3bc73   Luigi Serra   graphs updates
136
137
138
         * The error message to display when the input is invalid. If you're using
         * PaperInputBehavior to implement your own paper-input-like element,
         * bind this to the `<paper-input-error>`'s content, if using.
73bcce88   luigser   COMPONENTS
139
140
141
142
143
144
145
146
147
148
149
150
151
152
         */
        errorMessage: {
          type: String
        },
  
        /**
         * Set to true to show a character counter.
         */
        charCounter: {
          type: Boolean,
          value: false
        },
  
        /**
a1a3bc73   Luigi Serra   graphs updates
153
154
155
         * Set to true to disable the floating label. If you're using PaperInputBehavior to
         * implement your own paper-input-like element, bind this to
         * the `<paper-input-container>`'s `noLabelFloat` property.
73bcce88   luigser   COMPONENTS
156
157
158
159
160
161
162
         */
        noLabelFloat: {
          type: Boolean,
          value: false
        },
  
        /**
a1a3bc73   Luigi Serra   graphs updates
163
164
165
         * Set to true to always float the label. If you're using PaperInputBehavior to
         * implement your own paper-input-like element, bind this to
         * the `<paper-input-container>`'s `alwaysFloatLabel` property.
73bcce88   luigser   COMPONENTS
166
167
168
169
170
171
172
         */
        alwaysFloatLabel: {
          type: Boolean,
          value: false
        },
  
        /**
a1a3bc73   Luigi Serra   graphs updates
173
174
175
         * Set to true to auto-validate the input value. If you're using PaperInputBehavior to
         * implement your own paper-input-like element, bind this to
         * the `<paper-input-container>`'s `autoValidate` property.
73bcce88   luigser   COMPONENTS
176
177
178
179
180
181
182
         */
        autoValidate: {
          type: Boolean,
          value: false
        },
  
        /**
a1a3bc73   Luigi Serra   graphs updates
183
184
185
         * Name of the validator to use. If you're using PaperInputBehavior to
         * implement your own paper-input-like element, bind this to
         * the `<input is="iron-input">`'s `validator` property.
73bcce88   luigser   COMPONENTS
186
187
188
189
190
191
192
193
         */
        validator: {
          type: String
        },
  
        // HTMLInputElement attributes for binding if needed
  
        /**
a1a3bc73   Luigi Serra   graphs updates
194
195
         * If you're using PaperInputBehavior to implement your own paper-input-like
         * element, bind this to the `<input is="iron-input">`'s `autocomplete` property.
73bcce88   luigser   COMPONENTS
196
197
198
199
200
201
202
         */
        autocomplete: {
          type: String,
          value: 'off'
        },
  
        /**
a1a3bc73   Luigi Serra   graphs updates
203
204
         * If you're using PaperInputBehavior to implement your own paper-input-like
         * element, bind this to the `<input is="iron-input">`'s `autofocus` property.
73bcce88   luigser   COMPONENTS
205
206
207
208
209
210
         */
        autofocus: {
          type: Boolean
        },
  
        /**
a1a3bc73   Luigi Serra   graphs updates
211
212
         * If you're using PaperInputBehavior to implement your own paper-input-like
         * element, bind this to the `<input is="iron-input">`'s `inputmode` property.
73bcce88   luigser   COMPONENTS
213
214
215
216
217
218
         */
        inputmode: {
          type: String
        },
  
        /**
a1a3bc73   Luigi Serra   graphs updates
219
220
221
         * The minimum length of the input value.
         * If you're using PaperInputBehavior to implement your own paper-input-like
         * element, bind this to the `<input is="iron-input">`'s `minlength` property.
73bcce88   luigser   COMPONENTS
222
223
224
225
226
227
         */
        minlength: {
          type: Number
        },
  
        /**
a1a3bc73   Luigi Serra   graphs updates
228
229
230
         * The maximum length of the input value.
         * If you're using PaperInputBehavior to implement your own paper-input-like
         * element, bind this to the `<input is="iron-input">`'s `maxlength` property.
e619a3b0   Luigi Serra   Controllet cross ...
231
232
233
234
235
236
237
         */
        maxlength: {
          type: Number
        },
  
        /**
         * The minimum (numeric or date-time) input value.
a1a3bc73   Luigi Serra   graphs updates
238
239
         * If you're using PaperInputBehavior to implement your own paper-input-like
         * element, bind this to the `<input is="iron-input">`'s `min` property.
e619a3b0   Luigi Serra   Controllet cross ...
240
241
242
243
244
245
246
247
         */
        min: {
          type: String
        },
  
        /**
         * The maximum (numeric or date-time) input value.
         * Can be a String (e.g. `"2000-1-1"`) or a Number (e.g. `2`).
a1a3bc73   Luigi Serra   graphs updates
248
249
         * If you're using PaperInputBehavior to implement your own paper-input-like
         * element, bind this to the `<input is="iron-input">`'s `max` property.
e619a3b0   Luigi Serra   Controllet cross ...
250
251
252
253
254
255
256
         */
        max: {
          type: String
        },
  
        /**
         * Limits the numeric or date-time increments.
a1a3bc73   Luigi Serra   graphs updates
257
258
         * If you're using PaperInputBehavior to implement your own paper-input-like
         * element, bind this to the `<input is="iron-input">`'s `step` property.
e619a3b0   Luigi Serra   Controllet cross ...
259
260
261
262
263
264
         */
        step: {
          type: String
        },
  
        /**
a1a3bc73   Luigi Serra   graphs updates
265
266
         * If you're using PaperInputBehavior to implement your own paper-input-like
         * element, bind this to the `<input is="iron-input">`'s `name` property.
73bcce88   luigser   COMPONENTS
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
         */
        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: ''
        },
  
        /**
a1a3bc73   Luigi Serra   graphs updates
282
283
         * If you're using PaperInputBehavior to implement your own paper-input-like
         * element, bind this to the `<input is="iron-input">`'s `readonly` property.
73bcce88   luigser   COMPONENTS
284
285
286
287
288
289
290
         */
        readonly: {
          type: Boolean,
          value: false
        },
  
        /**
a1a3bc73   Luigi Serra   graphs updates
291
292
         * If you're using PaperInputBehavior to implement your own paper-input-like
         * element, bind this to the `<input is="iron-input">`'s `size` property.
73bcce88   luigser   COMPONENTS
293
294
295
296
297
298
299
300
         */
        size: {
          type: Number
        },
  
        // Nonstandard attributes for binding if needed
  
        /**
a1a3bc73   Luigi Serra   graphs updates
301
302
         * If you're using PaperInputBehavior to implement your own paper-input-like
         * element, bind this to the `<input is="iron-input">`'s `autocapitalize` property.
73bcce88   luigser   COMPONENTS
303
304
305
306
307
308
309
         */
        autocapitalize: {
          type: String,
          value: 'none'
        },
  
        /**
a1a3bc73   Luigi Serra   graphs updates
310
311
         * If you're using PaperInputBehavior to implement your own paper-input-like
         * element, bind this to the `<input is="iron-input">`'s `autocorrect` property.
73bcce88   luigser   COMPONENTS
312
313
314
315
316
317
         */
        autocorrect: {
          type: String,
          value: 'off'
        },
  
e619a3b0   Luigi Serra   Controllet cross ...
318
        /**
a1a3bc73   Luigi Serra   graphs updates
319
320
321
         * If you're using PaperInputBehavior to implement your own paper-input-like
         * element, bind this to the `<input is="iron-input">`'s `autosave` property,
         * used with type=search.
e619a3b0   Luigi Serra   Controllet cross ...
322
323
324
325
326
327
         */
        autosave: {
          type: String
        },
  
        /**
a1a3bc73   Luigi Serra   graphs updates
328
329
330
         * If you're using PaperInputBehavior to implement your own paper-input-like
         * element, bind this to the `<input is="iron-input">`'s `results` property,
         * used with type=search.
e619a3b0   Luigi Serra   Controllet cross ...
331
332
333
334
335
         */
        results: {
          type: Number
        },
  
eb240478   Luigi Serra   public room cards...
336
        /**
a1a3bc73   Luigi Serra   graphs updates
337
338
339
         * If you're using PaperInputBehavior to implement your own paper-input-like
         * element, bind this to the `<input is="iron-input">`'s `accept` property,
         * used with type=file.
eb240478   Luigi Serra   public room cards...
340
341
342
343
344
345
         */
        accept: {
          type: String
        },
  
        /**
a1a3bc73   Luigi Serra   graphs updates
346
347
348
         * If you're using PaperInputBehavior to implement your own paper-input-like
         * element, bind this to the`<input is="iron-input">`'s `multiple` property,
         * used with type=file.
eb240478   Luigi Serra   public room cards...
349
350
351
352
353
         */
        multiple: {
          type: Boolean
        },
  
73bcce88   luigser   COMPONENTS
354
355
356
        _ariaDescribedBy: {
          type: String,
          value: ''
a1a3bc73   Luigi Serra   graphs updates
357
358
359
360
361
        },
  
        _ariaLabelledBy: {
          type: String,
          value: ''
73bcce88   luigser   COMPONENTS
362
363
364
365
366
        }
  
      },
  
      listeners: {
a1a3bc73   Luigi Serra   graphs updates
367
368
        'addon-attached': '_onAddonAttached',
        'focus': '_onFocus'
73bcce88   luigser   COMPONENTS
369
370
371
372
373
374
      },
  
      observers: [
        '_focusedControlStateChanged(focused)'
      ],
  
a1a3bc73   Luigi Serra   graphs updates
375
376
377
378
379
380
381
382
      keyBindings: {
        'shift+tab:keydown': '_onShiftTabDown'
      },
  
      hostAttributes: {
        tabindex: 0
      },
  
73bcce88   luigser   COMPONENTS
383
384
385
386
387
388
389
      /**
       * Returns a reference to the input element.
       */
      get inputElement() {
        return this.$.input;
      },
  
a1a3bc73   Luigi Serra   graphs updates
390
391
392
393
394
395
396
397
398
399
400
401
402
403
      /**
       * Returns a reference to the focusable element.
       */
      get _focusableElement() {
        return this.inputElement;
      },
  
      registered: function() {
        // These types have some default placeholder text; overlapping
        // the label on top of it looks terrible. Auto-float the label in this case.
        this._typesThatHaveText = ["date", "datetime", "datetime-local", "month",
            "time", "week", "file"];
      },
  
73bcce88   luigser   COMPONENTS
404
405
      attached: function() {
        this._updateAriaLabelledBy();
a1a3bc73   Luigi Serra   graphs updates
406
407
408
409
410
  
        if (this.inputElement &&
            this._typesThatHaveText.indexOf(this.inputElement.type) !== -1) {
          this.alwaysFloatLabel = true;
        }
73bcce88   luigser   COMPONENTS
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
      },
  
      _appendStringWithSpace: function(str, more) {
        if (str) {
          str = str + ' ' + more;
        } else {
          str = more;
        }
        return str;
      },
  
      _onAddonAttached: function(event) {
        var target = event.path ? event.path[0] : event.target;
        if (target.id) {
          this._ariaDescribedBy = this._appendStringWithSpace(this._ariaDescribedBy, target.id);
        } else {
          var id = 'paper-input-add-on-' + Math.floor((Math.random() * 100000));
          target.id = id;
          this._ariaDescribedBy = this._appendStringWithSpace(this._ariaDescribedBy, id);
        }
      },
  
      /**
       * Validates the input element and sets an error style if needed.
e619a3b0   Luigi Serra   Controllet cross ...
435
436
       *
       * @return {boolean}
73bcce88   luigser   COMPONENTS
437
       */
e619a3b0   Luigi Serra   Controllet cross ...
438
439
440
441
442
      validate: function() {
        return this.inputElement.validate();
      },
  
      /**
a1a3bc73   Luigi Serra   graphs updates
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
       * Forward focus to inputElement
       */
      _onFocus: function() {
        if (!this._shiftTabPressed) {
          this._focusableElement.focus();
        }
      },
  
      /**
       * Handler that is called when a shift+tab keypress is detected by the menu.
       *
       * @param {CustomEvent} event A key combination event.
       */
      _onShiftTabDown: function(event) {
        var oldTabIndex = this.getAttribute('tabindex');
        this._shiftTabPressed = true;
        this.setAttribute('tabindex', '-1');
        this.async(function() {
          this.setAttribute('tabindex', oldTabIndex);
          this._shiftTabPressed = false;
        }, 1);
      },
  
      /**
e619a3b0   Luigi Serra   Controllet cross ...
467
468
469
470
471
472
       * If `autoValidate` is true, then validates the element.
       */
      _handleAutoValidate: function() {
        if (this.autoValidate)
          this.validate();
      },
73bcce88   luigser   COMPONENTS
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
  
      /**
       * Restores the cursor to its original position after updating the value.
       * @param {string} newValue The value that should be saved.
       */
      updateValueAndPreserveCaret: function(newValue) {
        // Not all elements might have selection, and even if they have the
        // right properties, accessing them might throw an exception (like for
        // <input type=number>)
        try {
          var start = this.inputElement.selectionStart;
          this.value = newValue;
  
          // The cursor automatically jumps to the end after re-setting the value,
          // so restore it to its original position.
          this.inputElement.selectionStart = start;
          this.inputElement.selectionEnd = start;
        } catch (e) {
          // Just set the value and give up on the caret.
          this.value = newValue;
        }
      },
  
      _computeAlwaysFloatLabel: function(alwaysFloatLabel, placeholder) {
        return placeholder || alwaysFloatLabel;
      },
  
      _focusedControlStateChanged: function(focused) {
        // IronControlState stops the focus and blur events in order to redispatch them on the host
        // element, but paper-input-container listens to those events. Since there are more
        // pending work on focus/blur in IronControlState, I'm putting in this hack to get the
        // input focus state working for now.
        if (!this.$.container) {
          this.$.container = Polymer.dom(this.root).querySelector('paper-input-container');
          if (!this.$.container) {
            return;
          }
        }
        if (focused) {
          this.$.container._onFocus();
        } else {
          this.$.container._onBlur();
        }
      },
  
      _updateAriaLabelledBy: function() {
        var label = Polymer.dom(this.root).querySelector('label');
        if (!label) {
          this._ariaLabelledBy = '';
          return;
        }
        var labelledBy;
        if (label.id) {
          labelledBy = label.id;
        } else {
          labelledBy = 'paper-input-label-' + new Date().getUTCMilliseconds();
          label.id = labelledBy;
        }
        this._ariaLabelledBy = labelledBy;
e619a3b0   Luigi Serra   Controllet cross ...
532
533
534
535
536
537
538
539
540
541
542
543
544
      },
  
      _onChange:function(event) {
        // In the Shadow DOM, the `change` event is not leaked into the
        // ancestor tree, so we must do this manually.
        // See https://w3c.github.io/webcomponents/spec/shadow/#events-that-are-not-leaked-into-ancestor-trees.
        if (this.shadowRoot) {
          this.fire(event.type, {sourceEvent: event}, {
            node: this,
            bubbles: event.bubbles,
            cancelable: event.cancelable
          });
        }
73bcce88   luigser   COMPONENTS
545
      }
73bcce88   luigser   COMPONENTS
546
547
548
    };
  
    /** @polymerBehavior */
a1a3bc73   Luigi Serra   graphs updates
549
550
551
552
553
    Polymer.PaperInputBehavior = [
      Polymer.IronControlState,
      Polymer.IronA11yKeysBehavior,
      Polymer.PaperInputBehaviorImpl
    ];
73bcce88   luigser   COMPONENTS
554
  </script>