Multi-select forwarding and deleting

This commit is contained in:
Jamie Kyle 2023-03-20 15:23:53 -07:00 committed by GitHub
parent d986356eea
commit 1d549a9991
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
82 changed files with 2607 additions and 991 deletions

View file

@ -148,8 +148,8 @@ type PropsLocalType = {
item?: TimelineItemType;
id: string;
isNextItemCallingNotification: boolean;
isSelected: boolean;
selectMessage: (messageId: string, conversationId: string) => unknown;
isTargeted: boolean;
targetMessage: (messageId: string, conversationId: string) => unknown;
shouldRenderDateHeader: boolean;
renderContact: SmartContactRendererType<FullJSXType>;
renderUniversalTimerNotification: () => JSX.Element;
@ -186,11 +186,11 @@ export class TimelineItem extends React.PureComponent<PropsType> {
i18n,
id,
isNextItemCallingNotification,
isSelected,
isTargeted,
item,
renderUniversalTimerNotification,
returnToActiveCall,
selectMessage,
targetMessage,
shouldCollapseAbove,
shouldCollapseBelow,
shouldHideMetadata,
@ -216,8 +216,8 @@ export class TimelineItem extends React.PureComponent<PropsType> {
<TimelineMessage
{...reducedProps}
{...item.data}
isSelected={isSelected}
selectMessage={selectMessage}
isTargeted={isTargeted}
targetMessage={targetMessage}
shouldCollapseAbove={shouldCollapseAbove}
shouldCollapseBelow={shouldCollapseBelow}
shouldHideMetadata={shouldHideMetadata}
@ -346,8 +346,8 @@ export class TimelineItem extends React.PureComponent<PropsType> {
<InlineNotificationWrapper
id={id}
conversationId={conversationId}
isSelected={isSelected}
selectMessage={selectMessage}
isTargeted={isTargeted}
targetMessage={targetMessage}
>
{notification}
</InlineNotificationWrapper>