@@ -12,6 +12,28 @@ import {
12
12
} from '../../date-picker/date-picker.utils' ;
13
13
import { IgxDateTimeEditorEventArgs , DatePartInfo , DatePart } from './date-time-editor.common' ;
14
14
15
+ /**
16
+ * Date Time Editor provides a functionality to input, edit and format date and time.
17
+ *
18
+ * @igxModule IgxDateTimeEditorModule
19
+ *
20
+ * @igxKeywords date, time, editor
21
+ *
22
+ * @igxGroup Scheduling
23
+ *
24
+ * @remarks
25
+ *
26
+ * The Ignite UI Date Time Editor Directive makes it easy for developers to manipulate date/time user input. It requires input in a specified or
27
+ * default input format which is visible in the input element as a placeholder. It allows to input only date(ex: 'dd/MM/yyyy'), only time(ex:'HH:mm tt') or both at once if needed.
28
+ * Supports display format that may differ from the input format. Provides methods to increment and decrement any specific/targeted `DatePart`.
29
+ *
30
+ * @example
31
+ * ```html
32
+ * <igx-input-group>
33
+ * <input type="text" igxInput [igxDateTimeEditor]="'dd/MM/yyyy'" [displayFormat]="'shortDate'" [(ngModel)]="date"/>
34
+ * </igx-input-group>
35
+ * ```
36
+ */
15
37
@Directive ( {
16
38
selector : '[igxDateTimeEditor]' ,
17
39
exportAs : 'igxDateTimeEditor' ,
@@ -20,28 +42,65 @@ import { IgxDateTimeEditorEventArgs, DatePartInfo, DatePart } from './date-time-
20
42
]
21
43
} )
22
44
export class IgxDateTimeEditorDirective extends IgxMaskDirective implements OnInit , ControlValueAccessor {
45
+ /**
46
+ * An @Input property that allows you to set the locale settings used in `displayFormat`.
47
+ * @example
48
+ *```html
49
+ * <input igxDateTimeEditor [locale]="'en'">
50
+ *```
51
+ */
23
52
@Input ( )
24
53
public locale = 'en' ;
25
54
55
+ /**
56
+ * An @Input property that allows you to set the minimum possible value the editor will allow.
57
+ * @example
58
+ *```html
59
+ * <input igxDateTimeEditor [minValue]="minDate">
60
+ *```
61
+ */
26
62
@Input ( )
27
63
public minValue : string | Date ;
28
64
65
+ /**
66
+ * An @Input property that allows you to set the maximum possible value the editor will allow.
67
+ * @example
68
+ *```html
69
+ * <input igxDateTimeEditor [maxValue]="maxDate">
70
+ *```
71
+ */
29
72
@Input ( )
30
73
public maxValue : string | Date ;
31
74
32
- @Input ( )
33
- public promptChar : string ;
34
-
75
+ /**
76
+ * An @Input property that allows you to specify if the currently spun date segment should loop over.
77
+ * @example
78
+ *```html
79
+ * <input igxDateTimeEditor [isSpinLoop]="false">
80
+ *```
81
+ */
35
82
@Input ( )
36
83
public isSpinLoop = true ;
37
84
85
+ /**
86
+ * An @Input property that allows you to set both pre-defined format options such as `shortDate` and `longDate`,
87
+ * as well as constructed format string using characters supported by `DatePipe`, e.g. `EE/MM/yyyy`.
88
+ * @example
89
+ *```html
90
+ * <input igxDateTimeEditor [displayFormat]="'shortDate'">
91
+ *```
92
+ */
38
93
@Input ( )
39
94
public displayFormat : string ;
40
95
41
- public get inputFormat ( ) : string {
42
- return this . _format ;
43
- }
44
-
96
+ /**
97
+ * An @Input property that allows you to get/set the expected user input format(and placeholder).
98
+ * for the editor.
99
+ * @example
100
+ *```html
101
+ * <input [igxDateTimeEditor]="'dd/MM/yyyy'">
102
+ *```
103
+ */
45
104
@Input ( `igxDateTimeEditor` )
46
105
public set inputFormat ( value : string ) {
47
106
if ( value ) {
@@ -51,19 +110,44 @@ export class IgxDateTimeEditorDirective extends IgxMaskDirective implements OnIn
51
110
this . mask = value . indexOf ( 'tt' ) !== - 1 ? mask . substring ( 0 , mask . length - 2 ) + 'LL' : mask ;
52
111
}
53
112
54
- public get value ( ) {
55
- return this . _value ;
113
+ public get inputFormat ( ) : string {
114
+ return this . _format ;
56
115
}
57
116
117
+ /**
118
+ * An @Input property that gets/sets the component date value.
119
+ * @example
120
+ * ```html
121
+ * <input igxDateTimeEditor [value]="date">
122
+ * ```
123
+ */
58
124
@Input ( )
59
125
public set value ( value : Date ) {
60
126
this . _value = value ;
61
127
this . updateMask ( ) ;
62
128
}
63
129
130
+ public get value ( ) {
131
+ return this . _value ;
132
+ }
133
+
134
+ /**
135
+ * Emitted when the editor's value has changed.
136
+ * @example
137
+ * ```html
138
+ * <input igxDateTimeEditor (valueChanged)="onValueChanged($event)"/>
139
+ * ```
140
+ */
64
141
@Output ( )
65
142
public valueChanged = new EventEmitter < IgxDateTimeEditorEventArgs > ( ) ;
66
143
144
+ /**
145
+ * Emitted when the editor is not within a specified range.
146
+ * @example
147
+ * ```html
148
+ * <input igxDateTimeEditor [minValue]="minDate" [maxValue]="maxDate" (validationFailed)="onValidationFailed($event)"/>
149
+ * ```
150
+ */
67
151
@Output ( )
68
152
public validationFailed = new EventEmitter < IgxDateTimeEditorEventArgs > ( ) ;
69
153
@@ -110,18 +194,24 @@ export class IgxDateTimeEditorDirective extends IgxMaskDirective implements OnIn
110
194
this . _document = this . document as Document ;
111
195
}
112
196
113
- /** @hidden */
197
+ /** @hidden @internal */
114
198
public ngOnInit ( ) : void {
115
199
this . _dateTimeFormatParts = DatePickerUtil . parseDateTimeFormat ( this . inputFormat ) ;
116
200
this . renderer . setAttribute ( this . nativeElement , 'placeholder' , this . inputFormat ) ;
117
201
this . updateMask ( ) ;
118
202
}
119
-
203
+ /**
204
+ * Clear the input element value.
205
+ */
120
206
public clear ( ) : void {
121
207
this . updateValue ( null ) ;
122
208
this . updateMask ( ) ;
123
209
}
124
210
211
+ /**
212
+ * Increment specified DatePart.
213
+ * @param datePart The optional DatePart to increment. Defaults to Date or Hours(when Date is absent from the inputFormat - ex:'HH:mm').
214
+ */
125
215
public increment ( datePart ?: DatePart ) : void {
126
216
const newValue = datePart
127
217
? this . calculateValueOnSpin ( datePart , 1 )
@@ -130,6 +220,11 @@ export class IgxDateTimeEditorDirective extends IgxMaskDirective implements OnIn
130
220
this . updateMask ( ) ;
131
221
}
132
222
223
+ /**
224
+ * Decrement specified DatePart.
225
+ *
226
+ * @param datePart The optional DatePart to decrement. Defaults to Date or Hours(when Date is absent from the inputFormat - ex:'HH:mm').
227
+ */
133
228
public decrement ( datePart ?: DatePart ) : void {
134
229
const newValue = datePart
135
230
? this . calculateValueOnSpin ( datePart , - 1 )
@@ -138,21 +233,21 @@ export class IgxDateTimeEditorDirective extends IgxMaskDirective implements OnIn
138
233
this . updateMask ( ) ;
139
234
}
140
235
141
- /** @hidden */
236
+ /** @hidden @internal */
142
237
public writeValue ( value : any ) : void {
143
238
this . value = value ;
144
239
}
145
240
146
- /** @hidden */
241
+ /** @hidden @internal */
147
242
public registerOnChange ( fn : any ) : void { this . onChangeCallback = fn ; }
148
243
149
- /** @hidden */
244
+ /** @hidden @internal */
150
245
public registerOnTouched ( fn : any ) : void { this . onTouchCallback = fn ; }
151
246
152
- /** @hidden */
247
+ /** @hidden @internal */
153
248
public setDisabledState ?( isDisabled : boolean ) : void { }
154
249
155
- /** @hidden */
250
+ /** @hidden @internal */
156
251
public onKeyDown ( event : KeyboardEvent ) {
157
252
super . onKeyDown ( event ) ;
158
253
if ( event . key === KEYS . UP_ARROW || event . key === KEYS . UP_ARROW_IE ||
@@ -169,15 +264,15 @@ export class IgxDateTimeEditorDirective extends IgxMaskDirective implements OnIn
169
264
this . moveCursor ( event ) ;
170
265
}
171
266
172
- /** @hidden */
267
+ /** @hidden @internal */
173
268
public onFocus ( ) : void {
174
269
this . _isFocused = true ;
175
270
this . onTouchCallback ( ) ;
176
271
this . updateMask ( ) ;
177
272
super . onFocus ( ) ;
178
273
}
179
274
180
- /** @hidden */
275
+ /** @hidden @internal */
181
276
public onBlur ( event ) : void {
182
277
this . _isFocused = false ;
183
278
this . updateValue ( this . value ) ;
@@ -186,7 +281,7 @@ export class IgxDateTimeEditorDirective extends IgxMaskDirective implements OnIn
186
281
super . onBlur ( event ) ;
187
282
}
188
283
189
- /** @hidden */
284
+ /** @hidden @internal */
190
285
public onInputChanged ( ) : void {
191
286
// the mask must be updated before any date operations
192
287
super . onInputChanged ( ) ;
@@ -204,7 +299,7 @@ export class IgxDateTimeEditorDirective extends IgxMaskDirective implements OnIn
204
299
}
205
300
}
206
301
207
- /** @hidden */
302
+ /** @hidden @internal */
208
303
public updateMask ( ) {
209
304
if ( ! this . value || ! this . isValidDate ( this . value ) ) {
210
305
this . inputValue = this . emptyMask ;
0 commit comments