feat: InputDateRange支持transform函数处理日期值

This commit is contained in:
lurunze1226 2023-09-13 21:37:13 +08:00
parent 9011f53465
commit 33ce0301af
3 changed files with 134 additions and 1 deletions

View File

@ -230,6 +230,110 @@ order: 15
}
```
## 数据处理函数
> `3.5.0`及以上版本
默认情况下日期范围选择器组件的绑定值的开始时间为所选时间当天的0点使用`moment().startOf('day')`处理结束时间为所选时间当天的23时59分59秒999毫秒使用`moment().endOf('day')`处理)。如果设置了`timeFormat`(时间格式),则会基于`timeFormat`配置决定**最小时间单位**,举例:
- 不设置`timeFormat`(时间格式),默认按照天(day)级处理:
```typescript
moment().startOf('day'); // 2008-08-08 00:00:00.000
moment().endOf('day'); // 2008-08-08 23:59:59.999
```
- `timeFormat`(时间格式)为 `"HH:mm:ss"`,则会按照秒(second)级处理:
```typescript
moment().startOf('second'); // 2008-08-08 08:08:08.000
moment().endOf('second'); // 2008-08-08 08:08:08.999
```
- `timeFormat`(时间格式)为 `"HH:mm"`,则会按照分钟(minute)级处理:
```typescript
moment().startOf('minute'); // 2008-08-08 08:08:00.000
moment().endOf('minute'); // 2008-08-08 08:08:59.999
```
- `timeFormat`(时间格式)为 `"HH"`,则会按照小时(hour)级处理:
```typescript
moment().startOf('hour'); // 2008-08-08 08:00:00.000
moment().endOf('hour'); // 2008-08-08 08:59:59.999
```
部分情况下,即使配置`timeFormat`也无法满足需求,此时可以使用`transform`函数对时间值做进一步处理, 函数签名如下:
```typescript
interface TransFormFunc {
(
/* 当前值Moment对象 */
value: moment.Moment,
config: {
/* 操作类型start起始时间end结束时间 */
type: 'start' | 'end';
/* 初始值,最近一次选择的时间值 */
originValue: moment.Moment,
/* 时间格式 */
timeFormat: string
},
/* 当前组件的属性 */
props: any,
/* 当前组件数据域 */
data: any,
/* moment函数 */
moment: moment
): moment.Moment;
}
```
```schema: scope="body"
{
"type": "form",
"debug": true,
"api": "/api/mock2/form/saveForm",
"body": [
{
"type": "input-date-range",
"name": "range1",
"label": "日期范围(默认)",
"valueFormat": "YYYY-MM-DDTHH:mm:ss[Z]"
},
{
"type": "input-date-range",
"name": "range2",
"label": "日期范围使用transform函数",
"valueFormat": "YYYY-MM-DDTHH:mm:ss[Z]",
"transform": "const now = moment(); if (config.type === 'end') {value.set({hours: now.hours(), minutes: now.minutes(), seconds: now.seconds(), milliseconds: now.milliseconds()})}; return value;"
}
]
}
```
上面的示例使用 `transform` 函数,将结束时间的值设置为当前时间
```typescript
function transform(value, config, props, data) {
const now = moment();
if (config.type === 'end') {
value.set({
hours: now.hours(),
minutes: now.minutes(),
seconds: now.seconds(),
milliseconds: now.milliseconds()
});
}
return value;
}
```
## 属性表
除了支持 [普通表单项属性表](./formitem#%E5%B1%9E%E6%80%A7%E8%A1%A8) 中的配置以外,还支持下面一些配置
@ -249,6 +353,9 @@ order: 15
| embed | `boolean` | `false` | 是否内联模式 |
| animation | `boolean` | `true` | 是否启用游标动画 | `2.2.0` |
| extraName | `string` | | 是否存成两个字段 | `3.3.0` |
| transform | `string` | | 日期数据处理函数,用来处理选择日期之后的的值,返回值为 `Moment`对象 | `3.5.0` |
## 事件表

View File

@ -19,7 +19,8 @@ import {
getComputedStyle,
noop,
ucFirst,
localeable
localeable,
str2function
} from 'amis-core';
import {Icon} from './icons';
import {ShortCuts, ShortCutDateRange} from './DatePicker';
@ -29,6 +30,7 @@ import CalendarMobile from './CalendarMobile';
import Input from './Input';
import Button from './Button';
import type {Moment} from 'moment';
import type {PlainObject, ThemeProps, LocaleProps} from 'amis-core';
export interface DateRangePickerProps extends ThemeProps, LocaleProps {
@ -76,6 +78,8 @@ export interface DateRangePickerProps extends ThemeProps, LocaleProps {
label?: string | false;
/** 是否开启游标动画 */
animation?: boolean;
/** 日期处理函数,通常用于自定义处理绑定日期的值 */
transform?: string;
}
export interface DateRangePickerState {
@ -887,6 +891,11 @@ export class DateRangePicker extends React.Component<
type: 'start' | 'end' = 'start'
): moment.Moment {
let value = date.clone();
const {transform, data} = this.props;
const transformFn =
transform && typeof transform === 'string'
? str2function(transform, 'value', 'config', 'props', 'data', 'moment')
: transform;
// 没有初始值
if (!originValue) {
@ -903,6 +912,16 @@ export class DateRangePicker extends React.Component<
value = value[type === 'start' ? 'startOf' : 'endOf']('day');
}
if (typeof transformFn === 'function') {
value = transformFn(
value,
{type, originValue, timeFormat},
this.props,
data,
moment
);
}
return value;
}

View File

@ -115,6 +115,13 @@ export interface DateRangeControlSchema extends FormBaseControlSchema {
*
*/
animation?: boolean;
/**
*
*
* (value: moment.Moment, config: {type: 'start' | 'end'; originValue: moment.Moment, timeFormat: string}, props: any, data: any, moment: moment) => moment.Moment;
*/
transform?: string;
}
export interface DateRangeProps