New attachment storage system
This commit is contained in:
parent
273e1ccb15
commit
28664a606f
161 changed files with 2418 additions and 1562 deletions
|
@ -58,7 +58,7 @@ type PropsType = {
|
|||
} & Pick<
|
||||
ConversationType,
|
||||
| 'acceptedMessageRequest'
|
||||
| 'avatarPath'
|
||||
| 'avatarUrl'
|
||||
| 'color'
|
||||
| 'groupId'
|
||||
| 'isMe'
|
||||
|
@ -67,7 +67,7 @@ type PropsType = {
|
|||
| 'profileName'
|
||||
| 'sharedGroupNames'
|
||||
| 'title'
|
||||
| 'unblurredAvatarPath'
|
||||
| 'unblurredAvatarUrl'
|
||||
| 'serviceId'
|
||||
> &
|
||||
(
|
||||
|
@ -79,7 +79,7 @@ export const BaseConversationListItem: FunctionComponent<PropsType> =
|
|||
React.memo(function BaseConversationListItem(props) {
|
||||
const {
|
||||
acceptedMessageRequest,
|
||||
avatarPath,
|
||||
avatarUrl,
|
||||
avatarSize,
|
||||
buttonAriaLabel,
|
||||
checked,
|
||||
|
@ -106,7 +106,7 @@ export const BaseConversationListItem: FunctionComponent<PropsType> =
|
|||
shouldShowSpinner,
|
||||
testId: overrideTestId,
|
||||
title,
|
||||
unblurredAvatarPath,
|
||||
unblurredAvatarUrl,
|
||||
unreadCount,
|
||||
unreadMentionsCount,
|
||||
serviceId,
|
||||
|
@ -194,7 +194,7 @@ export const BaseConversationListItem: FunctionComponent<PropsType> =
|
|||
<div className={AVATAR_CONTAINER_CLASS_NAME}>
|
||||
<Avatar
|
||||
acceptedMessageRequest={acceptedMessageRequest}
|
||||
avatarPath={avatarPath}
|
||||
avatarUrl={avatarUrl}
|
||||
color={color}
|
||||
conversationType={conversationType}
|
||||
noteToSelf={isAvatarNoteToSelf}
|
||||
|
@ -206,7 +206,7 @@ export const BaseConversationListItem: FunctionComponent<PropsType> =
|
|||
title={title}
|
||||
sharedGroupNames={sharedGroupNames}
|
||||
size={avatarSize ?? AvatarSize.FORTY_EIGHT}
|
||||
unblurredAvatarPath={unblurredAvatarPath}
|
||||
unblurredAvatarUrl={unblurredAvatarUrl}
|
||||
// This is here to appease the type checker.
|
||||
{...(props.badge
|
||||
? { badge: props.badge, theme: props.theme }
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue