We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
To make screen reusable and take back control on navigation we need to manage all the things listed below outside of RoomViewController:
RoomViewController
Priority:
[[AppDelegate theDelegate] showRoom:room.roomId andEventId:nil withMatrixSession:self.mainSession];
[[AppDelegate theDelegate] handleUniversalLinkURL:url];
[[AppDelegate theDelegate] handleUniversalLinkFragment:fragment fromURL:url];
[[AppDelegate theDelegate] createDirectChatWithUserId:matrixId completion:completion];
[[AppDelegate theDelegate] restoreInitialDisplay:^{}];
Todo next:
[[AppDelegate theDelegate] presentCompleteSecurityForSession: self.mainSession];
- (void)showRoomInfoWithInitialSection:(RoomInfoSection)roomInfoSection
- (void)showRoomCreationModalWithBubbleData:(id<MXKRoomBubbleCellDataStoring>) bubbleData
- (void)showMemberDetails:(MXRoomMember *)member
- (void)reactionsMenuViewModelDidTapMoreReactions:(ReactionsMenuViewModel *)viewModel forEventId:(NSString *)eventId
- (void)showEditHistoryForEventId:(NSString*)eventId animated:(BOOL)animated
- (void)showMediaPickerAnimated:(BOOL)animated
- (void)roomInputToolbarViewPresentStickerPicker
if ([[segue identifier] isEqualToString:@"showRoomSearch"])
[[segue identifier] isEqualToString:@"showContactDetails"])
([[segue identifier] isEqualToString:@"showUnknownDevices"])
Nice to have:
[[AppDelegate theDelegate].callPresenter displayJitsiCallWithWidget:jitsiWidget];
[[AppDelegate theDelegate].callPresenter endActiveJitsiCall];
[[AppDelegate theDelegate].masterTabBarController missedDiscussionsCount];
missedHighlightDiscussionsCount
[[AppDelegate theDelegate] showErrorAsAlert:error];
[[AppDelegate theDelegate] showAlertWithTitle:title]
[AppDelegate theDelegate].visibleRoomId = self.roomDataSource.roomId;
lastNavigatedRoomIdFromPush
The text was updated successfully, but these errors were encountered:
No branches or pull requests
To make screen reusable and take back control on navigation we need to manage all the things listed below outside of
RoomViewController
:Priority:
[[AppDelegate theDelegate] showRoom:room.roomId andEventId:nil withMatrixSession:self.mainSession];
[[AppDelegate theDelegate] handleUniversalLinkURL:url];
&[[AppDelegate theDelegate] handleUniversalLinkFragment:fragment fromURL:url];
[[AppDelegate theDelegate] createDirectChatWithUserId:matrixId completion:completion];
[[AppDelegate theDelegate] restoreInitialDisplay:^{}];
Todo next:
[[AppDelegate theDelegate] presentCompleteSecurityForSession: self.mainSession];
- (void)showRoomInfoWithInitialSection:(RoomInfoSection)roomInfoSection
- (void)showRoomCreationModalWithBubbleData:(id<MXKRoomBubbleCellDataStoring>) bubbleData
- (void)showMemberDetails:(MXRoomMember *)member
- (void)reactionsMenuViewModelDidTapMoreReactions:(ReactionsMenuViewModel *)viewModel forEventId:(NSString *)eventId
- (void)showEditHistoryForEventId:(NSString*)eventId animated:(BOOL)animated
- (void)showMediaPickerAnimated:(BOOL)animated
- (void)roomInputToolbarViewPresentStickerPicker
if ([[segue identifier] isEqualToString:@"showRoomSearch"])
[[segue identifier] isEqualToString:@"showContactDetails"])
([[segue identifier] isEqualToString:@"showUnknownDevices"])
Nice to have:
[[AppDelegate theDelegate].callPresenter displayJitsiCallWithWidget:jitsiWidget];
&[[AppDelegate theDelegate].callPresenter endActiveJitsiCall];
[[AppDelegate theDelegate].masterTabBarController missedDiscussionsCount];
missedHighlightDiscussionsCount
[[AppDelegate theDelegate] showErrorAsAlert:error];
[[AppDelegate theDelegate] showAlertWithTitle:title]
[AppDelegate theDelegate].visibleRoomId = self.roomDataSource.roomId;
lastNavigatedRoomIdFromPush
The text was updated successfully, but these errors were encountered: