@ant-design/pro-utils
Version:
152 lines (144 loc) • 5.24 kB
JavaScript
;
var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault").default;
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.dateFormatterMap = exports.convertMoment = exports.conversionMomentValue = void 0;
exports.isPlainObject = isPlainObject;
var _typeof2 = _interopRequireDefault(require("@babel/runtime/helpers/typeof"));
var _dayjs = _interopRequireDefault(require("dayjs"));
var _quarterOfYear = _interopRequireDefault(require("dayjs/plugin/quarterOfYear"));
var _get = _interopRequireDefault(require("rc-util/lib/utils/get"));
var _isNil = require("../isNil");
_dayjs.default.extend(_quarterOfYear.default);
var dateFormatterMap = exports.dateFormatterMap = {
time: 'HH:mm:ss',
timeRange: 'HH:mm:ss',
date: 'YYYY-MM-DD',
dateWeek: 'YYYY-wo',
dateMonth: 'YYYY-MM',
dateQuarter: 'YYYY-[Q]Q',
dateYear: 'YYYY',
dateRange: 'YYYY-MM-DD',
dateTime: 'YYYY-MM-DD HH:mm:ss',
dateTimeRange: 'YYYY-MM-DD HH:mm:ss'
};
/**
* 判断是不是一个 object
* @param {any} o
* @returns boolean
*/
function isObject(o) {
return Object.prototype.toString.call(o) === '[object Object]';
}
/**
* 判断是否是一个的简单的 object
* @param {{constructor:any}} o
* @returns boolean
*/
function isPlainObject(o) {
if (isObject(o) === false) return false;
// If has modified constructor
var ctor = o.constructor;
if (ctor === undefined) return true;
// If has modified prototype
var prot = ctor.prototype;
if (isObject(prot) === false) return false;
// If constructor does not have an Object-specific method
if (prot.hasOwnProperty('isPrototypeOf') === false) {
return false;
}
// Most likely a plain Object
return true;
}
/**
* 一个比较hack的moment判断工具
* @param {any} value
* @returns boolean
*/
var isMoment = function isMoment(value) {
return !!(value !== null && value !== void 0 && value._isAMomentObject);
};
/**
* 根据不同的格式转化 dayjs
* @param {dayjs.Dayjs} value
* @param {string|((value:dayjs.Dayjs} dateFormatter
* @param {string} valueType
*/
var convertMoment = exports.convertMoment = function convertMoment(value, dateFormatter, valueType) {
if (!dateFormatter) {
return value;
}
if (_dayjs.default.isDayjs(value) || isMoment(value)) {
if (dateFormatter === 'number') {
return value.valueOf();
}
if (dateFormatter === 'string') {
return value.format(dateFormatterMap[valueType] || 'YYYY-MM-DD HH:mm:ss');
}
if (typeof dateFormatter === 'string' && dateFormatter !== 'string') {
return value.format(dateFormatter);
}
if (typeof dateFormatter === 'function') {
return dateFormatter(value, valueType);
}
}
return value;
};
/**
* 这里主要是来转化一下数据 将 dayjs 转化为 string 将 all 默认删除
* @param {T} value
* @param {DateFormatter} dateFormatter
* @param {Record<string} valueTypeMap
* @param {ProFieldValueType;dateFormat:string;}|any>} |{valueType
* @param {boolean} omitNil?
* @param {NamePath} parentKey?
*/
var conversionMomentValue = exports.conversionMomentValue = function conversionMomentValue(value, dateFormatter, valueTypeMap, omitNil, parentKey) {
var tmpValue = {};
if (typeof window === 'undefined') return value;
// 如果 value 是 string | null | Blob类型 其中之一,直接返回
// 形如 {key: [File, File]} 的表单字段当进行第二次递归时会导致其直接越过 typeof value !== 'object' 这一判断 https://github.com/ant-design/pro-components/issues/2071
if ((0, _typeof2.default)(value) !== 'object' || (0, _isNil.isNil)(value) || value instanceof Blob || Array.isArray(value)) {
return value;
}
Object.keys(value).forEach(function (valueKey) {
var namePath = parentKey ? [parentKey, valueKey].flat(1) : [valueKey];
var valueFormatMap = (0, _get.default)(valueTypeMap, namePath) || 'text';
var valueType = 'text';
var dateFormat;
if (typeof valueFormatMap === 'string') {
valueType = valueFormatMap;
} else if (valueFormatMap) {
valueType = valueFormatMap.valueType;
dateFormat = valueFormatMap.dateFormat;
}
var itemValue = value[valueKey];
if ((0, _isNil.isNil)(itemValue) && omitNil) {
return;
}
// 处理嵌套的情况
if (isPlainObject(itemValue) &&
// 不是数组
!Array.isArray(itemValue) &&
// 不是 dayjs
!_dayjs.default.isDayjs(itemValue) &&
// 不是 moment
!isMoment(itemValue)) {
tmpValue[valueKey] = conversionMomentValue(itemValue, dateFormatter, valueTypeMap, omitNil, namePath);
return;
}
// 处理 FormList 的 value
if (Array.isArray(itemValue)) {
tmpValue[valueKey] = itemValue.map(function (arrayValue, index) {
if (_dayjs.default.isDayjs(arrayValue) || isMoment(arrayValue)) {
return convertMoment(arrayValue, dateFormat || dateFormatter, valueType);
}
return conversionMomentValue(arrayValue, dateFormatter, valueTypeMap, omitNil, [valueKey, "".concat(index)].flat(1));
});
return;
}
tmpValue[valueKey] = convertMoment(itemValue, dateFormat || dateFormatter, valueType);
});
return tmpValue;
};