From 0698f73185f4a783cb38d717c976498ef39afc45 Mon Sep 17 00:00:00 2001 From: windy <1374721899@qq.com> Date: Thu, 18 Mar 2021 16:46:03 +0800 Subject: [PATCH] =?UTF-8?q?BI-82267=20fineui=E6=97=B6=E9=97=B4=E6=8E=A7?= =?UTF-8?q?=E4=BB=B6=E4=BA=A4=E4=BA=92=E4=BC=98=E5=8C=96?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/widget/date/calendar/picker.date.js | 20 +++--- src/widget/date/calendar/picker.year.js | 20 +++--- src/widget/datepane/datepane.js | 62 ++++++++++++++----- src/widget/datetimepane/datetimepane.js | 57 +++++++++++++---- src/widget/dynamicdate/dynamicdate.card.js | 60 +++++++++++++----- .../dynamicdate/dynamicdate.param.item.js | 28 ++++----- src/widget/dynamicdate/dynamicdate.popup.js | 11 +++- src/widget/year/card.dynamic.year.js | 51 +++++++++++---- src/widget/year/popup.year.js | 7 ++- .../yearmonth/card.dynamic.yearmonth.js | 44 ++++++++++--- src/widget/yearmonth/popup.yearmonth.js | 7 ++- .../yearquarter/card.dynamic.yearquarter.js | 44 ++++++++++--- src/widget/yearquarter/popup.yearquarter.js | 7 ++- 13 files changed, 307 insertions(+), 111 deletions(-) diff --git a/src/widget/date/calendar/picker.date.js b/src/widget/date/calendar/picker.date.js index f351443ef..458da3d7d 100644 --- a/src/widget/date/calendar/picker.date.js +++ b/src/widget/date/calendar/picker.date.js @@ -39,8 +39,8 @@ BI.DatePicker = BI.inherit(BI.Widget, { }); } self.fireEvent(BI.DatePicker.EVENT_CHANGE); - self._checkLeftValid(); - self._checkRightValid(); + // self._checkLeftValid(); + // self._checkRightValid(); }); this.right = BI.createWidget({ @@ -63,8 +63,8 @@ BI.DatePicker = BI.inherit(BI.Widget, { }); } self.fireEvent(BI.DatePicker.EVENT_CHANGE); - self._checkLeftValid(); - self._checkRightValid(); + // self._checkLeftValid(); + // self._checkRightValid(); }); this.year = BI.createWidget({ @@ -194,16 +194,16 @@ BI.DatePicker = BI.inherit(BI.Widget, { this.options.min = minDate; this.year.setMinDate(minDate); this._refreshMonth(this._month); - this._checkLeftValid(); - this._checkRightValid(); + // this._checkLeftValid(); + // this._checkRightValid(); }, setMaxDate: function (maxDate) { this.options.max = maxDate; this.year.setMaxDate(maxDate); this._refreshMonth(this._month); - this._checkLeftValid(); - this._checkRightValid(); + // this._checkLeftValid(); + // this._checkRightValid(); }, setValue: function (ob) { @@ -212,8 +212,8 @@ BI.DatePicker = BI.inherit(BI.Widget, { this.year.setValue(ob.year); this._refreshMonth(this._month); this.month.setValue(ob.month); - this._checkLeftValid(); - this._checkRightValid(); + // this._checkLeftValid(); + // this._checkRightValid(); }, getValue: function () { diff --git a/src/widget/date/calendar/picker.year.js b/src/widget/date/calendar/picker.year.js index 1a179d650..f07941be1 100644 --- a/src/widget/date/calendar/picker.year.js +++ b/src/widget/date/calendar/picker.year.js @@ -28,8 +28,8 @@ BI.YearPicker = BI.inherit(BI.Widget, { this.left.on(BI.IconButton.EVENT_CHANGE, function () { self.setValue(self.year.getValue() - 1); self.fireEvent(BI.YearPicker.EVENT_CHANGE); - self._checkLeftValid(); - self._checkRightValid(); + // self._checkLeftValid(); + // self._checkRightValid(); }); this.right = BI.createWidget({ @@ -42,8 +42,8 @@ BI.YearPicker = BI.inherit(BI.Widget, { this.right.on(BI.IconButton.EVENT_CHANGE, function () { self.setValue(self.year.getValue() + 1); self.fireEvent(BI.YearPicker.EVENT_CHANGE); - self._checkLeftValid(); - self._checkRightValid(); + // self._checkLeftValid(); + // self._checkRightValid(); }); this.year = BI.createWidget({ @@ -105,23 +105,23 @@ BI.YearPicker = BI.inherit(BI.Widget, { setMinDate: function (minDate) { this.options.min = minDate; this.year.setMinDate(minDate); - this._checkLeftValid(); - this._checkRightValid(); + // this._checkLeftValid(); + // this._checkRightValid(); }, setMaxDate: function (maxDate) { this.options.max = maxDate; this.year.setMaxDate(maxDate); - this._checkLeftValid(); - this._checkRightValid(); + // this._checkLeftValid(); + // this._checkRightValid(); }, setValue: function (v) { this._year = v; this.year.setValue(v); - this._checkLeftValid(); - this._checkRightValid(); + // this._checkLeftValid(); + // this._checkRightValid(); }, getValue: function () { diff --git a/src/widget/datepane/datepane.js b/src/widget/datepane/datepane.js index d1178e91d..d83b72022 100644 --- a/src/widget/datepane/datepane.js +++ b/src/widget/datepane/datepane.js @@ -88,20 +88,51 @@ BI.DynamicDatePane = BI.inherit(BI.Widget, { case BI.DynamicDatePane.Dynamic: default: return { - type: "bi.dynamic_date_card", - min: o.minDate, - max: o.maxDate, - listeners: [{ - eventName: "EVENT_CHANGE", - action: function () { - if (self._checkValue(self.getValue())) { - self.fireEvent(BI.DynamicDatePane.EVENT_CHANGE); - } + type: "bi.vtape", + items: [{ + type: "bi.dynamic_date_card", + min: o.minDate, + max: o.maxDate, + ref: function () { + self.dynamicPane = this; } - }], - ref: function () { - self.dynamicPane = this; - } + }, { + el: { + type: "bi.center", + items: [{ + type: "bi.text_button", + cls: "bi-high-light bi-border-top", + shadow: true, + text: BI.i18nText("BI-Basic_Clear"), + textHeight: 23, + listeners: [{ + eventName: BI.TextButton.EVENT_CHANGE, + action: function () { + self.setValue(); + self.fireEvent(BI.DynamicDatePane.EVENT_CHANGE); + } + }] + }, { + type: "bi.text_button", + cls: "bi-border-left bi-high-light bi-border-top", + textHeight: 23, + shadow: true, + text: BI.i18nText("BI-Basic_OK"), + listeners: [{ + eventName: BI.TextButton.EVENT_CHANGE, + action: function () { + var type = self.dateTab.getSelect(); + if (type === BI.DynamicDateCombo.Dynamic) { + self.dynamicPane.checkValidation(true) && self.fireEvent(BI.DynamicDatePopup.BUTTON_OK_EVENT_CHANGE); + } else { + self.fireEvent(BI.DynamicDatePane.EVENT_CHANGE); + } + } + }] + }] + }, + height: 24 + }] }; } } @@ -167,9 +198,10 @@ BI.DynamicDatePane = BI.inherit(BI.Widget, { }, getValue: function () { + var type = this.dateTab.getSelect(); return { - type: this.dateTab.getSelect(), - value: this.dateTab.getValue() + type: type, + value: type === BI.DynamicDatePane.Static ? this.dateTab.getValue() : this.dynamicPane.getValue() }; } }); diff --git a/src/widget/datetimepane/datetimepane.js b/src/widget/datetimepane/datetimepane.js index d80617671..4b971aa8c 100644 --- a/src/widget/datetimepane/datetimepane.js +++ b/src/widget/datetimepane/datetimepane.js @@ -88,20 +88,51 @@ BI.DynamicDateTimePane = BI.inherit(BI.Widget, { case BI.DynamicDateTimePane.Dynamic: default: return { - type: "bi.dynamic_date_card", - min: o.minDate, - max: o.maxDate, - listeners: [{ - eventName: "EVENT_CHANGE", - action: function () { - if(self._checkValue(self.getValue())) { - self.fireEvent("EVENT_CHANGE"); - } + type: "bi.vtape", + items: [{ + type: "bi.dynamic_date_card", + min: o.minDate, + max: o.maxDate, + ref: function () { + self.dynamicPane = this; } - }], - ref: function () { - self.dynamicPane = this; - } + }, { + el: { + type: "bi.center", + items: [{ + type: "bi.text_button", + cls: "bi-high-light bi-border-top", + shadow: true, + text: BI.i18nText("BI-Basic_Clear"), + textHeight: 23, + listeners: [{ + eventName: BI.TextButton.EVENT_CHANGE, + action: function () { + self.setValue(); + self.fireEvent(BI.DynamicDatePane.EVENT_CHANGE); + } + }] + }, { + type: "bi.text_button", + cls: "bi-border-left bi-high-light bi-border-top", + textHeight: 23, + shadow: true, + text: BI.i18nText("BI-Basic_OK"), + listeners: [{ + eventName: BI.TextButton.EVENT_CHANGE, + action: function () { + var type = self.dateTab.getSelect(); + if (type === BI.DynamicDateCombo.Dynamic) { + self.dynamicPane.checkValidation(true) && self.fireEvent(BI.DynamicDatePopup.BUTTON_OK_EVENT_CHANGE); + } else { + self.fireEvent(BI.DynamicDatePane.EVENT_CHANGE); + } + } + }] + }] + }, + height: 24 + }] }; } } diff --git a/src/widget/dynamicdate/dynamicdate.card.js b/src/widget/dynamicdate/dynamicdate.card.js index c93d02d51..41598d7aa 100644 --- a/src/widget/dynamicdate/dynamicdate.card.js +++ b/src/widget/dynamicdate/dynamicdate.card.js @@ -142,18 +142,6 @@ BI.DynamicDateCard = BI.inherit(BI.Widget, { el: { type: "bi.dynamic_date_param_item", validationChecker: BI.bind(self._checkDate, self), - errorText: function () { - var start = BI.parseDateTime(o.min, "%Y-%X-%d"); - var end = BI.parseDateTime(o.max, "%Y-%X-%d"); - return BI.i18nText("BI-Basic_Date_Range_Error", - start.getFullYear(), - start.getMonth() + 1, - start.getDate(), - end.getFullYear(), - end.getMonth() + 1, - end.getDate() - ); - }, dateType: value.dateType, value: value.value, offset: value.offset, @@ -162,6 +150,11 @@ BI.DynamicDateCard = BI.inherit(BI.Widget, { action: function () { self.fireEvent("EVENT_CHANGE"); } + }, { + eventName: "EVENT_INPUT_CHANGE", + action: function () { + BI.Bubbles.hide("dynamic-date-error"); + } }] }, tgap: idx === 0 ? 5 : 0 @@ -219,7 +212,7 @@ BI.DynamicDateCard = BI.inherit(BI.Widget, { _checkDate: function (obj) { var o = this.options; - var date = BI.DynamicDateHelper.getCalculation(BI.extend(this.getValue(), this._digestDateTypeValue(obj))); + var date = BI.DynamicDateHelper.getCalculation(BI.extend(this._getValue(), this._digestDateTypeValue(obj))); return !BI.checkDateVoid(date.getFullYear(), date.getMonth() + 1, date.getDate(), o.min, o.max)[0]; }, @@ -358,7 +351,7 @@ BI.DynamicDateCard = BI.inherit(BI.Widget, { this.resultPane.populate(this._getParamJson(valuesItems, v.position)); }, - getValue: function () { + _getValue: function () { var self = this; var valueMap = {}; var selectValues = this.checkgroup.getValue(); @@ -373,8 +366,45 @@ BI.DynamicDateCard = BI.inherit(BI.Widget, { var value = buttons[0].getValue(); valueMap.workDay = (value.offset === 0 ? -value.value : +value.value); } + return valueMap; - } + }, + + _getErrorText: function () { + var o = this.options; + var start = BI.parseDateTime(o.min, "%Y-%X-%d"); + var end = BI.parseDateTime(o.max, "%Y-%X-%d"); + + return BI.i18nText("BI-Basic_Date_Range_Error", + start.getFullYear(), + start.getMonth() + 1, + start.getDate(), + end.getFullYear(), + end.getMonth() + 1, + end.getDate() + ); + }, + + getValue: function () { + return this.checkValidation() ? this._getValue() : {}; + }, + + checkValidation: function (show) { + var buttons = this.resultPane.getAllButtons(); + var errorText; + var invalid = BI.any(buttons, function (idx, button) { + return button.checkValidation && !button.checkValidation(); + }); + if (invalid) { + errorText = BI.i18nText("BI-Please_Input_Natural_Number"); + } else { + invalid = !this._checkDate(this._getValue()); + errorText = this._getErrorText(); + } + invalid && show && BI.Bubbles.show("dynamic-date-error", errorText, this.resultPane); + + return !invalid; + }, }); BI.shortcut("bi.dynamic_date_card", BI.DynamicDateCard); diff --git a/src/widget/dynamicdate/dynamicdate.param.item.js b/src/widget/dynamicdate/dynamicdate.param.item.js index 2399568ef..9cb96a26d 100644 --- a/src/widget/dynamicdate/dynamicdate.param.item.js +++ b/src/widget/dynamicdate/dynamicdate.param.item.js @@ -6,9 +6,6 @@ BI.DynamicDateParamItem = BI.inherit(BI.Widget, { validationChecker: function() { return true; }, - errorText: function () { - return BI.i18nText("BI-Please_Input_Natural_Number"); - }, value: 0, offset: 0, height: 24 @@ -24,23 +21,14 @@ BI.DynamicDateParamItem = BI.inherit(BI.Widget, { cls: "bi-border", height: 22, validationChecker: function (v) { - return BI.isNaturalNumber(v) && o.validationChecker(BI.extend({}, self.getValue(), { - value: v - })); + return BI.isNaturalNumber(v); }, value: o.value, ref: function () { self.editor = this; }, - errorText: function (v) { - if (BI.isEmptyString(v)) { - return BI.i18nText("BI-Basic_Please_Input_Content"); - } - if (!BI.isNumeric(v)) { - return BI.i18nText("BI-Please_Input_Natural_Number"); - } - - return o.errorText(v); + errorText: function () { + return BI.i18nText("BI-Please_Input_Natural_Number"); }, allowBlank: false, listeners: [{ @@ -48,6 +36,11 @@ BI.DynamicDateParamItem = BI.inherit(BI.Widget, { action: function () { self.fireEvent(BI.DynamicDateParamItem.EVENT_CHANGE); } + }, { + eventName: BI.SignEditor.EVENT_CHANGE, + action: function () { + self.fireEvent(BI.DynamicDateParamItem.EVENT_INPUT_CHANGE); + } }] }, width: 60 @@ -112,6 +105,10 @@ BI.DynamicDateParamItem = BI.inherit(BI.Widget, { return text; }, + checkValidation: function () { + return BI.isNaturalNumber(this.editor.getValue()); + }, + setValue: function (v) { v = v || {}; v.value = v.value || 0; @@ -130,4 +127,5 @@ BI.DynamicDateParamItem = BI.inherit(BI.Widget, { }); BI.DynamicDateParamItem.EVENT_CHANGE = "EVENT_CHANGE"; +BI.DynamicDateParamItem.EVENT_INPUT_CHANGE = "EVENT_INPUT_CHANGE"; BI.shortcut("bi.dynamic_date_param_item", BI.DynamicDateParamItem); diff --git a/src/widget/dynamicdate/dynamicdate.popup.js b/src/widget/dynamicdate/dynamicdate.popup.js index 58717846c..3ec959b0e 100644 --- a/src/widget/dynamicdate/dynamicdate.popup.js +++ b/src/widget/dynamicdate/dynamicdate.popup.js @@ -59,7 +59,12 @@ BI.DynamicDatePopup = BI.inherit(BI.Widget, { listeners: [{ eventName: BI.TextButton.EVENT_CHANGE, action: function () { - self.fireEvent(BI.DynamicDatePopup.BUTTON_OK_EVENT_CHANGE); + var type = self.dateTab.getSelect(); + if (type === BI.DynamicDateCombo.Dynamic) { + self.dynamicPane.checkValidation(true) && self.fireEvent(BI.DynamicDatePopup.BUTTON_OK_EVENT_CHANGE); + } else { + self.fireEvent(BI.DynamicDatePopup.BUTTON_OK_EVENT_CHANGE); + } } }] }]], @@ -194,7 +199,7 @@ BI.DynamicDatePopup = BI.inherit(BI.Widget, { if (this.options.min !== minDate) { this.options.min = minDate; this.ymd && this.ymd.setMinDate(minDate); - this.dynamicPane && this.ymd.setMinDate(minDate); + this.dynamicPane && this.dynamicPane.setMinDate(minDate); } }, @@ -202,7 +207,7 @@ BI.DynamicDatePopup = BI.inherit(BI.Widget, { if (this.options.max !== maxDate) { this.options.max = maxDate; this.ymd && this.ymd.setMaxDate(maxDate); - this.dynamicPane && this.ymd.setMaxDate(maxDate); + this.dynamicPane && this.dynamicPane.setMaxDate(maxDate); } }, diff --git a/src/widget/year/card.dynamic.year.js b/src/widget/year/card.dynamic.year.js index 25a96ae7f..cbd086022 100644 --- a/src/widget/year/card.dynamic.year.js +++ b/src/widget/year/card.dynamic.year.js @@ -15,6 +15,9 @@ BI.DynamicYearCard = BI.inherit(BI.Widget, { var self = this, o = this.options; return { type: "bi.vertical", + ref: function (_ref) { + self.wrapper = _ref; + }, items: [{ type: "bi.label", text: BI.i18nText("BI-Multi_Date_Relative_Current_Time"), @@ -25,19 +28,16 @@ BI.DynamicYearCard = BI.inherit(BI.Widget, { ref: function () { self.item = this; }, - validationChecker: BI.bind(self._checkDate, self), - errorText: function () { - var start = BI.parseDateTime(o.min, "%Y-%X-%d"); - var end = BI.parseDateTime(o.max, "%Y-%X-%d"); - return BI.i18nText("BI-Basic_Year_Range_Error", - start.getFullYear(), - end.getFullYear()); - }, listeners: [{ eventName: "EVENT_CHANGE", action: function () { self.fireEvent("EVENT_CHANGE"); } + }, { + eventName: "EVENT_INPUT_CHANGE", + action: function () { + BI.Bubbles.hide("dynamic-year-error"); + } }] }], vgap: 10, @@ -47,9 +47,7 @@ BI.DynamicYearCard = BI.inherit(BI.Widget, { _checkDate: function (obj) { var o = this.options; - var date = BI.DynamicDateHelper.getCalculation({ - year: (obj.offset === 0 ? -obj.value : +obj.value) - }); + var date = BI.DynamicDateHelper.getCalculation(this._getValue()); return !BI.checkDateVoid(date.getFullYear(), date.getMonth() + 1, date.getDate(), o.min, o.max)[0]; }, @@ -62,6 +60,15 @@ BI.DynamicYearCard = BI.inherit(BI.Widget, { }; }, + _getErrorText: function () { + var o = this.options; + var start = BI.parseDateTime(o.min, "%Y-%X-%d"); + var end = BI.parseDateTime(o.max, "%Y-%X-%d"); + return BI.i18nText("BI-Basic_Year_Range_Error", + start.getFullYear(), + end.getFullYear()); + }, + setMinDate: function(minDate) { if (BI.isNotEmptyString(this.options.min)) { this.options.min = minDate; @@ -79,12 +86,30 @@ BI.DynamicYearCard = BI.inherit(BI.Widget, { this.item.setValue(this._createValue(BI.DynamicDateCard.TYPE.YEAR, v.year)); }, - getValue: function () { + _getValue: function () { var value = this.item.getValue(); return { year: (value.offset === 0 ? -value.value : +value.value) }; - } + }, + + getValue: function () { + return this.checkValidation() ? this._getValue() : {}; + }, + + checkValidation: function (show) { + var errorText; + var invalid = !this.item.checkValidation(); + if (invalid) { + errorText = BI.i18nText("BI-Please_Input_Natural_Number"); + } else { + invalid = !this._checkDate(this._getValue()); + errorText = this._getErrorText(); + } + invalid && show && BI.Bubbles.show("dynamic-year-error", errorText, this.wrapper); + + return !invalid; + }, }); BI.DynamicYearCard.EVENT_CHANGE = "EVENT_CHANGE"; BI.shortcut("bi.dynamic_year_card", BI.DynamicYearCard); \ No newline at end of file diff --git a/src/widget/year/popup.year.js b/src/widget/year/popup.year.js index d9ea9a249..3a00aad88 100644 --- a/src/widget/year/popup.year.js +++ b/src/widget/year/popup.year.js @@ -67,7 +67,12 @@ BI.DynamicYearPopup = BI.inherit(BI.Widget, { listeners: [{ eventName: BI.TextButton.EVENT_CHANGE, action: function () { - self.fireEvent(BI.DynamicYearPopup.BUTTON_OK_EVENT_CHANGE); + var type = self.dateTab.getSelect(); + if (type === BI.DynamicDateCombo.Dynamic) { + self.dynamicPane.checkValidation(true) && self.fireEvent(BI.DynamicYearMonthPopup.BUTTON_OK_EVENT_CHANGE); + } else { + self.fireEvent(BI.DynamicYearPopup.BUTTON_OK_EVENT_CHANGE); + } } }] }]], diff --git a/src/widget/yearmonth/card.dynamic.yearmonth.js b/src/widget/yearmonth/card.dynamic.yearmonth.js index 914f1988e..7d5ee8d56 100644 --- a/src/widget/yearmonth/card.dynamic.yearmonth.js +++ b/src/widget/yearmonth/card.dynamic.yearmonth.js @@ -15,6 +15,9 @@ BI.DynamicYearMonthCard = BI.inherit(BI.Widget, { var self = this; return { type: "bi.vertical", + ref: function (_ref) { + self.wrapper = _ref; + }, items: [{ type: "bi.label", text: BI.i18nText("BI-Multi_Date_Relative_Current_Time"), @@ -23,7 +26,6 @@ BI.DynamicYearMonthCard = BI.inherit(BI.Widget, { }, { type: "bi.dynamic_date_param_item", validationChecker: BI.bind(self._checkDate, self), - errorText: BI.bind(this._errorTextGetter, this), ref: function () { self.year = this; }, @@ -32,11 +34,14 @@ BI.DynamicYearMonthCard = BI.inherit(BI.Widget, { action: function () { self.fireEvent("EVENT_CHANGE"); } + }, { + eventName: "EVENT_INPUT_CHANGE", + action: function () { + BI.Bubbles.hide("dynamic-year-month-error"); + } }] }, { type: "bi.dynamic_date_param_item", - validationChecker: BI.bind(self._checkDate, self), - errorText: BI.bind(this._errorTextGetter, this), dateType: BI.DynamicDateCard.TYPE.MONTH, ref: function () { self.month = this; @@ -46,6 +51,11 @@ BI.DynamicYearMonthCard = BI.inherit(BI.Widget, { action: function () { self.fireEvent("EVENT_CHANGE"); } + }, { + eventName: "EVENT_INPUT_CHANGE", + action: function () { + BI.Bubbles.hide("dynamic-year-month-error"); + } }] }], vgap: 10, @@ -53,7 +63,7 @@ BI.DynamicYearMonthCard = BI.inherit(BI.Widget, { }; }, - _errorTextGetter: function () { + _getErrorText: function () { var o = this.options; var start = BI.parseDateTime(o.min, "%Y-%X-%d"); var end = BI.parseDateTime(o.max, "%Y-%X-%d"); @@ -67,7 +77,7 @@ BI.DynamicYearMonthCard = BI.inherit(BI.Widget, { _checkDate: function (obj) { var o = this.options; - var date = BI.DynamicDateHelper.getCalculation(BI.extend(this.getValue(), this._digestDateTypeValue(obj))); + var date = BI.DynamicDateHelper.getCalculation(BI.extend(this._getValue(), this._digestDateTypeValue(obj))); return !BI.checkDateVoid(date.getFullYear(), date.getMonth() + 1, date.getDate(), o.min, o.max)[0]; }, @@ -113,14 +123,34 @@ BI.DynamicYearMonthCard = BI.inherit(BI.Widget, { this.month.setValue(this._createValue(BI.DynamicDateCard.TYPE.MONTH, v.month)); }, - getValue: function () { + _getValue: function () { var year = this.year.getValue(); var month = this.month.getValue(); return { year: (year.offset === 0 ? -year.value : year.value), month: (month.offset === 0 ? -month.value : month.value) }; - } + }, + + getValue: function () { + return this.checkValidation() ? this._getValue() : {}; + }, + + checkValidation: function (show) { + var errorText; + var yearInvalid = !this.year.checkValidation(); + var monthInvalid = !this.month.checkValidation(); + var invalid = yearInvalid || monthInvalid; + if (invalid) { + errorText = BI.i18nText("BI-Please_Input_Natural_Number"); + } else { + invalid = !this._checkDate(this._getValue()); + errorText = this._getErrorText(); + } + invalid && show && BI.Bubbles.show("dynamic-year-month-error", errorText, this.wrapper); + + return !invalid; + }, }); BI.DynamicYearMonthCard.EVENT_CHANGE = "EVENT_CHANGE"; BI.shortcut("bi.dynamic_year_month_card", BI.DynamicYearMonthCard); \ No newline at end of file diff --git a/src/widget/yearmonth/popup.yearmonth.js b/src/widget/yearmonth/popup.yearmonth.js index cb94da3f7..e94fd58b7 100644 --- a/src/widget/yearmonth/popup.yearmonth.js +++ b/src/widget/yearmonth/popup.yearmonth.js @@ -67,7 +67,12 @@ BI.DynamicYearMonthPopup = BI.inherit(BI.Widget, { listeners: [{ eventName: BI.TextButton.EVENT_CHANGE, action: function () { - self.fireEvent(BI.DynamicYearMonthPopup.BUTTON_OK_EVENT_CHANGE); + var type = self.dateTab.getSelect(); + if (type === BI.DynamicDateCombo.Dynamic) { + self.dynamicPane.checkValidation(true) && self.fireEvent(BI.DynamicYearMonthPopup.BUTTON_OK_EVENT_CHANGE); + } else { + self.fireEvent(BI.DynamicYearMonthPopup.BUTTON_OK_EVENT_CHANGE); + } } }] }]], diff --git a/src/widget/yearquarter/card.dynamic.yearquarter.js b/src/widget/yearquarter/card.dynamic.yearquarter.js index f78b73ecc..1d4030023 100644 --- a/src/widget/yearquarter/card.dynamic.yearquarter.js +++ b/src/widget/yearquarter/card.dynamic.yearquarter.js @@ -15,6 +15,9 @@ BI.DynamicYearQuarterCard = BI.inherit(BI.Widget, { var self = this; return { type: "bi.vertical", + ref: function (_ref) { + self.wrapper = _ref; + }, items: [{ type: "bi.label", text: BI.i18nText("BI-Multi_Date_Relative_Current_Time"), @@ -23,7 +26,6 @@ BI.DynamicYearQuarterCard = BI.inherit(BI.Widget, { }, { type: "bi.dynamic_date_param_item", validationChecker: BI.bind(self._checkDate, self), - errorText: BI.bind(this._errorTextGetter, this), ref: function () { self.year = this; }, @@ -32,11 +34,14 @@ BI.DynamicYearQuarterCard = BI.inherit(BI.Widget, { action: function () { self.fireEvent("EVENT_CHANGE"); } + }, { + eventName: "EVENT_INPUT_CHANGE", + action: function () { + BI.Bubbles.hide("dynamic-year-quarter-error"); + } }] }, { type: "bi.dynamic_date_param_item", - validationChecker: BI.bind(self._checkDate, self), - errorText: BI.bind(this._errorTextGetter, this), dateType: BI.DynamicDateCard.TYPE.QUARTER, ref: function () { self.quarter = this; @@ -46,6 +51,11 @@ BI.DynamicYearQuarterCard = BI.inherit(BI.Widget, { action: function () { self.fireEvent("EVENT_CHANGE"); } + }, { + eventName: "EVENT_INPUT_CHANGE", + action: function () { + BI.Bubbles.hide("dynamic-year-quarter-error"); + } }] }], vgap: 10, @@ -53,7 +63,7 @@ BI.DynamicYearQuarterCard = BI.inherit(BI.Widget, { }; }, - _errorTextGetter: function () { + _getErrorText: function () { var o = this.options; var start = BI.parseDateTime(o.min, "%Y-%X-%d"); var end = BI.parseDateTime(o.max, "%Y-%X-%d"); @@ -67,7 +77,7 @@ BI.DynamicYearQuarterCard = BI.inherit(BI.Widget, { _checkDate: function (obj) { var o = this.options; - var date = BI.DynamicDateHelper.getCalculation(BI.extend(this.getValue(), this._digestDateTypeValue(obj))); + var date = BI.DynamicDateHelper.getCalculation(BI.extend(this._getValue(), this._digestDateTypeValue(obj))); return !BI.checkDateVoid(date.getFullYear(), date.getMonth() + 1, date.getDate(), o.min, o.max)[0]; }, @@ -113,14 +123,34 @@ BI.DynamicYearQuarterCard = BI.inherit(BI.Widget, { this.quarter.setValue(this._createValue(BI.DynamicDateCard.TYPE.QUARTER, v.quarter)); }, - getValue: function () { + _getValue: function () { var year = this.year.getValue(); var quarter = this.quarter.getValue(); return { year: (year.offset === 0 ? -year.value : year.value), quarter: (quarter.offset === 0 ? -quarter.value : quarter.value) }; - } + }, + + getValue: function () { + return this.checkValidation() ? this._getValue() : {}; + }, + + checkValidation: function (show) { + var errorText; + var yearInvalid = !this.year.checkValidation(); + var quarterInvalid = !this.quarter.checkValidation(); + var invalid = yearInvalid || quarterInvalid; + if (invalid) { + errorText = BI.i18nText("BI-Please_Input_Natural_Number"); + } else { + invalid = !this._checkDate(this._getValue()); + errorText = this._getErrorText(); + } + invalid && show && BI.Bubbles.show("dynamic-year-quarter-error", errorText, this.wrapper); + + return !invalid; + }, }); BI.DynamicYearQuarterCard.EVENT_CHANGE = "EVENT_CHANGE"; BI.shortcut("bi.dynamic_year_quarter_card", BI.DynamicYearQuarterCard); \ No newline at end of file diff --git a/src/widget/yearquarter/popup.yearquarter.js b/src/widget/yearquarter/popup.yearquarter.js index 9f51cd954..16d29b424 100644 --- a/src/widget/yearquarter/popup.yearquarter.js +++ b/src/widget/yearquarter/popup.yearquarter.js @@ -60,7 +60,12 @@ BI.DynamicYearQuarterPopup = BI.inherit(BI.Widget, { listeners: [{ eventName: BI.TextButton.EVENT_CHANGE, action: function () { - self.fireEvent(BI.DynamicYearQuarterPopup.BUTTON_OK_EVENT_CHANGE); + var type = self.dateTab.getSelect(); + if (type === BI.DynamicDateCombo.Dynamic) { + self.dynamicPane.checkValidation(true) && self.fireEvent(BI.DynamicDatePopup.BUTTON_OK_EVENT_CHANGE); + } else { + self.fireEvent(BI.DynamicYearQuarterPopup.BUTTON_OK_EVENT_CHANGE); + } } }] }]],