-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathLinkBase.tsx
More file actions
254 lines (233 loc) · 6.15 KB
/
Copy pathLinkBase.tsx
File metadata and controls
254 lines (233 loc) · 6.15 KB
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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
import classNames from 'classnames';
import { IconLinkExternal, IconSize } from 'hds-react';
import React, { Children, isValidElement, useMemo } from 'react';
import type { ReactElement, ReactNode } from 'react';
import styles from './LinkBase.module.scss';
// copied from helsinki-design-system
// TODO: LinkBase component should be replaced with hds Link, when all features are supported
// issue is created to hds: https://github.com/City-of-Helsinki/helsinki-design-system/issues/808
export type LinkProps = Omit<
React.ComponentPropsWithRef<'a'>,
'target' | 'href' | 'onPointerEnterCapture' | 'onPointerLeaveCapture'
> & {
/**
* Link content
*/
children: ReactNode;
/**
* Boolean indicating whether visited styles of the link are applied
*/
disableVisitedStyles?: boolean;
/**
* Boolean indicating whether the link will lead user to external domain.
*/
external?: boolean;
/**
* Boolean indicating whether the link will lead user to external domain.
*/
showExternalIcon?: boolean;
/**
* Hypertext Reference of the link.
*/
href: string;
/**
* Element placed on the left side of the link text
*/
iconLeft?: React.ReactNode;
/**
* Element placed on the right side of the link text
*/
iconRight?: React.ReactNode;
/**
* Boolean indicating whether the link will open in new tab or not.
*/
openInNewTab?: boolean;
/**
* Aria label for opening link in a new tab
*/
openInNewTabAriaLabel?: string;
/**
* Aria label for opening link in an external domain
*/
openInExternalDomainAriaLabel?: string;
/**
* Size of the link
*/
size?: 'S' | 'M' | 'L';
/**
* Additional styles
*/
style?: React.CSSProperties;
inlineIcons?: boolean;
};
const mapLinkSizeToExternalIconSize: Record<
NonNullable<LinkProps['size']>,
IconSize
> = {
L: IconSize.Large,
M: IconSize.Small,
S: IconSize.ExtraSmall,
} as const;
const hasChildren = (
element: ReactNode,
): element is ReactElement<{ children: ReactNode[] }> =>
isValidElement<{ children?: ReactNode[] }>(element) &&
Boolean(element.props.children);
const childToString = (child?: ReactNode): string => {
if (
typeof child === 'undefined' ||
child === null ||
typeof child === 'boolean'
) {
return '';
}
if (JSON.stringify(child) === '{}') {
return '';
}
return (child as number | string).toString();
};
export const getTextFromReactChildren = (children: ReactNode): string => {
if (!(children instanceof Array) && !isValidElement(children)) {
return childToString(children);
}
return Children.toArray(children).reduce(
(text: string, child: ReactNode): string => {
let newText: string;
if (isValidElement(child) && hasChildren(child)) {
newText = getTextFromReactChildren(child.props.children);
} else if (isValidElement(child) && !hasChildren(child)) {
newText = '';
} else {
newText = childToString(child);
}
return text.concat(newText);
},
'',
) as string;
};
function LinkBase({
children,
className,
disableVisitedStyles = true,
external = false,
showExternalIcon = true,
href,
iconLeft,
iconRight,
openInNewTab = false,
openInExternalDomainAriaLabel,
openInNewTabAriaLabel,
style = {},
size = 'M',
inlineIcons = false,
ref,
...rest
}: LinkProps) {
const composeAriaLabel = () => {
let childrenText = getTextFromReactChildren(children);
const newTabText = openInNewTab
? openInNewTabAriaLabel || 'Avautuu uudessa välilehdessä.'
: '';
const externalText = external
? openInExternalDomainAriaLabel || 'Siirtyy toiseen sivustoon.'
: '';
if (
childrenText &&
childrenText.slice(-1) !== '.' &&
(newTabText || externalText)
) {
childrenText = `${childrenText}.`;
}
const label = [childrenText, newTabText, externalText]
.filter((text) => text)
.join(' ');
if (!label.trim()) {
return undefined;
}
return label;
};
const ZERO_WIDTH_NO_BREAK_SPACE = '\uFEFF';
const leftIcon = useMemo(
() =>
(iconLeft && (
<span className={styles.iconLeft} aria-hidden="true">
{inlineIcons && ZERO_WIDTH_NO_BREAK_SPACE}
{iconLeft}
</span>
)) ||
null,
[iconLeft, inlineIcons],
);
const externalIcon = useMemo(
() =>
(showExternalIcon && external && (
<span className={styles.externalWrapper}>
{inlineIcons && ZERO_WIDTH_NO_BREAK_SPACE}
<IconLinkExternal
size={mapLinkSizeToExternalIconSize[size]}
className={classNames(
styles.icon,
size === 'L'
? styles.verticalAlignBigIcon
: styles.verticalAlignSmallOrMediumIcon,
)}
aria-hidden
/>
</span>
)) ||
null,
[showExternalIcon, external, inlineIcons, size],
);
const rightIcon = useMemo(
() =>
(iconRight && (
<span
className={classNames(
styles.iconRight,
size === 'L'
? styles.verticalAlignBigIcon
: styles.verticalAlignSmallOrMediumIcon,
)}
aria-hidden="true"
>
{inlineIcons && ZERO_WIDTH_NO_BREAK_SPACE}
{iconRight}
</span>
)) ||
null,
[iconRight, inlineIcons, size],
);
return (
<a
className={classNames(
styles.link,
styles[`link${size}`],
disableVisitedStyles ? styles.disableVisitedStyles : '',
className,
)}
href={href}
style={style}
ref={ref}
target={openInNewTab ? '_blank' : undefined}
rel={openInNewTab ? 'noopener noreferrer' : undefined}
aria-label={composeAriaLabel()}
{...rest}
>
{!inlineIcons && leftIcon}
<span
className={classNames(
styles.content,
!!iconLeft && styles.withLeftIcon,
)}
>
{inlineIcons && leftIcon}
{children}
{inlineIcons && externalIcon}
{inlineIcons && rightIcon}
</span>
{!inlineIcons && externalIcon}
{!inlineIcons && rightIcon}
</a>
);
}
export default LinkBase;