feat(external-api): Add send chat message command

This commit is contained in:
hmuresan 2021-06-24 12:37:26 +03:00 committed by Дамян Минков
parent 7945f14cee
commit 1d45edbb27
2 changed files with 20 additions and 0 deletions

View File

@ -27,6 +27,7 @@ import {
import { updateSettings } from '../../react/features/base/settings';
import { isToggleCameraEnabled, toggleCamera } from '../../react/features/base/tracks';
import {
sendMessage,
setPrivateMessageRecipient,
toggleChat
} from '../../react/features/chat/actions';
@ -241,6 +242,24 @@ function initCommands() {
sendAnalytics(createApiEvent('avatar.url.changed'));
APP.conference.changeLocalAvatarUrl(avatarUrl);
},
'send-chat-message': (message, to, ignorePrivacy = false) => {
logger.debug('Send chat message command received');
if (to) {
const participant = getParticipantById(APP.store.getState(), to);
if (participant) {
APP.store.dispatch(setPrivateMessageRecipient(participant));
} else {
logger.error(`Participant with id ${to} not found!`);
return;
}
} else {
APP.store.dispatch(setPrivateMessageRecipient());
}
APP.store.dispatch(sendMessage(message, ignorePrivacy));
},
'send-endpoint-text-message': (to, text) => {
logger.debug('Send endpoint message command received');
try {

View File

@ -41,6 +41,7 @@ const commands = {
password: 'password',
pinParticipant: 'pin-participant',
resizeLargeVideo: 'resize-large-video',
sendChatMessage: 'send-chat-message',
sendEndpointTextMessage: 'send-endpoint-text-message',
sendTones: 'send-tones',
setLargeVideoParticipant: 'set-large-video-participant',