@nativescript/core
Version:
A JavaScript library providing an easy to use api for interacting with iOS and Android platform APIs.
133 lines • 5.41 kB
JavaScript
import { DatePickerBase, yearProperty, monthProperty, dayProperty, dateProperty, maxDateProperty, minDateProperty } from './date-picker-common';
import { TimePicker } from '../time-picker';
export * from './date-picker-common';
let DateChangedListener;
function initializeDateChangedListener() {
if (DateChangedListener) {
return;
}
var DateChangedListenerImpl = /** @class */ (function (_super) {
__extends(DateChangedListenerImpl, _super);
function DateChangedListenerImpl(owner) {
var _this = _super.call(this) || this;
_this.owner = owner;
return global.__native(_this);
}
DateChangedListenerImpl.prototype.onDateChanged = function (picker, year, month, day) {
var owner = this.owner;
var dateChanged = false;
if (year !== owner.year) {
yearProperty.nativeValueChange(owner, year);
dateChanged = true;
}
if (month !== owner.month - 1) {
monthProperty.nativeValueChange(owner, month + 1);
dateChanged = true;
}
if (day !== owner.day) {
dayProperty.nativeValueChange(owner, day);
dateChanged = true;
}
if (dateChanged || (owner.showTime && owner.timePicker)) {
var newDate = void 0;
if (owner.showTime && owner.timePicker) {
var dateTime = owner.timePicker.time;
newDate = new Date(year, month, day, dateTime.getHours(), dateTime.getMinutes(), dateTime.getSeconds(), dateTime.getMilliseconds());
}
else {
newDate = new Date(year, month, day);
}
dateProperty.nativeValueChange(owner, newDate);
}
};
var _a;
DateChangedListenerImpl = __decorate([
Interfaces([android.widget.DatePicker.OnDateChangedListener]),
__metadata("design:paramtypes", [typeof (_a = typeof DatePicker !== "undefined" && DatePicker) === "function" ? _a : Object])
], DateChangedListenerImpl);
return DateChangedListenerImpl;
}(java.lang.Object));
DateChangedListener = DateChangedListenerImpl;
}
export class DatePicker extends DatePickerBase {
createNativeView() {
const picker = new android.widget.DatePicker(this._context);
picker.setCalendarViewShown(false);
return picker;
}
initNativeView() {
super.initNativeView();
initializeDateChangedListener();
const nativeView = this.nativeViewProtected;
const listener = new DateChangedListener(this);
nativeView.init(this.year, this.month - 1, this.day, listener);
nativeView.listener = listener;
if (this.showTime) {
this.timePicker = new TimePicker();
this.timePicker.width = this.width;
this.timePicker.height = this.height;
this.timePicker.on('timeChange', (args) => {
this.updateNativeDate();
});
this.parent.addChild(this.timePicker);
}
}
disposeNativeView() {
if (this.timePicker) {
this.timePicker.disposeNativeView();
}
if (this.nativeViewProtected?.listener) {
this.nativeViewProtected.listener.owner = null;
}
super.disposeNativeView();
}
updateNativeDate() {
const nativeView = this.nativeViewProtected;
const year = typeof this.year === 'number' ? this.year : nativeView.getYear();
const month = typeof this.month === 'number' ? this.month - 1 : nativeView.getMonth();
const day = typeof this.day === 'number' ? this.day : nativeView.getDayOfMonth();
if (this.showTime && this.timePicker) {
const time = this.timePicker.time || new Date();
this.date = new Date(year, month, day, time.getHours(), time.getMinutes(), time.getSeconds(), time.getMilliseconds());
}
else {
this.date = new Date(year, month, day);
}
}
[yearProperty.setNative](value) {
if (this.nativeViewProtected.getYear() !== value) {
this.updateNativeDate();
}
}
[monthProperty.setNative](value) {
if (this.nativeViewProtected.getMonth() !== value - 1) {
this.updateNativeDate();
}
}
[dayProperty.setNative](value) {
if (this.nativeViewProtected.getDayOfMonth() !== value) {
this.updateNativeDate();
}
}
[dateProperty.setNative](value) {
const nativeView = this.nativeViewProtected;
if (value && (nativeView.getDayOfMonth() !== value.getDate() || nativeView.getMonth() !== value.getMonth() || nativeView.getYear() !== value.getFullYear())) {
nativeView.updateDate(value.getFullYear(), value.getMonth(), value.getDate());
}
}
[maxDateProperty.getDefault]() {
return this.nativeViewProtected.getMaxDate();
}
[maxDateProperty.setNative](value) {
const newValue = value instanceof Date ? value.getTime() : value;
this.nativeViewProtected.setMaxDate(newValue);
}
[minDateProperty.getDefault]() {
return this.nativeViewProtected.getMinDate();
}
[minDateProperty.setNative](value) {
const newValue = value instanceof Date ? value.getTime() : value;
this.nativeViewProtected.setMinDate(newValue);
}
}
//# sourceMappingURL=index.android.js.map