|
|
|
@ -1531,6 +1531,24 @@ typedef enum : NSUInteger {
|
|
|
|
|
return YES;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
- (BOOL)collectionView:(UICollectionView *)collectionView
|
|
|
|
|
canPerformAction:(SEL)action
|
|
|
|
|
forItemAtIndexPath:(NSIndexPath *)indexPath
|
|
|
|
|
withSender:(id)sender
|
|
|
|
|
{
|
|
|
|
|
id<OWSMessageData> messageData = [self messageAtIndexPath:indexPath];
|
|
|
|
|
return [messageData canPerformEditingAction:action];
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
- (void)collectionView:(UICollectionView *)collectionView
|
|
|
|
|
performAction:(SEL)action
|
|
|
|
|
forItemAtIndexPath:(NSIndexPath *)indexPath
|
|
|
|
|
withSender:(id)sender
|
|
|
|
|
{
|
|
|
|
|
id<OWSMessageData> messageData = [self messageAtIndexPath:indexPath];
|
|
|
|
|
[messageData performEditingAction:action];
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
- (void)collectionView:(UICollectionView *)collectionView
|
|
|
|
|
willDisplayCell:(UICollectionViewCell *)cell
|
|
|
|
|
forItemAtIndexPath:(NSIndexPath *)indexPath
|
|
|
|
@ -2653,6 +2671,23 @@ typedef enum : NSUInteger {
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
- (void)didLongPressSystemMessageCell:(OWSSystemMessageCell *)systemMessageCell;
|
|
|
|
|
{
|
|
|
|
|
OWSAssert([NSThread isMainThread]);
|
|
|
|
|
OWSAssert(systemMessageCell);
|
|
|
|
|
OWSAssert(systemMessageCell.interaction);
|
|
|
|
|
|
|
|
|
|
DDLogDebug(@"%@ long pressed system message cell: %@", self.tag, systemMessageCell);
|
|
|
|
|
|
|
|
|
|
[systemMessageCell becomeFirstResponder];
|
|
|
|
|
|
|
|
|
|
UIMenuController *theMenu = [UIMenuController sharedMenuController];
|
|
|
|
|
CGRect targetRect = [systemMessageCell.titleLabel.superview convertRect:systemMessageCell.titleLabel.frame
|
|
|
|
|
toView:systemMessageCell];
|
|
|
|
|
[theMenu setTargetRect:targetRect inView:systemMessageCell];
|
|
|
|
|
[theMenu setMenuVisible:YES animated:YES];
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#pragma mark - ContactEditingDelegate
|
|
|
|
|
|
|
|
|
|
- (void)didFinishEditingContact
|
|
|
|
@ -3694,24 +3729,6 @@ typedef enum : NSUInteger {
|
|
|
|
|
}];
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
- (BOOL)collectionView:(UICollectionView *)collectionView
|
|
|
|
|
canPerformAction:(SEL)action
|
|
|
|
|
forItemAtIndexPath:(NSIndexPath *)indexPath
|
|
|
|
|
withSender:(id)sender
|
|
|
|
|
{
|
|
|
|
|
id<OWSMessageData> messageData = [self messageAtIndexPath:indexPath];
|
|
|
|
|
return [messageData canPerformEditingAction:action];
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
- (void)collectionView:(UICollectionView *)collectionView
|
|
|
|
|
performAction:(SEL)action
|
|
|
|
|
forItemAtIndexPath:(NSIndexPath *)indexPath
|
|
|
|
|
withSender:(id)sender
|
|
|
|
|
{
|
|
|
|
|
id<OWSMessageData> messageData = [self messageAtIndexPath:indexPath];
|
|
|
|
|
[messageData performEditingAction:action];
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
- (void)updateGroupModelTo:(TSGroupModel *)newGroupModel successCompletion:(void (^_Nullable)())successCompletion
|
|
|
|
|
{
|
|
|
|
|
__block TSGroupThread *groupThread;
|
|
|
|
|