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
|
import React, { useCallback, useEffect, useLayoutEffect, useRef, useState } from 'react';
import styled from 'styled-components';
import { colors } from '../../config.json';
import { messages } from '../../shared/gettext';
import { InAppNotificationIndicatorType } from '../../shared/notifications/notification';
import * as AppButton from './AppButton';
import ImageView from './ImageView';
const NOTIFICATION_AREA_ID = 'notification-area';
export const NotificationTitle = styled.span({
fontFamily: 'Open Sans',
fontSize: '13px',
fontWeight: 800,
lineHeight: '18px',
color: colors.white,
});
export const NotificationSubtitleText = styled.span({
fontFamily: 'Open Sans',
fontSize: '13px',
fontWeight: 600,
lineHeight: '18px',
color: colors.white60,
});
interface INotificationSubtitleProps {
children?: React.ReactNode;
}
export function NotificationSubtitle(props: INotificationSubtitleProps) {
return React.Children.count(props.children) > 0 ? <NotificationSubtitleText {...props} /> : null;
}
export const NotificationOpenLinkActionButton = styled(AppButton.SimpleButton)({
flex: 1,
justifyContent: 'center',
cursor: 'default',
padding: '4px',
background: 'transparent',
border: 'none',
});
export const NotificationOpenLinkActionIcon = styled(ImageView)({
[NotificationOpenLinkActionButton + ':hover &']: {
backgroundColor: colors.white80,
},
});
interface INotifcationOpenLinkActionProps {
onClick: () => Promise<void>;
children?: React.ReactNode;
}
export function NotificationOpenLinkAction(props: INotifcationOpenLinkActionProps) {
return (
<AppButton.BlockingButton onClick={props.onClick}>
<NotificationOpenLinkActionButton
aria-describedby={NOTIFICATION_AREA_ID}
aria-label={messages.gettext('Open URL')}>
<NotificationOpenLinkActionIcon
height={12}
width={12}
tintColor={colors.white60}
source="icon-extLink"
/>
</NotificationOpenLinkActionButton>
</AppButton.BlockingButton>
);
}
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((props: INotificationIndicatorProps) => ({
width: '10px',
height: '10px',
borderRadius: '5px',
marginTop: '4px',
marginRight: '8px',
backgroundColor: props.type ? notificationIndicatorTypeColorMap[props.type] : 'transparent',
}));
interface ICollapsibleProps {
alignBottom: boolean;
contentHeight?: number;
collapsibleHeight?: number;
}
const TRANSITION_DURATION = 350;
// 52px is the height of the banner when the notification contains a title and subtitle which are
// one line each.
const TRANSITION_BASE_DISTANCE = 52;
const Collapsible = styled.div({}, (props: ICollapsibleProps) => {
// Calculate the transition duration based on travel distance.
const distance = Math.abs((props.collapsibleHeight ?? 0) - (props.contentHeight ?? 0));
const duration = Math.ceil(TRANSITION_DURATION * (distance / TRANSITION_BASE_DISTANCE));
return {
display: 'flex',
flexDirection: 'column',
justifyContent: props.alignBottom ? 'flex-end' : 'flex-start',
backgroundColor: 'rgba(25, 38, 56, 0.95)',
overflow: 'hidden',
// Using auto as the initial value prevents transition if a notification is visible on mount.
height: props.contentHeight === undefined ? 'auto' : `${props.contentHeight}px`,
transition: `height ${duration}ms ease-in-out`,
};
});
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;
visible: boolean;
}
export function NotificationBanner(props: INotificationBannerProps) {
const [contentHeight, setContentHeight] = useState<number>();
const [alignBottom, setAlignBottom] = useState(false);
const contentRef = useRef() as React.RefObject<HTMLDivElement>;
const collapsibleRef = useRef() as React.RefObject<HTMLDivElement>;
// Save last non-undefined children to be able to show them during the hide-transition.
const prevChildren = useRef<React.ReactNode>();
useEffect(() => {
prevChildren.current = props.children ?? prevChildren.current;
}, [props.children]);
const onTransitionEnd = useCallback(() => setAlignBottom(false), []);
useLayoutEffect(() => {
const newHeight = props.visible ? contentRef.current?.getBoundingClientRect().height ?? 0 : 0;
if (newHeight !== contentHeight) {
setContentHeight(newHeight);
setAlignBottom((alignBottom) => alignBottom || contentHeight === 0 || newHeight === 0);
}
});
return (
<Collapsible
ref={collapsibleRef}
alignBottom={alignBottom}
contentHeight={contentHeight}
collapsibleHeight={collapsibleRef.current?.getBoundingClientRect().height ?? 0}
className={props.className}
onTransitionEnd={onTransitionEnd}>
<Content ref={contentRef}>{props.visible ? props.children : prevChildren.current}</Content>
</Collapsible>
);
}
|