对于很多项目来说,某些配置项或查询条件是必需的。当用户丢失配置数据或项目下线配置项,都会导致项目发生错误而造成不可用的问题,这时候,开发需要提供一些兜底策略,如当前列表数据查询不到时默认使用第一项。
ensure-get-list-val
这些东西每次都写一下又很麻烦,所以这里进行了一次封装,代码如下:
interface EnsureGetValFromListParams<ItemType, ValueType> {
/** 列表数据 **/
items: ItemType[]
value?: ValueType | undefined
/** 列表中数据值的提取方法 **/
getVal?: (item: ItemType) => ValueType
/** 查询不到数据时候返回值的位置 **/
pos?: 'frist' | 'last'
}
// ValueType = ItemType
// 如果不提供 ValueType, 则 ValueType 默认为 ItemType
const ensureGetValFromList = <ItemType, ValueType = ItemType>({
items,
value,
getVal = item => item as unknown as ValueType,
pos = 'frist'
}: EnsureGetValFromListParams<ItemType, ValueType>): ValueType | null => {
// 当前不是数组直接返回 null
if (!Array.isArray(items)) {
return null
}
const count = items.length
// 当前为空数组直接返回 null
if (count === 0) {
return null;
}
// 没有传递数值或者当前列表长度为1,直接返回列表唯一数据
if (!value || count === 1) {
return getVal(items[0])
}
// 查询列表,是否有数值等于传入数值
if (items.some(item => getVal(item) === value)) {
return value
}
// 返回列表第一条还是最后一条数据
const index = pos === 'frist' ? 0 : count - 1
return getVal(items[index])
}
代码在 ensure-get-list-val 中。也可以使用 npm 等工具进行安装和使用。
鼓励一下
如果你觉得这篇文章不错,希望可以给与我一些鼓励,在我的 github 博客下帮忙 star 一下。
**粗体** _斜体_ [链接](http://example.com) `代码` - 列表 > 引用
。你还可以使用@
来通知其他用户。