-
Notifications
You must be signed in to change notification settings - Fork 436
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
fix(Call): introduce intermediary phase before joining call #13329
base: main
Are you sure you want to change the base?
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Works good in general, but I'd test it in some real calls before merging
@@ -321,27 +321,29 @@ const mutations = { | |||
if (state.inCall[token] && state.inCall[token][sessionId]) { | |||
Vue.delete(state.inCall[token], sessionId) | |||
} | |||
|
|||
if (state.connecting[token] && state.connecting[token][sessionId]) { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think we can keep this resetting (in case it survives somehow). Maybe via commit('finishedConnecting')
?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Still missing for leaveCall
|
f700fed
to
1191f69
Compare
It was because |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Tested, looks and works fine
Let's wait for @danxuliu opinion on that
1191f69
to
40205de
Compare
40205de
to
0d90b15
Compare
ecc00b8
to
005a3b0
Compare
…t. It's only received when using internal server. Replace them with events from the base class so we make sure it's always received. Also, add a new event for failed joining Signed-off-by: DorraJaouad <[email protected]>
…nCall, connecting, connection failed) Signed-off-by: DorraJaouad <[email protected]>
…roduce a failed join message dialog. Signed-off-by: DorraJaouad <[email protected]>
Signed-off-by: DorraJaouad <[email protected]>
005a3b0
to
00f74c3
Compare
…l AND wait for participants list Signed-off-by: DorraJaouad <[email protected]>
00f74c3
to
855da4f
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Some thoughts from me
src/components/TopBar/CallButton.vue
Outdated
:type="startCallButtonType" | ||
@click="handleClick"> | ||
<template #icon> | ||
<IconPhoneDial v-if="isPhoneRoom" :size="20" /> | ||
<NcLoadingIcon v-if="isJoiningCall || loading" /> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Also add spinner when leaving conversation (loading
is true)?
@@ -321,27 +321,29 @@ const mutations = { | |||
if (state.inCall[token] && state.inCall[token][sessionId]) { | |||
Vue.delete(state.inCall[token], sessionId) | |||
} | |||
|
|||
if (state.connecting[token] && state.connecting[token][sessionId]) { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Still missing for leaveCall
Signed-off-by: DorraJaouad <[email protected]>
Signed-off-by: DorraJaouad <[email protected]>
Signed-off-by: DorraJaouad <[email protected]>
Signed-off-by: DorraJaouad <[email protected]>
Signed-off-by: DorraJaouad <[email protected]>
🖌️ UI Checklist
🖼️ Screenshots / Screencasts
Before
Recording.2024-09-17.160718.mp4
After
Recording.2024-09-17.160913.mp4
🏁 Checklist