This repository has been archived by the owner on May 15, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathdate-input.js
217 lines (189 loc) · 5.56 KB
/
date-input.js
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
/**
@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
*/
import '@polymer/polymer/polymer-legacy.js';
import '@polymer/iron-input/iron-input.js';
import '@polymer/iron-flex-layout/iron-flex-layout.js';
import '@polymer/paper-input/paper-input-container.js';
import '@polymer/paper-styles/default-theme.js';
import '@polymer/paper-styles/typography.js';
import './date-validator.js';
import {IronA11yKeysBehavior} from '@polymer/iron-a11y-keys-behavior/iron-a11y-keys-behavior.js';
import {IronValidatableBehavior} from '@polymer/iron-validatable-behavior/iron-validatable-behavior.js';
import {Polymer} from '@polymer/polymer/lib/legacy/polymer-fn.js';
import {html} from '@polymer/polymer/lib/utils/html-tag.js';
Polymer({
_template: html`
<style>
span {
@apply --paper-input-container-font;
opacity: 0.33;
text-align: center;
}
input[is="iron-input"], iron-input input {
position: relative; /* to make a stacking context */
outline: none;
box-shadow: none;
padding: 0;
width: 100%;
background: transparent;
border: none;
color: var(--paper-input-container-input-color, var(--primary-text-color));
text-align: center;
@apply --layout-flex;
@apply --paper-font-subhead;
@apply --paper-input-container-input;
}
.container {
@apply --layout-horizontal;
}
</style>
<date-validator id="validator"></date-validator>
<span aria-hidden id="monthLabel" hidden>Month</span>
<span aria-hidden id="yearLabel" hidden>Year</span>
<div class="container">
<iron-input
id="expirationMonth"
bind-value="{{month}}"
allowed-pattern="[0-9]"
invalid="{{invalid}}">
<input
id="nativeMonthInput"
aria-labelledby$="[[_computeAriaLabel(ariaLabelPrefix,'monthLabel')]]"
required$="[[required]]"
maxlength="2"
placeholder="MM"
autocomplete="cc-exp-month"
type="tel"
disabled$="[[disabled]]"
autofocus$="[[autofocus]]"
inputmode$="[[inputmode]]"
readonly$="[[readonly]]">
</iron-input>
<span>/</span>
<iron-input
id="expirationYear"
bind-value="{{year}}"
allowed-pattern="[0-9]"
invalid="{{invalid}}">
<input
id="nativeYearInput"
aria-labelledby$="[[_computeAriaLabel(ariaLabelPrefix,'yearLabel')]]"
required$="[[required]]"
maxlength="2"
placeholder="YY"
autocomplete="cc-exp-year"
type="tel"
disabled$="[[disabled]]"
inputmode$="[[inputmode]]"
readonly$="[[readonly]]">
</iron-input>
</div>
`,
is: 'date-input',
behaviors: [IronA11yKeysBehavior, IronValidatableBehavior],
properties: {
/**
* Set to true to mark the input as required.
*/
required: {
type: Boolean,
value: false,
},
/**
* The month component of the date displayed.
*/
month: {
type: Number,
},
/**
* The year component of the date displayed.
*/
year: {
type: Number,
},
/**
* The date object used by the validator. Has two properties, month and
* year.
*/
date: {
notify: true,
type: Object,
},
validator: {
type: String,
value: 'date-validator',
},
ariaLabelPrefix: {
type: String,
},
/**
* Set to true to disable the month and year input elements.
*/
disabled: {
type: Boolean,
value: false,
},
/**
* Set to true to autofocus the month input element.
*/
autofocus: {
type: Boolean,
},
/**
* Bound to the month and year input elements' `inputmode` property.
*/
inputmode: {
type: String,
},
/**
* Set to true to mark the month and year inputs as not editable.
*/
readonly: {
type: Boolean,
value: false,
}
},
/**
* @type {!Object}
*/
keyBindings: {'/': '_selectYear'},
observers: ['_computeDate(month, year)'],
created: function() {
// Polymer 2+ does not call _computeDate observer before
// paper-input-container calls _handleValue in the parent's
// connectedCallback unlike in Polymer 1
this._computeDate('', '');
},
_selectYear: function() {
var yearInput = this.$.nativeYearInput || this.$.expirationYear;
yearInput.focus();
},
_computeDate: function(month, year) {
// Months are 0-11.
this.date = {month: month, year: year};
// Advance cursor to year after month entry
if (month && month.length === 2) {
this._selectYear();
}
},
validate: function() {
// Empty, non-required input is valid.
if (!this.required && this.month == '' && this.year == '') {
return true;
}
this.invalid = !this.$.validator.validate(this.date);
this.fire('iron-input-validate');
return !this.invalid;
},
_computeAriaLabel: function(dateLabel, monthLabel) {
return dateLabel + ' ' + monthLabel;
}
});