-
Notifications
You must be signed in to change notification settings - Fork 7.1k
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
Always on top #1861
Always on top #1861
Conversation
459a967
to
48a60e9
Compare
292d03f
to
dafa93a
Compare
* @returns {boolean} - True to indicate that the given toolbar button | ||
* is enabled, false - otherwise. | ||
*/ | ||
export function isButtonEnabled(name) { |
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.
What did this change of moving the function provide you? I'm not against it but I also don't understand why you moved it.
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'm guessing now you did it for a lighter package?
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 refactored a little bit UIUtils in order to decrease the size of always on top bundle. Specifically isButtonEnabled
was a good candidate to be moved in the toolbox feature. You think it is better to be defined in UIUtils or somewhere else?
button.tooltipText, | ||
tooltipPosition); | ||
} else { | ||
UIUtil.setTooltip(this.button, | ||
setTooltip(this.button, |
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.
Why did you move tooltips? Again, I'm not against this but I don't understand what it gives you, especially with reactification of tooltips in review.
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 started this as a part of the effort to reduce the size of the always on top bundle. But at the end the problem with UIUtils turned out to be related to an unused import. I don't think I need this change but at the end I liked how the tooltips are separated from all other random util methods.
I think I can easily revert change if needed?
I was not aware of the tooltips reactification status but I don't see a problem with this. Are you worried that this changes are going to be in conflict with the reactification PR?
* toolbar items such as buttons. Toolbar is commonly placed inside of a | ||
* Toolbox. | ||
* | ||
* @class Toolbar |
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 these comments need updating, at least redoing the "class Toolbar" part.
{ this._renderPopups(popups) } | ||
</a> | ||
</StatelessToolbarButton> |
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 don't fully understand the naming of "stateless." Could you explain to me why the button/toolbar on master is not stateless? When I think "stateful" I think of something with this.state.
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 named it "stateless" because it doesn't use this.state, lifecycle methods and redux.
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.
Okay, so stateless as in like a react stateless component, one with just a render method?
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.
Yes!
@@ -2343,6 +2345,7 @@ export default { | |||
'device count: ' + videoDeviceCount); | |||
|
|||
APP.store.dispatch(setVideoAvailable(available)); | |||
APP.API.notifyVideoAvailabilityChanged(available); |
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'm wondering these API calls are better to do in redux/actions/middleware. However, it would make the logic more difficult to detect while conference.js is still in heavy use. Is it tricky to move these calls out of conference and into the react/redux app world?
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 suppose it won't be tricky but personally I would prefer to move the API module first. Anyway it will be another task.
api.isAudioMuted(), | ||
api.isVideoMuted(), | ||
api.isAudioAvailable(), | ||
api.isVideoAvailable() |
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 just noticed a naming difference between isXEnabled vs isXAvailable. Do the mean the same thing? What does "enabled" mean?
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.
They are absolutely the same. Initially I was using enabled for everything because this was the naming in jitsi-meet. But after that when I was rebasing the branch everything was changed to available. Probably I forgot to rename the events. Will fix it!
import StatelessToolbarButton | ||
from '../toolbox/components/StatelessToolbarButton'; | ||
|
||
const { api } = window.alwaysOnTop; |
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.
Where does window.alwaysOnTop get defined?
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.
jitsi-meet-electron-utils project defines it.
dafa93a
to
752beb6
Compare
doc/api.md
Outdated
@@ -141,6 +141,20 @@ The `listener` parameter is a Function object with one argument that will be not | |||
|
|||
The following events are currently supported: | |||
|
|||
* **audioEnabledStatusChanged** - event notifications about audio enabled status changes. The listener will receive an object with the following structure: |
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.
Does this event name still get fired?
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.
No. I forgot to rename it here. Thanks for pointing it! I'll fix it!
doc/api.md
Outdated
@@ -196,6 +210,20 @@ changes. The listener will receive an object with the following structure: | |||
} | |||
``` | |||
|
|||
* **videoEnabledStatusChanged** - event notifications about video enabled status changes. The listener will receive an object with the following structure: |
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.
Does this event name still get fired?
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.
No. I forgot to rename it here. Thanks for pointing it! I'll fix it!
return false; | ||
} | ||
|
||
return true; |
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.
What does the return true/false do exactly? I see it used elsewhere too.
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.
true means that the message is processed and false means that it is not processed. If a message is not processed we are caching the message. You can see the logic in Transport.emit.
{ this._renderPopups(popups) } | ||
</a> | ||
</StatelessToolbarButton> |
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.
Okay, so stateless as in like a react stateless component, one with just a render method?
} | ||
|
||
/** | ||
* Removes the mouse move listener. |
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 this comment needs updating because more than the mouse move listener is removed.
) | ||
.catch(console.error); | ||
|
||
window.addEventListener('mousemove', this._mouseMove); |
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.
mousemove will cause a lot of events to get captured. There was no problem encountered?
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 haven't noticed any problems. Aren't we doing the same thing for jitsi-meet's toolbar? Do you have something in mind to improve it?
752beb6
to
88435c5
Compare
fix(ProxyConnection) set signaling layer by @saghul in jitsi#1862 fix: Fixes version while building. by @damencho in jitsi#1866 feat(multi-stream-support)Add support for multiple local and remote tracks/mediaType. by @jallamsetty1 in jitsi#1861 fix: Add private message handler for breakout_rooms by @steve-vsee in jitsi#1867 fix(JingleSessionPC) Do not force track removal at pc level on user leave. by @jallamsetty1 in jitsi#1869 feat(multi-stream-support) Handle SDP munging for multiple local/remote streams per ep. by @jallamsetty1 in jitsi#1868
fix(ProxyConnection) set signaling layer by @saghul in #1862 fix: Fixes version while building. by @damencho in #1866 feat(multi-stream-support)Add support for multiple local and remote tracks/mediaType. by @jallamsetty1 in #1861 fix: Add private message handler for breakout_rooms by @steve-vsee in #1867 fix(JingleSessionPC) Do not force track removal at pc level on user leave. by @jallamsetty1 in #1869 feat(multi-stream-support) Handle SDP munging for multiple local/remote streams per ep. by @jallamsetty1 in #1868
fix(ProxyConnection) set signaling layer by @saghul in jitsi#1862 fix: Fixes version while building. by @damencho in jitsi#1866 feat(multi-stream-support)Add support for multiple local and remote tracks/mediaType. by @jallamsetty1 in jitsi#1861 fix: Add private message handler for breakout_rooms by @steve-vsee in jitsi#1867 fix(JingleSessionPC) Do not force track removal at pc level on user leave. by @jallamsetty1 in jitsi#1869 feat(multi-stream-support) Handle SDP munging for multiple local/remote streams per ep. by @jallamsetty1 in jitsi#1868
No description provided.