-
Notifications
You must be signed in to change notification settings - Fork 5
New issue
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
Entry widget and secure conversations v2 #1036
Draft
rasmustautsglia
wants to merge
73
commits into
development
Choose a base branch
from
feature/entry-widget-and-secure-conversations-v2
base: development
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Draft
Entry widget and secure conversations v2 #1036
rasmustautsglia
wants to merge
73
commits into
development
from
feature/entry-widget-and-secure-conversations-v2
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
rasmustautsglia
changed the title
Feature/entry widget and secure conversations v2
Entry widget and secure conversations v2
Sep 9, 2024
rasmustautsglia
force-pushed
the
feature/entry-widget-and-secure-conversations-v2
branch
2 times, most recently
from
September 23, 2024 18:11
cd21e48
to
fa640ff
Compare
ykyivskyi-gl
force-pushed
the
feature/entry-widget-and-secure-conversations-v2
branch
from
October 8, 2024 08:44
cfb864f
to
17349d7
Compare
rasmustautsglia
force-pushed
the
feature/entry-widget-and-secure-conversations-v2
branch
from
October 17, 2024 11:07
cdf1e06
to
cac42b4
Compare
igorkravchenko
force-pushed
the
feature/entry-widget-and-secure-conversations-v2
branch
from
October 17, 2024 15:49
aed3878
to
0228f93
Compare
igorkravchenko
force-pushed
the
feature/entry-widget-and-secure-conversations-v2
branch
from
October 18, 2024 14:33
7a5e1a8
to
f4300ab
Compare
@rasmustautsglia I think the target branch should be changed to 'development', shouldn't it? |
igorkravchenko
force-pushed
the
feature/entry-widget-and-secure-conversations-v2
branch
from
October 21, 2024 07:22
f4300ab
to
ef727e2
Compare
EgorovEI
force-pushed
the
feature/entry-widget-and-secure-conversations-v2
branch
2 times, most recently
from
October 22, 2024 11:31
68ade5b
to
e0349d0
Compare
EgorovEI
force-pushed
the
feature/entry-widget-and-secure-conversations-v2
branch
from
October 22, 2024 12:06
e0349d0
to
6606af7
Compare
igorkravchenko
force-pushed
the
feature/entry-widget-and-secure-conversations-v2
branch
from
November 1, 2024 14:18
9b2e7c1
to
14d76ce
Compare
EgorovEI
force-pushed
the
feature/entry-widget-and-secure-conversations-v2
branch
from
November 11, 2024 13:22
ea35791
to
1ea3ecf
Compare
EgorovEI
force-pushed
the
development
branch
from
November 12, 2024 08:15
0212a21
to
60eac36
Compare
EgorovEI
force-pushed
the
feature/entry-widget-and-secure-conversations-v2
branch
2 times, most recently
from
December 5, 2024 14:43
50ee073
to
d507d17
Compare
EgorovEI
force-pushed
the
feature/entry-widget-and-secure-conversations-v2
branch
from
December 5, 2024 18:47
d507d17
to
37c9a9d
Compare
EgorovEI
force-pushed
the
feature/entry-widget-and-secure-conversations-v2
branch
from
December 13, 2024 14:00
76c87b1
to
c57e113
Compare
EgorovEI
force-pushed
the
development
branch
from
December 17, 2024 16:31
97b0165
to
eb3a133
Compare
This PR adds EntryWidget bottom sheet. In addition it adds the necessary support files to be able to develop EntryWidget with SwiftUI. MOB-3477
Update default global colors according to Mobile Color Tokens palette MOB-3710
Remote configuration was not applied properly. This PR fixes it. MOB-3805
According to design, chat button label needs to be just "Chat"
This commit introduces next logic: - If pending secure conversation exists, ChatTranscript screen opens and Leave Current Conversation dialog presents. Then if user press Leave, then EngagementCoordinator changes its engagement kind and starts proper flow: Chat/Audio/Video This commit also adds unit tests. MOB-3628
Add bottom banner snapshot tests and update bottom banner and send message unavailable banner to take safe are guide into account. MOB-3718
This commit improves readability of ViewController in Testing app
This commit adds next logic into EntryWidget.show(in:) method implementation: - if pending secure messaging exists ChatTranscript screen will be opened. - otherwise EntryWidget Bottom Sheet will be shown. Commit also adds unit test. MOB-3653
Rename all RemoteConfiguration properties from secureConversations to secureMessaging. Apply a chat header RemoteConfiguration to secureTranscriptHeader. MOB-3818
According to the design, subheadline needs to be gray
This commit introduces: - `hasPendingInteraction` computed property that indicates either pending secure conversation exists or unread message count > 0; - this property replaced `pendingConversationExists` value in EntryWidget and EngagementCoordinator - unit tests MOB-3821
Bump up Core SDK version to 2.0.2 and update 'hasPendingSecureConversationStatus' signature to account for callback with 'Result' instead of 'Bool'. MOB-3842
This commit introduces: - Fixing strong reference cycle in ChatView; - DismissManager struct allowing to take UIKit dismiss completion block execution under control; - new unit test; - getting rid of expectation usage in EngagementCoordinator tests. MOB-3843
Introduce 'PendingInteraction' model to determine pending interaction for SC 2.0. MOB-3850
Hide send message unavailability banner for SC flow. MOB-3834
Add 'transferring' and 'engagement.capabilities.text == true' to be used for SC availability. MOB-3654
Make sure PendingInteraction model is created after configuration to prevent subscription for unread message count and pending SC status from failure, because 'pubsub' is created only when Core SDK is configured. MOB-3871
This PR handles ongoing engagement in EntryWidget for both core engagements and call visualizer. MOB-3806
EgorovEI
force-pushed
the
feature/entry-widget-and-secure-conversations-v2
branch
from
December 17, 2024 16:35
c735b3e
to
e2ee5e6
Compare
Up until now Call Visualizer screen sharing or video call screen could only be opened through bubble tap. Entry Widget requires to open Call Visualizer by a tap on call visualizer media type, if CV session is ongoing. This PR allows to do just that, by providing an interface to resume the view. MOB-3887
If video call and screensharing were not active in Call Visualizer session calling resume() resulted in screen sharing view being opened. An unexpected behavior. To make it much more readable, state property was introduced. In addition, some code was moved around to make the class more readable.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
What was solved?
Release notes:
Additional info:
Screenshots: