Skip to content
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

Merged
merged 9 commits into from
Aug 12, 2017
Merged

Always on top #1861

merged 9 commits into from
Aug 12, 2017

Conversation

hristoterezov
Copy link
Member

No description provided.

@hristoterezov hristoterezov force-pushed the alwaysontop branch 3 times, most recently from 292d03f to dafa93a Compare August 7, 2017 15:17
@saghul saghul self-requested a review August 8, 2017 14:30
@virtuacoplenny virtuacoplenny self-assigned this Aug 9, 2017
* @returns {boolean} - True to indicate that the given toolbar button
* is enabled, false - otherwise.
*/
export function isButtonEnabled(name) {
Copy link
Contributor

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.

Copy link
Contributor

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?

Copy link
Member Author

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,
Copy link
Contributor

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.

Copy link
Member Author

@hristoterezov hristoterezov Aug 10, 2017

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
Copy link
Contributor

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>
Copy link
Contributor

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.

Copy link
Member Author

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.

Copy link
Contributor

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?

Copy link
Member Author

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);
Copy link
Contributor

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?

Copy link
Member Author

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()
Copy link
Contributor

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?

Copy link
Member Author

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;
Copy link
Contributor

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?

Copy link
Member Author

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.

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:
Copy link
Contributor

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?

Copy link
Member Author

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:
Copy link
Contributor

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?

Copy link
Member Author

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;
Copy link
Contributor

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.

Copy link
Member Author

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>
Copy link
Contributor

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.
Copy link
Contributor

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);
Copy link
Contributor

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?

Copy link
Member Author

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?

@virtuacoplenny virtuacoplenny merged commit 1782030 into master Aug 12, 2017
@bgrozev bgrozev deleted the alwaysontop branch October 27, 2017 18:50
jallamsetty1 added a commit to jallamsetty1/jitsi-meet that referenced this pull request Feb 7, 2022
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
jallamsetty1 added a commit that referenced this pull request Feb 7, 2022
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
ankit-programmer pushed a commit to ankit-programmer/jitsi-meet that referenced this pull request May 7, 2022
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
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants