Explain what each sorting bin means
This commit is contained in:
@@ -131,13 +131,37 @@ export type WindowMode = "normal" | "full screen" | "pip";
|
|||||||
* Sorting bins defining the order in which media tiles appear in the layout.
|
* Sorting bins defining the order in which media tiles appear in the layout.
|
||||||
*/
|
*/
|
||||||
enum SortingBin {
|
enum SortingBin {
|
||||||
|
/**
|
||||||
|
* Yourself, when the "always show self" option is on.
|
||||||
|
*/
|
||||||
SelfAlwaysShown,
|
SelfAlwaysShown,
|
||||||
|
/**
|
||||||
|
* Participants that are sharing their screen.
|
||||||
|
*/
|
||||||
Presenters,
|
Presenters,
|
||||||
|
/**
|
||||||
|
* Participants that have been speaking recently.
|
||||||
|
*/
|
||||||
Speakers,
|
Speakers,
|
||||||
|
/**
|
||||||
|
* Participants with both video and audio.
|
||||||
|
*/
|
||||||
VideoAndAudio,
|
VideoAndAudio,
|
||||||
|
/**
|
||||||
|
* Participants with video but no audio.
|
||||||
|
*/
|
||||||
Video,
|
Video,
|
||||||
|
/**
|
||||||
|
* Participants with audio but no video.
|
||||||
|
*/
|
||||||
Audio,
|
Audio,
|
||||||
|
/**
|
||||||
|
* Participants not sharing any media.
|
||||||
|
*/
|
||||||
NoMedia,
|
NoMedia,
|
||||||
|
/**
|
||||||
|
* Yourself, when the "always show self" option is off.
|
||||||
|
*/
|
||||||
SelfNotAlwaysShown,
|
SelfNotAlwaysShown,
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user