@fle-ui/next 1.0.5-alpha.0 → 1.0.5-alpha.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/.history/.dumi/theme/Link_20211224151001.tsx +0 -0
- package/.history/.dumi/theme/Link_20211224151003.tsx +0 -8
- package/.history/.dumi/theme/Link_20211224151013.tsx +0 -64
- package/.history/.dumi/theme/Link_20211224151019.tsx +0 -64
- package/.history/.dumi/theme/Link_20211224151048.tsx +0 -66
- package/.history/.dumi/theme/Link_20211224151051.tsx +0 -66
- package/.history/.dumi/theme/Link_20211224151057.tsx +0 -66
- package/.history/.dumi/theme/Link_20211224151820.tsx +0 -66
- package/.history/.dumi/theme/NavLink_20211224150935.tsx +0 -0
- package/.history/.dumi/theme/NavLink_20211224150937.tsx +0 -8
- package/.history/.dumi/theme/NavLink_20211224150942.tsx +0 -4
- package/.history/.dumi/theme/builtins/Link_20211224153113.tsx +0 -66
- package/.history/.dumi/theme/builtins/Link_20211224153117.tsx +0 -66
- package/.history/.dumi/theme/builtins/Link_20211224153821.tsx +0 -65
- package/.history/.dumi/theme/builtins/Link_20211224153823.tsx +0 -73
- package/.history/.dumi/theme/builtins/Link_20211224153825.tsx +0 -65
- package/.history/.dumi/theme/builtins/NavLink_20211224153113.tsx +0 -4
- package/.history/.dumi/theme/builtins/NavLink_20211224153856.tsx +0 -4
- package/.history/.dumi/theme/builtins/NavLink_20211224153857.tsx +0 -12
- package/.history/.dumi/theme/builtins/NavLink_20211224154244.tsx +0 -12
- package/.history/.dumi/theme/builtins/NavLink_20211224154245.tsx +0 -12
- package/.history/.dumi/theme/context_20211224155924.ts +0 -0
- package/.history/.dumi/theme/context_20211224155926.ts +0 -8
- package/.history/.dumi/theme/context_20211224155942.ts +0 -136
- package/.history/.dumi/theme/layout_20211224155840.tsx +0 -0
- package/.history/.dumi/theme/layout_20211224155841.tsx +0 -8
- package/.history/.dumi/theme/layout_20211224155903.tsx +0 -176
- package/.history/.dumi/theme/layout_20211227133806.tsx +0 -8
- package/.history/.dumi/theme/layout_20211227134054.tsx +0 -23
- package/.history/.dumi/theme/layout_20211227134056.tsx +0 -24
- package/.history/.dumi/theme/layout_20211227134246.tsx +0 -26
- package/.history/.dumi/theme/layout_20211227141142.tsx +0 -26
- package/.history/.dumi/theme/layout_20211227161540.tsx +0 -26
- package/.history/.dumi/theme/layouyt_20211224160056.ts +0 -0
- package/.history/.dumi/theme/layouyt_20211224160058.ts +0 -8
- package/.history/.gitignore_20210922213827 +0 -27
- package/.history/.gitignore_20211029154108 +0 -29
- package/.history/.gitignore_20211029154109 +0 -29
- package/.history/.gitignore_20211029173434 +0 -29
- package/.history/.umirc_20211224102827.ts +0 -155
- package/.history/.umirc_20211224103050.ts +0 -155
- package/.history/.umirc_20211224142413.ts +0 -163
- package/.history/.umirc_20211224142930.ts +0 -159
- package/.history/.umirc_20211224142939.ts +0 -159
- package/.history/.umirc_20211224142940.ts +0 -159
- package/.history/package_20220223140434.json +0 -147
- package/.history/package_20220223140435.json +0 -147
- package/.history/report_20211228211733.html +0 -45
- package/.history/report_20211228211748.html +0 -37
- package/.history/report_20211228211749.html +0 -45
package/package.json
CHANGED
File without changes
|
@@ -1,8 +0,0 @@
|
|
1
|
-
/*
|
2
|
-
* @Author: your name
|
3
|
-
* @Date: 2021-12-24 15:10:02
|
4
|
-
* @LastEditTime: 2021-12-24 15:10:03
|
5
|
-
* @LastEditors: Please set LastEditors
|
6
|
-
* @Description: 打开koroFileHeader查看配置 进行设置: https://github.com/OBKoro1/koro1FileHeader/wiki/%E9%85%8D%E7%BD%AE
|
7
|
-
* @FilePath: /fle-ui-next/.dumi/theme/Link.tsx
|
8
|
-
*/
|
@@ -1,64 +0,0 @@
|
|
1
|
-
import React from 'react';
|
2
|
-
import { Link } from '@umijs/runtime';
|
3
|
-
import type { LinkProps, NavLinkProps } from 'react-router-dom';
|
4
|
-
|
5
|
-
/**
|
6
|
-
* Link component wrapper for render external link
|
7
|
-
* @param Component original Link component
|
8
|
-
*/
|
9
|
-
export const LinkWrapper = (Component: React.FC<LinkProps | NavLinkProps>) => {
|
10
|
-
return ({ to, ...props }: LinkProps | NavLinkProps) => {
|
11
|
-
const isExternal = /^(\w+:)?\/\/|^(mailto|tel):/.test(to as string) || !to;
|
12
|
-
const hasComplexChildren = React.isValidElement(props.children);
|
13
|
-
|
14
|
-
return (
|
15
|
-
<Component
|
16
|
-
to={(to as any) || ''}
|
17
|
-
component={
|
18
|
-
isExternal
|
19
|
-
? () => (
|
20
|
-
<a target="_blank" rel="noopener noreferrer" href={to as string}>
|
21
|
-
{props.children}
|
22
|
-
{to && !hasComplexChildren && (
|
23
|
-
<svg
|
24
|
-
xmlns="http://www.w3.org/2000/svg"
|
25
|
-
aria-hidden="true"
|
26
|
-
x="0px"
|
27
|
-
y="0px"
|
28
|
-
viewBox="0 0 100 100"
|
29
|
-
width="15"
|
30
|
-
height="15"
|
31
|
-
className="__dumi-default-external-link-icon"
|
32
|
-
>
|
33
|
-
<path
|
34
|
-
fill="currentColor"
|
35
|
-
d="M18.8,85.1h56l0,0c2.2,0,4-1.8,4-4v-32h-8v28h-48v-48h28v-8h-32l0,0c-2.2,0-4,1.8-4,4v56C14.8,83.3,16.6,85.1,18.8,85.1z"
|
36
|
-
/>
|
37
|
-
<polygon
|
38
|
-
fill="currentColor"
|
39
|
-
points="45.7,48.7 51.3,54.3 77.2,28.5 77.2,37.2 85.2,37.2 85.2,14.9 62.8,14.9 62.8,22.9 71.5,22.9"
|
40
|
-
/>
|
41
|
-
</svg>
|
42
|
-
)}
|
43
|
-
</a>
|
44
|
-
)
|
45
|
-
: undefined
|
46
|
-
}
|
47
|
-
{...props}
|
48
|
-
{...(isExternal
|
49
|
-
? {}
|
50
|
-
: {
|
51
|
-
// scroll to top while change url
|
52
|
-
onClick(...args) {
|
53
|
-
window.scrollTo({
|
54
|
-
top: 0,
|
55
|
-
});
|
56
|
-
props.onClick?.apply(this, args);
|
57
|
-
},
|
58
|
-
})}
|
59
|
-
/>
|
60
|
-
);
|
61
|
-
};
|
62
|
-
};
|
63
|
-
|
64
|
-
export default LinkWrapper(Link);
|
@@ -1,64 +0,0 @@
|
|
1
|
-
import React from 'react';
|
2
|
-
import { Link } from '@umijs/runtime';
|
3
|
-
import type { LinkProps, NavLinkProps } from 'react-router-dom';
|
4
|
-
|
5
|
-
/**
|
6
|
-
* Link component wrapper for render external link
|
7
|
-
* @param Component original Link component
|
8
|
-
*/
|
9
|
-
export const LinkWrapper = (Component: React.FC<LinkProps | NavLinkProps>) => {
|
10
|
-
return ({ to, ...props }: LinkProps | NavLinkProps) => {
|
11
|
-
const isExternal = /^(\w+:)?\/\/|^(mailto|tel):/.test(to as string) || !to;
|
12
|
-
const hasComplexChildren = React.isValidElement(props.children);
|
13
|
-
|
14
|
-
return (
|
15
|
-
<Component
|
16
|
-
to={(to as any) || ''}
|
17
|
-
component={
|
18
|
-
isExternal
|
19
|
-
? () => (
|
20
|
-
<a target="_blank" rel="noopener noreferrer" href={to as string}>
|
21
|
-
{props.children}
|
22
|
-
{to && !hasComplexChildren && (
|
23
|
-
<svg
|
24
|
-
xmlns="http://www.w3.org/2000/svg"
|
25
|
-
aria-hidden="true"
|
26
|
-
x="0px"
|
27
|
-
y="0px"
|
28
|
-
viewBox="0 0 100 100"
|
29
|
-
width="15"
|
30
|
-
height="15"
|
31
|
-
className="__dumi-default-external-link-icon"
|
32
|
-
>
|
33
|
-
<path
|
34
|
-
fill="currentColor"
|
35
|
-
d="M18.8,85.1h56l0,0c2.2,0,4-1.8,4-4v-32h-8v28h-48v-48h28v-8h-32l0,0c-2.2,0-4,1.8-4,4v56C14.8,83.3,16.6,85.1,18.8,85.1z"
|
36
|
-
/>
|
37
|
-
<polygon
|
38
|
-
fill="currentColor"
|
39
|
-
points="45.7,48.7 51.3,54.3 77.2,28.5 77.2,37.2 85.2,37.2 85.2,14.9 62.8,14.9 62.8,22.9 71.5,22.9"
|
40
|
-
/>
|
41
|
-
</svg>
|
42
|
-
)}
|
43
|
-
</a>
|
44
|
-
)
|
45
|
-
: undefined
|
46
|
-
}
|
47
|
-
{...props}
|
48
|
-
{...(isExternal
|
49
|
-
? {}
|
50
|
-
: {
|
51
|
-
// scroll to top while change url
|
52
|
-
onClick(...args) {
|
53
|
-
window.scrollTo({
|
54
|
-
top: 0,
|
55
|
-
});
|
56
|
-
props.onClick?.apply(this, args);
|
57
|
-
},
|
58
|
-
})}
|
59
|
-
/>
|
60
|
-
);
|
61
|
-
};
|
62
|
-
};
|
63
|
-
|
64
|
-
export default LinkWrapper(Link);
|
@@ -1,66 +0,0 @@
|
|
1
|
-
import React from 'react';
|
2
|
-
import { Link } from '@umijs/runtime';
|
3
|
-
import type { LinkProps, NavLinkProps } from 'react-router-dom';
|
4
|
-
|
5
|
-
/**
|
6
|
-
* Link component wrapper for render external link
|
7
|
-
* @param Component original Link component
|
8
|
-
*/
|
9
|
-
export const LinkWrapper = (Component: React.FC<LinkProps | NavLinkProps>) => {
|
10
|
-
return ({ to, ...props }: LinkProps | NavLinkProps) => {
|
11
|
-
const isExternal = /^(\w+:)?\/\/|^(mailto|tel):/.test(to as string) || !to;
|
12
|
-
const hasComplexChildren = React.isValidElement(props.children);
|
13
|
-
|
14
|
-
console.log(to, props);
|
15
|
-
|
16
|
-
return (
|
17
|
-
<Component
|
18
|
-
to={(to as any) || ''}
|
19
|
-
component={
|
20
|
-
isExternal
|
21
|
-
? () => (
|
22
|
-
<a target="_blank" rel="noopener noreferrer" href={to as string}>
|
23
|
-
{props.children}
|
24
|
-
{to && !hasComplexChildren && (
|
25
|
-
<svg
|
26
|
-
xmlns="http://www.w3.org/2000/svg"
|
27
|
-
aria-hidden="true"
|
28
|
-
x="0px"
|
29
|
-
y="0px"
|
30
|
-
viewBox="0 0 100 100"
|
31
|
-
width="15"
|
32
|
-
height="15"
|
33
|
-
className="__dumi-default-external-link-icon"
|
34
|
-
>
|
35
|
-
<path
|
36
|
-
fill="currentColor"
|
37
|
-
d="M18.8,85.1h56l0,0c2.2,0,4-1.8,4-4v-32h-8v28h-48v-48h28v-8h-32l0,0c-2.2,0-4,1.8-4,4v56C14.8,83.3,16.6,85.1,18.8,85.1z"
|
38
|
-
/>
|
39
|
-
<polygon
|
40
|
-
fill="currentColor"
|
41
|
-
points="45.7,48.7 51.3,54.3 77.2,28.5 77.2,37.2 85.2,37.2 85.2,14.9 62.8,14.9 62.8,22.9 71.5,22.9"
|
42
|
-
/>
|
43
|
-
</svg>
|
44
|
-
)}
|
45
|
-
</a>
|
46
|
-
)
|
47
|
-
: undefined
|
48
|
-
}
|
49
|
-
{...props}
|
50
|
-
{...(isExternal
|
51
|
-
? {}
|
52
|
-
: {
|
53
|
-
// scroll to top while change url
|
54
|
-
onClick(...args) {
|
55
|
-
window.scrollTo({
|
56
|
-
top: 0,
|
57
|
-
});
|
58
|
-
props.onClick?.apply(this, args);
|
59
|
-
},
|
60
|
-
})}
|
61
|
-
/>
|
62
|
-
);
|
63
|
-
};
|
64
|
-
};
|
65
|
-
|
66
|
-
export default LinkWrapper(Link);
|
@@ -1,66 +0,0 @@
|
|
1
|
-
import React from 'react';
|
2
|
-
import { Link } from '@umijs/runtime';
|
3
|
-
import type { LinkProps, NavLinkProps } from 'react-router-dom';
|
4
|
-
|
5
|
-
/**
|
6
|
-
* Link component wrapper for render external link
|
7
|
-
* @param Component original Link component
|
8
|
-
*/
|
9
|
-
export const LinkWrapper = (Component: React.FC<LinkProps | NavLinkProps>) => {
|
10
|
-
return ({ to, ...props }: LinkProps | NavLinkProps) => {
|
11
|
-
const isExternal = /^(\w+:)?\/\/|^(mailto|tel):/.test(to as string) || !to;
|
12
|
-
const hasComplexChildren = React.isValidElement(props.children);
|
13
|
-
|
14
|
-
console.log(to, props, '=======');
|
15
|
-
|
16
|
-
return (
|
17
|
-
<Component
|
18
|
-
to={(to as any) || ''}
|
19
|
-
component={
|
20
|
-
isExternal
|
21
|
-
? () => (
|
22
|
-
<a target="_blank" rel="noopener noreferrer" href={to as string}>
|
23
|
-
{props.children}
|
24
|
-
{to && !hasComplexChildren && (
|
25
|
-
<svg
|
26
|
-
xmlns="http://www.w3.org/2000/svg"
|
27
|
-
aria-hidden="true"
|
28
|
-
x="0px"
|
29
|
-
y="0px"
|
30
|
-
viewBox="0 0 100 100"
|
31
|
-
width="15"
|
32
|
-
height="15"
|
33
|
-
className="__dumi-default-external-link-icon"
|
34
|
-
>
|
35
|
-
<path
|
36
|
-
fill="currentColor"
|
37
|
-
d="M18.8,85.1h56l0,0c2.2,0,4-1.8,4-4v-32h-8v28h-48v-48h28v-8h-32l0,0c-2.2,0-4,1.8-4,4v56C14.8,83.3,16.6,85.1,18.8,85.1z"
|
38
|
-
/>
|
39
|
-
<polygon
|
40
|
-
fill="currentColor"
|
41
|
-
points="45.7,48.7 51.3,54.3 77.2,28.5 77.2,37.2 85.2,37.2 85.2,14.9 62.8,14.9 62.8,22.9 71.5,22.9"
|
42
|
-
/>
|
43
|
-
</svg>
|
44
|
-
)}
|
45
|
-
</a>
|
46
|
-
)
|
47
|
-
: undefined
|
48
|
-
}
|
49
|
-
{...props}
|
50
|
-
{...(isExternal
|
51
|
-
? {}
|
52
|
-
: {
|
53
|
-
// scroll to top while change url
|
54
|
-
onClick(...args) {
|
55
|
-
window.scrollTo({
|
56
|
-
top: 0,
|
57
|
-
});
|
58
|
-
props.onClick?.apply(this, args);
|
59
|
-
},
|
60
|
-
})}
|
61
|
-
/>
|
62
|
-
);
|
63
|
-
};
|
64
|
-
};
|
65
|
-
|
66
|
-
export default LinkWrapper(Link);
|
@@ -1,66 +0,0 @@
|
|
1
|
-
import React from 'react';
|
2
|
-
import { Link } from '@umijs/runtime';
|
3
|
-
import type { LinkProps, NavLinkProps } from 'react-router-dom';
|
4
|
-
|
5
|
-
/**
|
6
|
-
* Link component wrapper for render external link
|
7
|
-
* @param Component original Link component
|
8
|
-
*/
|
9
|
-
export const LinkWrapper = (Component: React.FC<LinkProps | NavLinkProps>) => {
|
10
|
-
return ({ to, ...props }: LinkProps | NavLinkProps) => {
|
11
|
-
const isExternal = /^(\w+:)?\/\/|^(mailto|tel):/.test(to as string) || !to;
|
12
|
-
const hasComplexChildren = React.isValidElement(props.children);
|
13
|
-
|
14
|
-
console.log(to, props, '=======');
|
15
|
-
|
16
|
-
return (
|
17
|
-
<Component
|
18
|
-
to={(to as any) || ''}
|
19
|
-
component={
|
20
|
-
isExternal
|
21
|
-
? () => (
|
22
|
-
<a target="_blank" rel="noopener noreferrer" href={to as string}>
|
23
|
-
{props.children}
|
24
|
-
{to && !hasComplexChildren && (
|
25
|
-
<svg
|
26
|
-
xmlns="http://www.w3.org/2000/svg"
|
27
|
-
aria-hidden="true"
|
28
|
-
x="0px"
|
29
|
-
y="0px"
|
30
|
-
viewBox="0 0 100 100"
|
31
|
-
width="15"
|
32
|
-
height="15"
|
33
|
-
className="__dumi-default-external-link-icon"
|
34
|
-
>
|
35
|
-
<path
|
36
|
-
fill="currentColor"
|
37
|
-
d="M18.8,85.1h56l0,0c2.2,0,4-1.8,4-4v-32h-8v28h-48v-48h28v-8h-32l0,0c-2.2,0-4,1.8-4,4v56C14.8,83.3,16.6,85.1,18.8,85.1z"
|
38
|
-
/>
|
39
|
-
<polygon
|
40
|
-
fill="currentColor"
|
41
|
-
points="45.7,48.7 51.3,54.3 77.2,28.5 77.2,37.2 85.2,37.2 85.2,14.9 62.8,14.9 62.8,22.9 71.5,22.9"
|
42
|
-
/>
|
43
|
-
</svg>
|
44
|
-
)}
|
45
|
-
</a>
|
46
|
-
)
|
47
|
-
: undefined
|
48
|
-
}
|
49
|
-
{...props}
|
50
|
-
{...(isExternal
|
51
|
-
? {}
|
52
|
-
: {
|
53
|
-
// scroll to top while change url
|
54
|
-
onClick(...args) {
|
55
|
-
window.scrollTo({
|
56
|
-
top: 0,
|
57
|
-
});
|
58
|
-
props.onClick?.apply(this, args);
|
59
|
-
},
|
60
|
-
})}
|
61
|
-
/>
|
62
|
-
);
|
63
|
-
};
|
64
|
-
};
|
65
|
-
|
66
|
-
export default LinkWrapper(Link);
|
@@ -1,66 +0,0 @@
|
|
1
|
-
import React from 'react';
|
2
|
-
import { Link } from '@umijs/runtime';
|
3
|
-
import type { LinkProps, NavLinkProps } from 'react-router-dom';
|
4
|
-
|
5
|
-
/**
|
6
|
-
* Link component wrapper for render external link
|
7
|
-
* @param Component original Link component
|
8
|
-
*/
|
9
|
-
export const LinkWrapper = (Component: React.FC<LinkProps | NavLinkProps>) => {
|
10
|
-
return ({ to, ...props }: LinkProps | NavLinkProps) => {
|
11
|
-
const isExternal = /^(\w+:)?\/\/|^(mailto|tel):/.test(to as string) || !to;
|
12
|
-
const hasComplexChildren = React.isValidElement(props.children);
|
13
|
-
|
14
|
-
console.log(to, props, '=======');
|
15
|
-
|
16
|
-
return (
|
17
|
-
<Component
|
18
|
-
to={(to as any) || ''}
|
19
|
-
component={
|
20
|
-
isExternal
|
21
|
-
? () => (
|
22
|
-
<a target="_blank" rel="noopener noreferrer" href={to as string}>
|
23
|
-
{props.children}
|
24
|
-
{to && !hasComplexChildren && (
|
25
|
-
<svg
|
26
|
-
xmlns="http://www.w3.org/2000/svg"
|
27
|
-
aria-hidden="true"
|
28
|
-
x="0px"
|
29
|
-
y="0px"
|
30
|
-
viewBox="0 0 100 100"
|
31
|
-
width="15"
|
32
|
-
height="15"
|
33
|
-
className="__dumi-default-external-link-icon"
|
34
|
-
>
|
35
|
-
<path
|
36
|
-
fill="currentColor"
|
37
|
-
d="M18.8,85.1h56l0,0c2.2,0,4-1.8,4-4v-32h-8v28h-48v-48h28v-8h-32l0,0c-2.2,0-4,1.8-4,4v56C14.8,83.3,16.6,85.1,18.8,85.1z"
|
38
|
-
/>
|
39
|
-
<polygon
|
40
|
-
fill="currentColor"
|
41
|
-
points="45.7,48.7 51.3,54.3 77.2,28.5 77.2,37.2 85.2,37.2 85.2,14.9 62.8,14.9 62.8,22.9 71.5,22.9"
|
42
|
-
/>
|
43
|
-
</svg>
|
44
|
-
)}
|
45
|
-
</a>
|
46
|
-
)
|
47
|
-
: undefined
|
48
|
-
}
|
49
|
-
{...props}
|
50
|
-
{...(isExternal
|
51
|
-
? {}
|
52
|
-
: {
|
53
|
-
// scroll to top while change url
|
54
|
-
onClick(...args) {
|
55
|
-
window.scrollTo({
|
56
|
-
top: 0,
|
57
|
-
});
|
58
|
-
props.onClick?.apply(this, args);
|
59
|
-
},
|
60
|
-
})}
|
61
|
-
/>
|
62
|
-
);
|
63
|
-
};
|
64
|
-
};
|
65
|
-
|
66
|
-
export default LinkWrapper(Link);
|
File without changes
|
@@ -1,8 +0,0 @@
|
|
1
|
-
/*
|
2
|
-
* @Author: your name
|
3
|
-
* @Date: 2021-12-24 15:09:36
|
4
|
-
* @LastEditTime: 2021-12-24 15:09:37
|
5
|
-
* @LastEditors: Please set LastEditors
|
6
|
-
* @Description: 打开koroFileHeader查看配置 进行设置: https://github.com/OBKoro1/koro1FileHeader/wiki/%E9%85%8D%E7%BD%AE
|
7
|
-
* @FilePath: /fle-ui-next/.dumi/theme/NavLink.tsx
|
8
|
-
*/
|
@@ -1,66 +0,0 @@
|
|
1
|
-
import React from 'react';
|
2
|
-
import { Link } from '@umijs/runtime';
|
3
|
-
import type { LinkProps, NavLinkProps } from 'react-router-dom';
|
4
|
-
|
5
|
-
/**
|
6
|
-
* Link component wrapper for render external link
|
7
|
-
* @param Component original Link component
|
8
|
-
*/
|
9
|
-
export const LinkWrapper = (Component: React.FC<LinkProps | NavLinkProps>) => {
|
10
|
-
return ({ to, ...props }: LinkProps | NavLinkProps) => {
|
11
|
-
const isExternal = /^(\w+:)?\/\/|^(mailto|tel):/.test(to as string) || !to;
|
12
|
-
const hasComplexChildren = React.isValidElement(props.children);
|
13
|
-
|
14
|
-
console.log(to, props, '=======');
|
15
|
-
|
16
|
-
return (
|
17
|
-
<Component
|
18
|
-
to={(to as any) || ''}
|
19
|
-
component={
|
20
|
-
isExternal
|
21
|
-
? () => (
|
22
|
-
<a target="_blank" rel="noopener noreferrer" href={to as string}>
|
23
|
-
{props.children}
|
24
|
-
{to && !hasComplexChildren && (
|
25
|
-
<svg
|
26
|
-
xmlns="http://www.w3.org/2000/svg"
|
27
|
-
aria-hidden="true"
|
28
|
-
x="0px"
|
29
|
-
y="0px"
|
30
|
-
viewBox="0 0 100 100"
|
31
|
-
width="15"
|
32
|
-
height="15"
|
33
|
-
className="__dumi-default-external-link-icon"
|
34
|
-
>
|
35
|
-
<path
|
36
|
-
fill="currentColor"
|
37
|
-
d="M18.8,85.1h56l0,0c2.2,0,4-1.8,4-4v-32h-8v28h-48v-48h28v-8h-32l0,0c-2.2,0-4,1.8-4,4v56C14.8,83.3,16.6,85.1,18.8,85.1z"
|
38
|
-
/>
|
39
|
-
<polygon
|
40
|
-
fill="currentColor"
|
41
|
-
points="45.7,48.7 51.3,54.3 77.2,28.5 77.2,37.2 85.2,37.2 85.2,14.9 62.8,14.9 62.8,22.9 71.5,22.9"
|
42
|
-
/>
|
43
|
-
</svg>
|
44
|
-
)}
|
45
|
-
</a>
|
46
|
-
)
|
47
|
-
: undefined
|
48
|
-
}
|
49
|
-
{...props}
|
50
|
-
{...(isExternal
|
51
|
-
? {}
|
52
|
-
: {
|
53
|
-
// scroll to top while change url
|
54
|
-
onClick(...args) {
|
55
|
-
window.scrollTo({
|
56
|
-
top: 0,
|
57
|
-
});
|
58
|
-
props.onClick?.apply(this, args);
|
59
|
-
},
|
60
|
-
})}
|
61
|
-
/>
|
62
|
-
);
|
63
|
-
};
|
64
|
-
};
|
65
|
-
|
66
|
-
export default LinkWrapper(Link);
|
@@ -1,66 +0,0 @@
|
|
1
|
-
import React from 'react';
|
2
|
-
import { Link } from '@umijs/runtime';
|
3
|
-
import type { LinkProps, NavLinkProps } from 'react-router-dom';
|
4
|
-
|
5
|
-
/**
|
6
|
-
* Link component wrapper for render external link
|
7
|
-
* @param Component original Link component
|
8
|
-
*/
|
9
|
-
export const LinkWrapper = (Component: React.FC<LinkProps | NavLinkProps>) => {
|
10
|
-
return ({ to, ...props }: LinkProps | NavLinkProps) => {
|
11
|
-
const isExternal = /^(\w+:)?\/\/|^(mailto|tel):/.test(to as string) || !to;
|
12
|
-
const hasComplexChildren = React.isValidElement(props.children);
|
13
|
-
|
14
|
-
console.log(to, props, '=======');
|
15
|
-
|
16
|
-
return (
|
17
|
-
<Component
|
18
|
-
to={(to as any) || ''}
|
19
|
-
component={
|
20
|
-
isExternal
|
21
|
-
? () => (
|
22
|
-
<a target="_blank" rel="noopener noreferrer" href={to as string}>
|
23
|
-
{props.children}
|
24
|
-
{to && !hasComplexChildren && (
|
25
|
-
<svg
|
26
|
-
xmlns="http://www.w3.org/2000/svg"
|
27
|
-
aria-hidden="true"
|
28
|
-
x="0px"
|
29
|
-
y="0px"
|
30
|
-
viewBox="0 0 100 100"
|
31
|
-
width="15"
|
32
|
-
height="15"
|
33
|
-
className="__dumi-default-external-link-icon"
|
34
|
-
>
|
35
|
-
<path
|
36
|
-
fill="currentColor"
|
37
|
-
d="M18.8,85.1h56l0,0c2.2,0,4-1.8,4-4v-32h-8v28h-48v-48h28v-8h-32l0,0c-2.2,0-4,1.8-4,4v56C14.8,83.3,16.6,85.1,18.8,85.1z"
|
38
|
-
/>
|
39
|
-
<polygon
|
40
|
-
fill="currentColor"
|
41
|
-
points="45.7,48.7 51.3,54.3 77.2,28.5 77.2,37.2 85.2,37.2 85.2,14.9 62.8,14.9 62.8,22.9 71.5,22.9"
|
42
|
-
/>
|
43
|
-
</svg>
|
44
|
-
)}
|
45
|
-
</a>
|
46
|
-
)
|
47
|
-
: undefined
|
48
|
-
}
|
49
|
-
{...props}
|
50
|
-
{...(isExternal
|
51
|
-
? {}
|
52
|
-
: {
|
53
|
-
// scroll to top while change url
|
54
|
-
onClick(...args) {
|
55
|
-
window.scrollTo({
|
56
|
-
top: 0,
|
57
|
-
});
|
58
|
-
props.onClick?.apply(this, args);
|
59
|
-
},
|
60
|
-
})}
|
61
|
-
/>
|
62
|
-
);
|
63
|
-
};
|
64
|
-
};
|
65
|
-
|
66
|
-
export default LinkWrapper(Link);
|
@@ -1,65 +0,0 @@
|
|
1
|
-
import React from 'react';
|
2
|
-
import { Link } from '@umijs/runtime';
|
3
|
-
import type { LinkProps, NavLinkProps } from 'react-router-dom';
|
4
|
-
|
5
|
-
/**
|
6
|
-
* Link component wrapper for render external link
|
7
|
-
* @param Component original Link component
|
8
|
-
*/
|
9
|
-
export const LinkWrapper = (Component: React.FC<LinkProps | NavLinkProps>) => {
|
10
|
-
return ({ to, ...props }: LinkProps | NavLinkProps) => {
|
11
|
-
|
12
|
-
const isExternal = /^(\w+:)?\/\/|^(mailto|tel):/.test(to as string) || !to;
|
13
|
-
const hasComplexChildren = React.isValidElement(props.children);
|
14
|
-
|
15
|
-
return (
|
16
|
-
<Component
|
17
|
-
to={(to as any) || ''}
|
18
|
-
component={
|
19
|
-
isExternal
|
20
|
-
? () => (
|
21
|
-
<a target="_blank" rel="noopener noreferrer" href={to as string}>
|
22
|
-
{props.children}
|
23
|
-
{to && !hasComplexChildren && (
|
24
|
-
<svg
|
25
|
-
xmlns="http://www.w3.org/2000/svg"
|
26
|
-
aria-hidden="true"
|
27
|
-
x="0px"
|
28
|
-
y="0px"
|
29
|
-
viewBox="0 0 100 100"
|
30
|
-
width="15"
|
31
|
-
height="15"
|
32
|
-
className="__dumi-default-external-link-icon"
|
33
|
-
>
|
34
|
-
<path
|
35
|
-
fill="currentColor"
|
36
|
-
d="M18.8,85.1h56l0,0c2.2,0,4-1.8,4-4v-32h-8v28h-48v-48h28v-8h-32l0,0c-2.2,0-4,1.8-4,4v56C14.8,83.3,16.6,85.1,18.8,85.1z"
|
37
|
-
/>
|
38
|
-
<polygon
|
39
|
-
fill="currentColor"
|
40
|
-
points="45.7,48.7 51.3,54.3 77.2,28.5 77.2,37.2 85.2,37.2 85.2,14.9 62.8,14.9 62.8,22.9 71.5,22.9"
|
41
|
-
/>
|
42
|
-
</svg>
|
43
|
-
)}
|
44
|
-
</a>
|
45
|
-
)
|
46
|
-
: undefined
|
47
|
-
}
|
48
|
-
{...props}
|
49
|
-
{...(isExternal
|
50
|
-
? {}
|
51
|
-
: {
|
52
|
-
// scroll to top while change url
|
53
|
-
onClick(...args) {
|
54
|
-
window.scrollTo({
|
55
|
-
top: 0,
|
56
|
-
});
|
57
|
-
props.onClick?.apply(this, args);
|
58
|
-
},
|
59
|
-
})}
|
60
|
-
/>
|
61
|
-
);
|
62
|
-
};
|
63
|
-
};
|
64
|
-
|
65
|
-
export default LinkWrapper(Link);
|