dtable-ui-component 6.0.39-alpha43 → 6.0.39-alpha89
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -14,6 +14,7 @@ var _seafileCalendar = _interopRequireDefault(require("@seafile/seafile-calendar
|
|
|
14
14
|
var _Picker = _interopRequireDefault(require("@seafile/seafile-calendar/lib/Picker"));
|
|
15
15
|
var _lang = require("../../lang");
|
|
16
16
|
var _columnUtils = require("../../utils/column-utils");
|
|
17
|
+
var _dateFormat = require("../../utils/dateFormat.js");
|
|
17
18
|
require("@seafile/seafile-calendar/assets/index.css");
|
|
18
19
|
let now = (0, _dayjs.default)();
|
|
19
20
|
class FilterCalendar extends _react.Component {
|
|
@@ -26,12 +27,18 @@ class FilterCalendar extends _react.Component {
|
|
|
26
27
|
const {
|
|
27
28
|
onChange
|
|
28
29
|
} = this.props;
|
|
29
|
-
const searchFormat =
|
|
30
|
+
const searchFormat = this.columnDataFormat;
|
|
30
31
|
this.setState({
|
|
31
32
|
value
|
|
32
33
|
}, () => {
|
|
33
34
|
if (this.state.value) {
|
|
34
|
-
|
|
35
|
+
console.log('value', this.state.value);
|
|
36
|
+
const filterStr = this.state.value.format(this.getCalendarFormat()[0]);
|
|
37
|
+
if (typeof filterStr === 'string') {
|
|
38
|
+
const changeVal = (0, _dateFormat.filterChangeValue)(filterStr, searchFormat);
|
|
39
|
+
console.log('changeVal', changeVal);
|
|
40
|
+
onChange(changeVal);
|
|
41
|
+
}
|
|
35
42
|
}
|
|
36
43
|
});
|
|
37
44
|
};
|
|
@@ -85,6 +92,9 @@ class FilterCalendar extends _react.Component {
|
|
|
85
92
|
this.columnDataFormat = DataFormat.split(' ')[0];
|
|
86
93
|
this.calendarContainerRef = /*#__PURE__*/_react.default.createRef();
|
|
87
94
|
this.defaultCalendarValue = null;
|
|
95
|
+
this.formatDay = this.props.value ? (0, _dateFormat.getDay)(this.props.value, this.getCalendarFormat()[0]) : null;
|
|
96
|
+
this.formatMonth = this.props.value ? (0, _dateFormat.getMonth)(this.props.value, this.getCalendarFormat()[0]) : null;
|
|
97
|
+
this.formatYear = this.props.value ? (0, _dateFormat.getYear)(this.props.value, this.getCalendarFormat()[0]) : null;
|
|
88
98
|
}
|
|
89
99
|
componentDidMount() {
|
|
90
100
|
const {
|
|
@@ -92,6 +102,9 @@ class FilterCalendar extends _react.Component {
|
|
|
92
102
|
lang
|
|
93
103
|
} = this.props;
|
|
94
104
|
const iszhcn = lang === 'zh-cn';
|
|
105
|
+
console.log('formatDay', this.formatDay);
|
|
106
|
+
console.log('formatMonth', this.formatMonth);
|
|
107
|
+
console.log('formatYear', this.formatYear);
|
|
95
108
|
if (iszhcn) {
|
|
96
109
|
now = now.locale('zh-cn');
|
|
97
110
|
} else {
|
|
@@ -101,7 +114,7 @@ class FilterCalendar extends _react.Component {
|
|
|
101
114
|
if (value && (0, _dayjs.default)(value).isValid()) {
|
|
102
115
|
let validValue = (0, _dayjs.default)(value).isValid() ? (0, _dayjs.default)(value) : (0, _dayjs.default)(this.defaultCalendarValue);
|
|
103
116
|
this.setState({
|
|
104
|
-
value: iszhcn ? (0, _dayjs.default)(validValue).locale('zh-cn') : (0, _dayjs.default)(validValue).locale('en-gb')
|
|
117
|
+
value: iszhcn ? (0, _dayjs.default)(validValue).year(this.formatYear).month(this.formatMonth).date(this.formatDay).locale('zh-cn') : (0, _dayjs.default)(validValue).year(this.formatYear).month(this.formatMonth).date(this.formatDay).locale('en-gb')
|
|
105
118
|
});
|
|
106
119
|
}
|
|
107
120
|
}
|
|
@@ -111,12 +124,16 @@ class FilterCalendar extends _react.Component {
|
|
|
111
124
|
firstDayOfWeek
|
|
112
125
|
} = this.props;
|
|
113
126
|
const state = this.state;
|
|
127
|
+
const calendarFormat = this.getCalendarFormat();
|
|
128
|
+
const inputStr = state.value ? state.value.format(this.columnDataFormat) : '';
|
|
129
|
+
const displayContentValue = (0, _dateFormat.renderFilterInputFormat)(inputStr, calendarFormat[0], (0, _dateFormat.delimate)(calendarFormat[0]));
|
|
114
130
|
if (isReadOnly) return /*#__PURE__*/_react.default.createElement("input", {
|
|
115
131
|
className: "ant-calendar-picker-input ant-input form-control",
|
|
116
|
-
value:
|
|
132
|
+
value: displayContentValue,
|
|
117
133
|
disabled: true
|
|
118
134
|
});
|
|
119
|
-
const
|
|
135
|
+
const calendarFormat1 = ['YYYY-MM-DD'];
|
|
136
|
+
console.log('calendarFormat', calendarFormat, displayContentValue);
|
|
120
137
|
const clearStyle = {
|
|
121
138
|
position: 'absolute',
|
|
122
139
|
top: '15px',
|
|
@@ -134,7 +151,7 @@ class FilterCalendar extends _react.Component {
|
|
|
134
151
|
style: {
|
|
135
152
|
zIndex: 1001
|
|
136
153
|
},
|
|
137
|
-
format:
|
|
154
|
+
format: calendarFormat1,
|
|
138
155
|
defaultValue: this.defaultCalendarValue,
|
|
139
156
|
showDateInput: true,
|
|
140
157
|
focusablePanel: false,
|
|
@@ -165,7 +182,7 @@ class FilterCalendar extends _react.Component {
|
|
|
165
182
|
tabIndex: "-1",
|
|
166
183
|
readOnly: true,
|
|
167
184
|
className: "ant-calendar-picker-input ant-input form-control",
|
|
168
|
-
value:
|
|
185
|
+
value: displayContentValue,
|
|
169
186
|
onMouseDown: this.handleMouseDown
|
|
170
187
|
}), /*#__PURE__*/_react.default.createElement("div", {
|
|
171
188
|
ref: this.calendarContainerRef
|
package/lib/utils/dateFormat.js
CHANGED
|
@@ -6,6 +6,7 @@ Object.defineProperty(exports, "__esModule", {
|
|
|
6
6
|
});
|
|
7
7
|
exports.currentYear = exports.currentTime = exports.DATE_FORMATS = void 0;
|
|
8
8
|
exports.delimate = delimate;
|
|
9
|
+
exports.filterChangeValue = filterChangeValue;
|
|
9
10
|
exports.formatDateLocal = formatDateLocal;
|
|
10
11
|
exports.fullValidYear = fullValidYear;
|
|
11
12
|
exports.getDay = getDay;
|
|
@@ -155,6 +156,32 @@ function renderFilterInputFormat(str, localeFormat, delimiter) {
|
|
|
155
156
|
return "".concat(Number(day)).concat(delimiter).concat(Number(month)).concat(delimiter).concat(year, " ").concat(time);
|
|
156
157
|
}
|
|
157
158
|
}
|
|
159
|
+
function filterChangeValue(str, localeFormat) {
|
|
160
|
+
const format = String(localeFormat).toLowerCase();
|
|
161
|
+
const parts = formatDateLocal(str, format);
|
|
162
|
+
if (parts.length < 3) {
|
|
163
|
+
return '';
|
|
164
|
+
}
|
|
165
|
+
let day;
|
|
166
|
+
let month;
|
|
167
|
+
let year;
|
|
168
|
+
if (format === DATE_FORMATS.ISO || format === DATE_FORMATS.ISOAndTime) {
|
|
169
|
+
day = parts[2];
|
|
170
|
+
month = parts[1];
|
|
171
|
+
year = fullValidYear(parts[0]);
|
|
172
|
+
}
|
|
173
|
+
if (format === DATE_FORMATS.US || format === DATE_FORMATS.USAndTime) {
|
|
174
|
+
day = parts[1];
|
|
175
|
+
month = parts[0];
|
|
176
|
+
year = fullValidYear(parts[2]);
|
|
177
|
+
}
|
|
178
|
+
if (format === DATE_FORMATS.European || format === DATE_FORMATS.Germany_Russia_etc || format === DATE_FORMATS.EuropeanAndTime || format === DATE_FORMATS.Germany_Russia_etcAndTime) {
|
|
179
|
+
day = parts[0];
|
|
180
|
+
month = parts[1];
|
|
181
|
+
year = fullValidYear(parts[2]);
|
|
182
|
+
}
|
|
183
|
+
return "".concat(String(year).padStart(4, '0'), "-").concat(String(month).padStart(2, '0'), "-").concat(String(day).padStart(2, '0'));
|
|
184
|
+
}
|
|
158
185
|
function getDay(str, localeFormat, mode) {
|
|
159
186
|
const format = String(localeFormat).toLowerCase();
|
|
160
187
|
const parts = formatDateLocal(str, format);
|