Simplify naming

This commit is contained in:
Lyubo Marinov 2017-04-05 00:18:41 -05:00
parent 6d0a07a4cd
commit 32634356a6
3 changed files with 8 additions and 5 deletions

View File

@ -100,7 +100,7 @@ export class AbstractVideoTrack extends Component {
return (
<Video
mirror = { videoTrack && videoTrack.mirrorVideo }
mirror = { videoTrack && videoTrack.mirror }
onPlaying = { this._onVideoPlaying }
stream = { stream }
zOrder = { this.props.zOrder } />

View File

@ -68,9 +68,10 @@ export function trackAdded(track) {
type => dispatch(trackVideoTypeChanged(track, type)));
// participantId
const local = track.isLocal();
let participantId;
if (track.isLocal()) {
if (local) {
const participant = getLocalParticipant(getState);
if (participant) {
@ -84,9 +85,9 @@ export function trackAdded(track) {
type: TRACK_ADDED,
track: {
jitsiTrack: track,
local: track.isLocal(),
local,
mediaType: track.getType(),
mirrorVideo: _shouldMirror(track),
mirror: _shouldMirror(track),
muted: track.isMuted(),
participantId,
videoStarted: false,

View File

@ -13,7 +13,9 @@ import {
* instance.
* @property {boolean} local=false - If track is local.
* @property {MEDIA_TYPE} mediaType=false - Media type of track.
* @property {boolean} mirrorVideo=false - If video track should be mirrored.
* @property {boolean} mirror=false - The indicator which determines whether the
* display/rendering of the track should be mirrored. It only makes sense in the
* context of video (at least at the time of this writing).
* @property {boolean} muted=false - If track is muted.
* @property {(string|undefined)} participantId - ID of participant whom this
* track belongs to.