File tree Expand file tree Collapse file tree 3 files changed +8
-0
lines changed
client/packages/lowcoder/src Expand file tree Collapse file tree 3 files changed +8
-0
lines changed Original file line number Diff line number Diff line change @@ -252,6 +252,7 @@ let VideoCompBuilder = (function (props) {
252252 < ReactResizeDetector onResize = { onResize } >
253253 < Container ref = { conRef } $style = { props . style } >
254254 < VideoContainer
255+ onClick = { ( ) => props . onEvent ( "videoClicked" ) }
255256 ref = { videoRef }
256257 $style = { props . style }
257258 id = { props . userId . value }
Original file line number Diff line number Diff line change @@ -368,6 +368,11 @@ export const videoActiveInactive: EventConfigType = {
368368 value : "videoActiveInactive" ,
369369 description : trans ( "meeting.videoActiveInactive" ) ,
370370} ;
371+ export const videoClicked : EventConfigType = {
372+ label : trans ( "meeting.videoClicked" ) ,
373+ value : "videoClicked" ,
374+ description : trans ( "meeting.videoClicked" ) ,
375+ } ;
371376export const InputEventHandlerControl = eventHandlerControl ( [
372377 changeEvent ,
373378 focusEvent ,
@@ -400,4 +405,5 @@ export const MeetingEventHandlerControl = eventHandlerControl([
400405 cameraView ,
401406 audioMuteUnmute ,
402407 videoActiveInactive ,
408+ videoClicked ,
403409] as const ) ;
Original file line number Diff line number Diff line change @@ -1440,6 +1440,7 @@ export const en = {
14401440 screenShared : "Screen Shared" ,
14411441 screenSharedDesc : "Screen Shared" ,
14421442 audioMuteUnmute : "Audio Mute" ,
1443+ videoClicked : "Video Clicked" ,
14431444 videoActiveInactive : "Video Active Inactive" ,
14441445 size : "Size" ,
14451446 top : "Top" ,
You can’t perform that action at this time.
0 commit comments