-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathAlertFieldLevel.tsx
58 lines (51 loc) · 1.39 KB
/
AlertFieldLevel.tsx
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
import type { JSXElement } from '~/src/types/jsxElement';
import { Icon } from '../Icon/Icon';
import './Alert.css';
export type AlertFieldLevelType = 'error' | 'info' | 'success' | 'warning';
export enum AlertFieldLevelClass {
'info' = '__info',
'error' = '__error',
'success' = '__success',
'warning' = '__warning'
}
export const MapTypeToIconName = {
info: 'information',
error: 'error',
success: 'approved',
warning: 'warning'
};
export interface AlertFieldLevelProperties
extends React.HTMLAttributes<HTMLDivElement> {
status?: AlertFieldLevelType;
message: React.ReactNode;
isVisible?: boolean;
}
export const AlertFieldLevel = ({
status = 'info',
message,
isVisible = true,
...properties
}: AlertFieldLevelProperties): JSXElement => {
if (!isVisible || !message) return null;
if (!['error', 'success', 'warning', 'info'].includes(status))
return (
<p data-testid='message'>
[Error] Unsupported field-level alert type provided: {status}
</p>
);
return (
<div
className={`a-form-alert a-form-alert${AlertFieldLevelClass[status]} a-alertfieldlevel-container`}
role='alert'
{...properties}
>
<Icon name={MapTypeToIconName[status]} alt={status} withBg />
<span
className='a-form-alert_text a-alertfieldlevel-text'
data-testid='message'
>
{message}
</span>
</div>
);
};