-
-
Notifications
You must be signed in to change notification settings - Fork 237
/
Copy pathutil.ts
49 lines (43 loc) · 1.19 KB
/
util.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
import type React from 'react';
import type { ReactNode } from 'react';
import type { EditableConfig } from './interface';
/**
* We trade Map as deps which may change with same value but different ref object.
* We should make it as hash for deps
* */
export function stringify<K extends PropertyKey, V>(obj: Record<K, V> | Map<K, V>) {
let tgt: Record<K, V>;
if (obj instanceof Map) {
tgt = {} as any;
obj.forEach((v, k) => {
tgt[k] = v;
});
} else {
tgt = obj;
}
return JSON.stringify(tgt);
}
const RC_TABS_DOUBLE_QUOTE = 'TABS_DQ';
export function genDataNodeKey(key: React.Key): string {
return String(key).replace(/"/g, RC_TABS_DOUBLE_QUOTE);
}
export function getRemovable(
closable?: boolean,
closeIcon?: ReactNode,
editable?: EditableConfig,
disabled?: boolean,
) {
if (
// Only editable tabs can be removed
!editable ||
// Tabs cannot be removed when disabled
disabled ||
// closable is false
closable === false ||
// If closable is undefined, the remove button should be hidden when closeIcon is null or false
(closable === undefined && (closeIcon === false || closeIcon === null))
) {
return false;
}
return true;
}