ソースを参照

feat: (video-thumbnail) add permanent participant name to video thumbnail

master
Andrei Oltean 3年前
コミット
dd89034503
1個のファイルの変更4行の追加1行の削除
  1. 4
    1
      react/features/filmstrip/components/web/Thumbnail.js

+ 4
- 1
react/features/filmstrip/components/web/Thumbnail.js ファイルの表示

180
     _localFlipX: boolean,
180
     _localFlipX: boolean,
181
 
181
 
182
     /**
182
     /**
183
-     * An object with information about the participant related to the thumbnaul.
183
+     * An object with information about the participant related to the thumbnail.
184
      */
184
      */
185
     _participant: Object,
185
     _participant: Object,
186
 
186
 
786
             containerClassName = `${containerClassName} self-view-mobile-portrait`;
786
             containerClassName = `${containerClassName} self-view-mobile-portrait`;
787
         }
787
         }
788
 
788
 
789
+        console.log(_participant);
790
+
789
         return (
791
         return (
790
             <span
792
             <span
791
                 className = { containerClassName }
793
                 className = { containerClassName }
812
                 </span>
814
                 </span>
813
                 <div className = 'videocontainer__toolbar'>
815
                 <div className = 'videocontainer__toolbar'>
814
                     <StatusIndicators participantID = { id } />
816
                     <StatusIndicators participantID = { id } />
817
+                    <div>{ _participant.name }</div>
815
                 </div>
818
                 </div>
816
                 <div className = 'videocontainer__toptoolbar'>
819
                 <div className = 'videocontainer__toptoolbar'>
817
                     { this._renderTopIndicators() }
820
                     { this._renderTopIndicators() }

読み込み中…
キャンセル
保存