mirror of
https://github.com/alibaba/lowcode-engine.git
synced 2026-03-02 07:20:38 +00:00
364 lines
9.1 KiB
JavaScript
364 lines
9.1 KiB
JavaScript
import { Children } from 'react';
|
|
|
|
/**
|
|
* util module
|
|
*/
|
|
|
|
/**
|
|
* 是否是单选模式
|
|
* @param {string} mode
|
|
* @return {boolean} is single mode
|
|
*/
|
|
export function isSingle(mode) {
|
|
return !mode || mode === 'single';
|
|
}
|
|
|
|
/**
|
|
* 在 Select 中,认为 null 和 undefined 都是空值
|
|
* @param {*} n any object
|
|
* @return {boolean}
|
|
*/
|
|
export function isNull(n) {
|
|
return n === null || n === undefined;
|
|
}
|
|
|
|
/**
|
|
* 将字符串中的正则表达式关键字符添加转义
|
|
* @param {string} str
|
|
* @return {string}
|
|
*/
|
|
export function escapeForReg(str) {
|
|
return str.replace(/[-/\\^$*+?.()|[\]{}]/g, '\\$&');
|
|
}
|
|
|
|
/**
|
|
* filter by key
|
|
* @param {string} key filter key
|
|
* @param {object} item item object
|
|
* @return {boolean} it's filtered
|
|
*/
|
|
export function filter(key, item) {
|
|
const _key = escapeForReg(`${key}`);
|
|
const regExp = new RegExp(`(${_key})`, 'ig');
|
|
|
|
return regExp.test(`${item.value}`) || regExp.test(`${item.label}`);
|
|
}
|
|
|
|
/**
|
|
* loop map
|
|
* @param {Array} dataSource
|
|
* @param {function} callback
|
|
* @return {Array}
|
|
* ----
|
|
* @callback ~loopCallback
|
|
* @param {object} option
|
|
*/
|
|
export function loopMap(dataSource, callback) {
|
|
const result = [];
|
|
dataSource.forEach(option => {
|
|
if (option.children) {
|
|
const children = loopMap(option.children, callback);
|
|
children.length &&
|
|
result.push({
|
|
...option,
|
|
children,
|
|
});
|
|
} else {
|
|
// eslint-disable-next-line callback-return
|
|
const tmp = callback(option);
|
|
tmp && result.push(tmp);
|
|
}
|
|
});
|
|
|
|
return result;
|
|
}
|
|
|
|
/**
|
|
* Parse dataSource from MenuItem
|
|
* @static
|
|
* @param {Array<Element>} children
|
|
* @param {number} [deep=0] recursion deep level
|
|
*/
|
|
export function parseDataSourceFromChildren(children, deep = 0) {
|
|
const source = [];
|
|
|
|
Children.forEach(children, (child, index) => {
|
|
if (!child) {
|
|
return;
|
|
}
|
|
const { type, props: childProps } = child;
|
|
const item2 = { deep };
|
|
|
|
let isOption = false;
|
|
let isOptionGroup = false;
|
|
|
|
if (
|
|
(typeof type === 'function' &&
|
|
type._typeMark === 'next_select_option') ||
|
|
type === 'option'
|
|
) {
|
|
isOption = true;
|
|
}
|
|
if (
|
|
(typeof type === 'function' &&
|
|
type._typeMark === 'next_select_option_group') ||
|
|
type === 'optgroup'
|
|
) {
|
|
isOptionGroup = true;
|
|
}
|
|
|
|
if (!isOption && !isOptionGroup) {
|
|
return;
|
|
}
|
|
|
|
if (isOption) {
|
|
// option
|
|
// If children is a string, it can be used as value
|
|
const isStrChild = typeof childProps.children === 'string';
|
|
// value > key > string children > index
|
|
item2.value =
|
|
'value' in childProps
|
|
? childProps.value
|
|
: 'key' in childProps
|
|
? childProps.key
|
|
: isStrChild
|
|
? childProps.children
|
|
: `${index}`;
|
|
|
|
item2.label =
|
|
childProps.label || childProps.children || `${item2.value}`;
|
|
item2.title = childProps.title;
|
|
childProps.disabled === true && (item2.disabled = true);
|
|
// You can put your extra data here, and use it in `itemRender` or `labelRender`
|
|
Object.assign(item2, childProps['data-extra'] || {});
|
|
} else if (isOptionGroup && deep < 1) {
|
|
// option group
|
|
item2.label = childProps.label || 'Group';
|
|
// parse children nodes
|
|
item2.children = parseDataSourceFromChildren(
|
|
childProps.children,
|
|
deep + 1
|
|
);
|
|
}
|
|
|
|
source.push(item2);
|
|
});
|
|
|
|
return source;
|
|
}
|
|
|
|
/**
|
|
* Normalize dataSource
|
|
* @static
|
|
* @param {Array} dataSource
|
|
* @param {number} [deep=0] recursion deep level
|
|
* ----
|
|
* value priority: value > 'index'
|
|
* label priority: label > 'value' > 'index'
|
|
* disabled: disabled === true
|
|
*/
|
|
export function normalizeDataSource(dataSource, deep = 0) {
|
|
const source = [];
|
|
|
|
dataSource.forEach((item, index) => {
|
|
// enable array of basic type
|
|
if (/string|boolean|number/.test(typeof item)) {
|
|
item = { label: `${item}`, value: item };
|
|
}
|
|
|
|
// filter off addon item
|
|
if (item.__isAddon) {
|
|
return;
|
|
}
|
|
|
|
const item2 = { deep };
|
|
// deep < 1: only 2 level allowed
|
|
if (Array.isArray(item.children) && deep < 1) {
|
|
// handle group
|
|
item2.label = item.label || item.value || `Group ${index}`;
|
|
// parse children
|
|
item2.children = normalizeDataSource(item.children, deep + 1);
|
|
} else {
|
|
const { value, label, title, disabled, ...others } = item;
|
|
item2.value = !isNull(value) ? value : `${index}`;
|
|
item2.label = label || `${item2.value}`;
|
|
item2.title = title;
|
|
disabled === true && (item2.disabled = true);
|
|
|
|
Object.assign(item2, others);
|
|
}
|
|
|
|
source.push(item2);
|
|
});
|
|
|
|
return source;
|
|
}
|
|
|
|
/**
|
|
* Get flatten dataSource
|
|
* @static
|
|
* @param {Array} dataSource structured dataSource
|
|
* @return {Array}
|
|
*/
|
|
export function flattingDataSource(dataSource) {
|
|
const source = [];
|
|
|
|
dataSource.forEach(item => {
|
|
if (Array.isArray(item.children)) {
|
|
source.push(...flattingDataSource(item.children));
|
|
} else {
|
|
source.push(item);
|
|
}
|
|
});
|
|
|
|
return source;
|
|
}
|
|
|
|
export function filterDataSource(dataSource, key, filter, addonKey) {
|
|
if (!Array.isArray(dataSource)) {
|
|
return [];
|
|
}
|
|
if (typeof key === 'undefined' || key === null) {
|
|
return [].concat(dataSource);
|
|
}
|
|
|
|
let addKey = true;
|
|
const menuDataSource = loopMap(dataSource, option => {
|
|
if (key === `${option.value}`) {
|
|
addKey = false;
|
|
}
|
|
return filter(key, option) && !option.__isAddon && option;
|
|
});
|
|
|
|
// if key not in menuDataSource, add key to dataSource
|
|
if (addonKey && key && addKey) {
|
|
menuDataSource.unshift({
|
|
value: key,
|
|
label: key,
|
|
title: key,
|
|
__isAddon: true,
|
|
});
|
|
}
|
|
|
|
return menuDataSource;
|
|
}
|
|
|
|
function getKeyItemByValue(value, valueMap) {
|
|
let item;
|
|
|
|
if (typeof value === 'object' && value.hasOwnProperty('value')) {
|
|
item = value;
|
|
} else {
|
|
item = valueMap[`${value}`] || {
|
|
value,
|
|
label: value,
|
|
};
|
|
}
|
|
|
|
return item;
|
|
}
|
|
|
|
/**
|
|
* compute valueDataSource by new value
|
|
* @param {Array/String} value 数据
|
|
* @param {Object} mapValueDS 上个value的缓存数据 value => {value,label} 的映射关系表
|
|
* @param {*} mapMenuDS 通过 dataSource 建立 value => {value,label} 的映射关系表
|
|
* @returns {Object} value: [value]; valueDS: [{value,label}]; mapValueDS: {value: {value,label}}
|
|
*/
|
|
export function getValueDataSource(value, mapValueDS, mapMenuDS) {
|
|
if (isNull(value)) {
|
|
return {};
|
|
}
|
|
|
|
const newValue = [];
|
|
const newValueDS = [];
|
|
const newMapValueDS = {};
|
|
const _newMapDS = Object.assign({}, mapValueDS, mapMenuDS);
|
|
|
|
if (Array.isArray(value)) {
|
|
value.forEach(v => {
|
|
const item = getKeyItemByValue(v, _newMapDS);
|
|
|
|
newValueDS.push(item);
|
|
newMapValueDS[`${item.value}`] = item;
|
|
newValue.push(item.value);
|
|
});
|
|
|
|
return {
|
|
value: newValue, // [value]
|
|
valueDS: newValueDS, // [{value,label}]
|
|
mapValueDS: newMapValueDS, // {value: {value,label}}
|
|
};
|
|
} else {
|
|
const item = getKeyItemByValue(value, _newMapDS);
|
|
|
|
return {
|
|
value: item.value,
|
|
valueDS: item,
|
|
mapValueDS: {
|
|
[`${item.value}`]: item,
|
|
},
|
|
};
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Get flatten dataSource
|
|
* @static
|
|
* @param {any} value structured dataSource
|
|
* @return {String}
|
|
*/
|
|
export function valueToSelectKey(value) {
|
|
let val;
|
|
if (typeof value === 'object' && value.hasOwnProperty('value')) {
|
|
val = value.value;
|
|
} else {
|
|
val = value;
|
|
}
|
|
return `${val}`;
|
|
}
|
|
|
|
/**
|
|
* UP Down 改进双向链表方法
|
|
*/
|
|
// function DoubleLinkList(element){
|
|
// this.prev = null;
|
|
// this.next = null;
|
|
// this.element = element;
|
|
// }
|
|
//
|
|
// export function mapDoubleLinkList(dataSource){
|
|
//
|
|
// const mapDS = {};
|
|
// let doubleLink = null;
|
|
//
|
|
// let head = null;
|
|
// let tail = null;
|
|
//
|
|
// function append(element) {
|
|
// if (!doubleLink) {
|
|
// doubleLink = new DoubleLinkList(element);
|
|
// head = doubleLink;
|
|
// tail = doubleLink;
|
|
// return doubleLink;
|
|
// }
|
|
//
|
|
// const node = new DoubleLinkList(element);
|
|
// tail.next = node;
|
|
// node.prev = tail;
|
|
// tail = node;
|
|
//
|
|
// return tail;
|
|
// }
|
|
//
|
|
// dataSource.forEach((item => {
|
|
// if (item.disabled) {
|
|
// return;
|
|
// }
|
|
// mapDS[`${item.value}`] = append(item);
|
|
// }));
|
|
//
|
|
// return mapDS;
|
|
// }
|
|
//
|