Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit b87d212

Browse files
author
Jacek Jaskólski
committedAug 18, 2017
feat(datetime): add default picker value input
1 parent 26b09f1 commit b87d212

File tree

3 files changed

+28
-1
lines changed

3 files changed

+28
-1
lines changed
 

‎src/components/datetime/datetime.ts

+21-1
Original file line numberDiff line numberDiff line change
@@ -319,6 +319,14 @@ export class DateTime extends BaseInput<DateTimeData> implements AfterContentIni
319319
*/
320320
@Input() displayFormat: string;
321321

322+
/**
323+
* @input {string} The default datetime selected in picker modal if field value is empty.
324+
* Value must be a date string following the
325+
* [ISO 8601 datetime format standard](https://www.w3.org/TR/NOTE-datetime),
326+
* `1996-12-19`.
327+
*/
328+
@Input() pickerDefault: string;
329+
322330
/**
323331
* @input {string} The format of the date and time picker columns the user selects.
324332
* A datetime input can have one or many datetime parts, each getting their
@@ -596,7 +604,7 @@ export class DateTime extends BaseInput<DateTimeData> implements AfterContentIni
596604

597605
// cool, we've loaded up the columns with options
598606
// preselect the option for this column
599-
const optValue = getValueFromFormat(this.getValue(), format);
607+
const optValue = getValueFromFormat(this.getValueOrDefault(), format);
600608
const selectedIndex = column.options.findIndex(opt => opt.value === optValue);
601609
if (selectedIndex >= 0) {
602610
// set the select index for this column's options
@@ -772,6 +780,18 @@ export class DateTime extends BaseInput<DateTimeData> implements AfterContentIni
772780
return this._value;
773781
}
774782

783+
/**
784+
* @hidden
785+
*/
786+
getValueOrDefault(): DateTimeData {
787+
if (this.hasValue()) {
788+
return this._value;
789+
}
790+
const _default = {};
791+
updateDate(_default, this.pickerDefault);
792+
return _default;
793+
}
794+
775795
/**
776796
* @hidden
777797
*/

‎src/components/datetime/test/basic/pages/root-page/root-page.html

+6
Original file line numberDiff line numberDiff line change
@@ -77,6 +77,11 @@
7777
<ion-datetime monthValues="6,7,8" yearValues="2014,2015" dayValues="01,02,03,04,05,06,08,09,10, 11, 12, 13, 14" displayFormat="DD/MMM/YYYY" [(ngModel)]="specificDaysMonthsYears"></ion-datetime>
7878
</ion-item>
7979

80+
<ion-item>
81+
<ion-label>Default value</ion-label>
82+
<ion-datetime max="2100" pickerDefault="2017-08-06" [(ngModel)]="defaultValue"></ion-datetime>
83+
</ion-item>
84+
8085
<p aria-hidden="true" padding>
8186
<code>monthOnly: {{monthOnly}}</code><br>
8287
<code>wwwInvented: {{wwwInvented}}</code><br>
@@ -88,6 +93,7 @@
8893
<code>time: {{time}}</code><br>
8994
<code>Leap year, summer months: {{leapYearsSummerMonths}}</code><br>
9095
<code>Specific days/months/years: {{specificDaysMonthsYears}}</code><br>
96+
<code>Default value: {{defaultValue}}</code><br>
9197
</p>
9298

9399
<p>

‎src/components/datetime/test/basic/pages/root-page/root-page.ts

+1
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@ export class RootPage {
1717
leapYearsSummerMonths = '';
1818
convertedDate = '';
1919
specificDaysMonthsYears = '';
20+
defaultValue: any;
2021

2122
leapYearsArray = [2020, 2016, 2008, 2004, 2000, 1996];
2223

0 commit comments

Comments
 (0)
Please sign in to comment.