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
|
import { motion } from 'motion/react';
import React from 'react';
import styled from 'styled-components';
import { messages } from '../../shared/gettext';
import { InAppNotificationIndicatorType } from '../../shared/notifications/notification';
import { IconButton } from '../lib/components';
import { colors } from '../lib/foundations';
import { useExclusiveTask } from '../lib/hooks/use-exclusive-task';
import { tinyText } from './common-styles';
const NOTIFICATION_AREA_ID = 'notification-area';
export const NotificationTitle = styled.span(tinyText, {
color: colors.white,
});
export const NotificationSubtitleText = styled.span(tinyText, {
color: colors.whiteAlpha60,
});
interface INotificationSubtitleProps {
children?: React.ReactNode;
}
export function NotificationSubtitle(props: INotificationSubtitleProps) {
return React.Children.count(props.children) > 0 ? <NotificationSubtitleText {...props} /> : null;
}
interface NotificationActionProps {
onClick: () => Promise<void>;
}
export function NotificationOpenLinkAction(props: NotificationActionProps) {
const [onClick] = useExclusiveTask(props.onClick);
return (
<IconButton
size="small"
variant="secondary"
onClick={onClick}
aria-describedby={NOTIFICATION_AREA_ID}
aria-label={messages.gettext('Open URL')}>
<IconButton.Icon icon="external" />
</IconButton>
);
}
export function NotificationTroubleshootDialogAction(props: NotificationActionProps) {
return (
<IconButton
size="small"
variant="secondary"
aria-describedby={NOTIFICATION_AREA_ID}
aria-label={messages.gettext('Troubleshoot')}
onClick={props.onClick}>
<IconButton.Icon icon="info-circle" />
</IconButton>
);
}
export function NotificationCloseAction(props: NotificationActionProps) {
return (
<IconButton
aria-describedby={NOTIFICATION_AREA_ID}
variant="secondary"
aria-label={messages.pgettext('accessibility', 'Close notification')}
onClick={props.onClick}
size="small">
<IconButton.Icon icon="cross-circle" />
</IconButton>
);
}
export const NotificationContent = styled.div.attrs({ id: NOTIFICATION_AREA_ID })({
display: 'flex',
flexDirection: 'column',
flex: 1,
paddingRight: '4px',
});
export const NotificationActions = styled.div({
display: 'flex',
flex: 0,
flexDirection: 'column',
justifyContent: 'center',
});
interface INotificationIndicatorProps {
$type?: InAppNotificationIndicatorType;
}
const notificationIndicatorTypeColorMap = {
success: colors.green,
warning: colors.yellow,
error: colors.red,
};
export const NotificationIndicator = styled.div<INotificationIndicatorProps>((props) => ({
width: '10px',
height: '10px',
borderRadius: '5px',
marginTop: '4px',
marginRight: '8px',
backgroundColor: props.$type
? notificationIndicatorTypeColorMap[props.$type]
: colors.transparent,
}));
const Collapsible = styled(motion.div)({
display: 'flex',
flexDirection: 'column',
justifyContent: 'flex-start',
translateY: '0%',
backgroundColor: colors.darkerBlue50,
overflow: 'hidden',
});
const Content = styled.section({
display: 'flex',
flexDirection: 'row',
padding: '8px 12px 8px 16px',
height: 'fit-content',
});
interface INotificationBannerProps {
children?: React.ReactNode; // Array<NotificationContent | NotificationActions>,
className?: string;
animateIn: boolean;
}
export function NotificationBanner({ className, children, animateIn }: INotificationBannerProps) {
const translateYInitial = animateIn ? '-100%' : '0%';
return (
<Collapsible
animate={{ translateY: '0%' }}
className={className}
exit={{ translateY: '-100%' }}
initial={{ translateY: translateYInitial }}
transition={{ duration: 0.25 }}>
<Content>{children}</Content>
</Collapsible>
);
}
|