-
Notifications
You must be signed in to change notification settings - Fork 78
Expand file tree
/
Copy pathAttachmentCard.tsx
More file actions
236 lines (226 loc) · 7.3 KB
/
AttachmentCard.tsx
File metadata and controls
236 lines (226 loc) · 7.3 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
// Copyright (c) Microsoft Corporation.
// Licensed under the MIT License.
import { Icon, TooltipHost } from '@fluentui/react';
import {
Card,
CardHeader,
Text,
Menu,
MenuTrigger,
ToolbarButton,
MenuPopover,
MenuItem,
MenuList,
Toolbar,
CardFooter,
ProgressBar,
mergeClasses
} from '@fluentui/react-components';
import { getFileTypeIconProps } from '@fluentui/react-file-type-icons';
import React from 'react';
import { _pxToRem } from '@internal/acs-ui-common';
import { Announcer } from '../Announcer';
import { useEffect, useState, useMemo } from 'react';
import { _AttachmentUploadCardsStrings } from './AttachmentUploadCards';
import { useLocaleAttachmentCardStringsTrampoline } from '../utils/common';
import { AttachmentMenuAction } from '../../types/Attachment';
import { AttachmentMetadata, AttachmentMetadataInProgress } from '@internal/acs-ui-common';
import {
useAttachmentCardStyles,
attachmentNameContainerClassName,
ATTACHMENT_CARD_MIN_PROGRESS
} from '../styles/AttachmentCard.styles';
/**
* @internal
* AttachmentCard Component Props.
*/
export interface _AttachmentCardProps {
/**
* Attachment details including name, extension, url, etc.
*/
attachment: AttachmentMetadata | AttachmentMetadataInProgress;
/**
* An array of menu actions to be displayed in the attachment card.
*/
menuActions: AttachmentMenuAction[];
/**
* Optional aria label strings for attachment upload cards
*/
strings?: _AttachmentUploadCardsStrings;
/**
* Optional callback that runs if menu bar action onclick throws.
*/
onActionHandlerFailed?: (errMsg: string) => void;
/**
* Optional flag to enable self resizing of the attachment card.
*/
selfResizing?: boolean;
}
/**
* @internal
* A component for displaying an attachment card with attachment icon and progress bar.
*
* `_AttachmentCard` internally uses the `Card` component from `@fluentui/react-components`. You can checkout the details about these components [here](https://react.fluentui.dev/?path=/docs/components-card).
*/
export const _AttachmentCard = (props: _AttachmentCardProps): JSX.Element => {
const { attachment, menuActions, onActionHandlerFailed, selfResizing } = props;
const attachmentCardStyles = useAttachmentCardStyles();
const progress = useMemo(() => {
return 'progress' in attachment ? attachment.progress : undefined;
}, [attachment]);
const isUploadInProgress = useMemo(() => {
return progress !== undefined && progress >= 0 && progress < 1;
}, [progress]);
const [announcerString, setAnnouncerString] = useState<string | undefined>(undefined);
const localeStrings = useLocaleAttachmentCardStringsTrampoline();
const uploadStartedString = props.strings?.uploading ?? localeStrings.uploading;
const uploadCompletedString = props.strings?.uploadCompleted ?? localeStrings.uploadCompleted;
useEffect(() => {
if (isUploadInProgress) {
setAnnouncerString(`${uploadStartedString} ${attachment.name}`);
} else if (progress === 1) {
setAnnouncerString(`${attachment.name} ${uploadCompletedString}`);
} else {
setAnnouncerString(undefined);
}
}, [progress, isUploadInProgress, attachment.name, uploadStartedString, uploadCompletedString]);
const extension = useMemo((): string => {
const re = /(?:\.([^.]+))?$/;
const match = re.exec(attachment.name);
return match && match[1] ? match[1] : '';
}, [attachment]);
return (
<div data-is-focusable={true}>
<Announcer announcementString={announcerString} ariaLive={'polite'} />
<Card
className={mergeClasses(
attachmentCardStyles.root,
selfResizing ? attachmentCardStyles.dynamicWidth : attachmentCardStyles.staticWidth
)}
size="small"
role="listitem"
appearance="filled-alternative"
aria-label={attachment.name}
data-testid={'attachment-card'}
>
<CardHeader
className={attachmentCardStyles.content}
image={
<div className={attachmentCardStyles.fileIcon}>
<Icon
data-ui-id={'attachmenttype-icon'}
iconName={
getFileTypeIconProps({
extension: extension,
size: 24,
imageFileType: 'svg'
}).iconName
}
/>
</div>
}
header={
<div className={attachmentNameContainerClassName} id={'attachment-' + attachment.id}>
<TooltipHost
content={attachment.name}
calloutProps={{
gapSpace: 0,
target: '#attachment-' + attachment.id
}}
>
<div className={attachmentCardStyles.fileNameLabel}>
<Text className={attachmentCardStyles.title} aria-label={attachment.name}>
{attachment.name}
</Text>
</div>
</TooltipHost>
</div>
}
action={
<div className={attachmentCardStyles.focusState}>
{MappedMenuItems(
menuActions,
{
...attachment,
url: attachment.url ?? ''
},
onActionHandlerFailed
)}
</div>
}
/>
</Card>
{isUploadInProgress ? (
<CardFooter>
<ProgressBar
thickness="medium"
value={Math.max(progress ?? 0, ATTACHMENT_CARD_MIN_PROGRESS)}
shape="rounded"
/>
</CardFooter>
) : (
<> </>
)}
</div>
);
};
const MappedMenuItems = (
menuActions: AttachmentMenuAction[],
attachment: AttachmentMetadata,
handleOnClickError?: (errMsg: string) => void
): JSX.Element => {
const localeStrings = useLocaleAttachmentCardStringsTrampoline();
if (menuActions.length === 0) {
return <></>;
}
return menuActions.length === 1 ? (
<TooltipHost content={menuActions[0].name}>
<ToolbarButton
aria-label={menuActions[0].name}
role="button"
icon={menuActions[0].icon}
onClick={() => {
try {
menuActions[0].onClick(attachment);
} catch (e) {
handleOnClickError?.((e as Error).message);
}
}}
/>
</TooltipHost>
) : (
<Toolbar>
<Menu>
<TooltipHost content={localeStrings.attachmentMoreMenu}>
<MenuTrigger>
<ToolbarButton
aria-label={localeStrings.attachmentMoreMenu}
role="button"
icon={<Icon iconName="AttachmentMoreMenu" />}
/>
</MenuTrigger>
</TooltipHost>
<MenuPopover>
<MenuList>
{menuActions.map((menuItem, index) => (
<MenuItem
aria-label={menuItem.name}
key={index}
icon={menuItem.icon}
onClick={async () => {
try {
await menuItem.onClick(attachment);
} catch (e) {
handleOnClickError?.((e as Error).message);
}
}}
>
{menuItem.name}
</MenuItem>
))}
</MenuList>
</MenuPopover>
</Menu>
</Toolbar>
);
};