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) {
252
252
< ReactResizeDetector onResize = { onResize } >
253
253
< Container ref = { conRef } $style = { props . style } >
254
254
< VideoContainer
255
+ onClick = { ( ) => props . onEvent ( "videoClicked" ) }
255
256
ref = { videoRef }
256
257
$style = { props . style }
257
258
id = { props . userId . value }
Original file line number Diff line number Diff line change @@ -368,6 +368,11 @@ export const videoActiveInactive: EventConfigType = {
368
368
value : "videoActiveInactive" ,
369
369
description : trans ( "meeting.videoActiveInactive" ) ,
370
370
} ;
371
+ export const videoClicked : EventConfigType = {
372
+ label : trans ( "meeting.videoClicked" ) ,
373
+ value : "videoClicked" ,
374
+ description : trans ( "meeting.videoClicked" ) ,
375
+ } ;
371
376
export const InputEventHandlerControl = eventHandlerControl ( [
372
377
changeEvent ,
373
378
focusEvent ,
@@ -400,4 +405,5 @@ export const MeetingEventHandlerControl = eventHandlerControl([
400
405
cameraView ,
401
406
audioMuteUnmute ,
402
407
videoActiveInactive ,
408
+ videoClicked ,
403
409
] as const ) ;
Original file line number Diff line number Diff line change @@ -1440,6 +1440,7 @@ export const en = {
1440
1440
screenShared : "Screen Shared" ,
1441
1441
screenSharedDesc : "Screen Shared" ,
1442
1442
audioMuteUnmute : "Audio Mute" ,
1443
+ videoClicked : "Video Clicked" ,
1443
1444
videoActiveInactive : "Video Active Inactive" ,
1444
1445
size : "Size" ,
1445
1446
top : "Top" ,
You can’t perform that action at this time.
0 commit comments