123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206 |
- /* global APP, $ */
- import UIUtil from "../../util/UIUtil";
- import UIEvents from "../../../../service/UI/UIEvents";
- import languages from "../../../../service/translation/languages";
- import Settings from '../../../settings/Settings';
-
- /**
- * Generate html select options for available languages.
- * @param {string[]} items available languages
- * @param {string} [currentLang] current language
- * @returns {string}
- */
- function generateLanguagesOptions(items, currentLang) {
- return items.map(function (lang) {
- let attrs = {
- value: lang,
- 'data-i18n': `languages:${lang}`
- };
-
- if (lang === currentLang) {
- attrs.selected = 'selected';
- }
-
- let attrsStr = UIUtil.attrsToString(attrs);
- return `<option ${attrsStr}></option>`;
- }).join('\n');
- }
-
- /**
- * Generate html select options for available physical devices.
- * @param {{ deviceId, label }[]} items available devices
- * @param {string} [selectedId] id of selected device
- * @returns {string}
- */
- function generateDevicesOptions(items, selectedId) {
- return items.map(function (item) {
- let attrs = {
- value: item.deviceId
- };
-
- if (item.deviceId === selectedId) {
- attrs.selected = 'selected';
- }
-
- let attrsStr = UIUtil.attrsToString(attrs);
- return `<option ${attrsStr}>${item.label}</option>`;
- }).join('\n');
- }
-
-
- export default {
- init (emitter) {
-
- // DISPLAY NAME
- function updateDisplayName () {
- emitter.emit(UIEvents.NICKNAME_CHANGED, $('#setDisplayName').val());
- }
- $('#setDisplayName')
- .val(Settings.getDisplayName())
- .keyup(function (event) {
- if (event.keyCode === 13) { // enter
- updateDisplayName();
- }
- })
- .focusout(updateDisplayName);
-
-
- // EMAIL
- function updateEmail () {
- emitter.emit(UIEvents.EMAIL_CHANGED, $('#setEmail').val());
- }
- $('#setEmail')
- .val(Settings.getEmail())
- .keyup(function (event) {
- if (event.keyCode === 13) { // enter
- updateEmail();
- }
- }).focusout(updateEmail);
-
-
- // START MUTED
- $("#startMutedOptions").change(function () {
- let startAudioMuted = $("#startAudioMuted").is(":checked");
- let startVideoMuted = $("#startVideoMuted").is(":checked");
- emitter.emit(
- UIEvents.START_MUTED_CHANGED,
- startAudioMuted,
- startVideoMuted
- );
- });
-
- // FOLLOW ME
- $("#followMeOptions").change(function () {
- let isFollowMeEnabled = $("#followMeCheckBox").is(":checked");
- emitter.emit(
- UIEvents.FOLLOW_ME_ENABLED,
- isFollowMeEnabled
- );
- });
-
- // LANGUAGES BOX
- let languagesBox = $("#languages_selectbox");
- languagesBox.html(generateLanguagesOptions(
- languages.getLanguages(),
- APP.translation.getCurrentLanguage()
- ));
- APP.translation.translateElement(languagesBox);
- languagesBox.change(function () {
- emitter.emit(UIEvents.LANG_CHANGED, languagesBox.val());
- });
-
-
- // DEVICES LIST
- this.changeDevicesList([]);
- $('#selectCamera').change(function () {
- let cameraDeviceId = $(this).val();
- if (cameraDeviceId !== Settings.getCameraDeviceId()) {
- emitter.emit(UIEvents.VIDEO_DEVICE_CHANGED, cameraDeviceId);
- }
- });
- $('#selectMic').change(function () {
- let micDeviceId = $(this).val();
- if (micDeviceId !== Settings.getMicDeviceId()) {
- emitter.emit(UIEvents.AUDIO_DEVICE_CHANGED, micDeviceId);
- }
- });
- },
-
- /**
- * If start audio muted/start video muted options should be visible or not.
- * @param {boolean} show
- */
- showStartMutedOptions (show) {
- if (show) {
- $("#startMutedOptions").css("display", "block");
- } else {
- $("#startMutedOptions").css("display", "none");
- }
- },
-
- updateStartMutedBox (startAudioMuted, startVideoMuted) {
- $("#startAudioMuted").attr("checked", startAudioMuted);
- $("#startVideoMuted").attr("checked", startVideoMuted);
- },
-
- /**
- * Shows/hides the follow me options in the settings dialog.
- *
- * @param {boolean} show {true} to show those options, {false} to hide them
- */
- showFollowMeOptions (show) {
- if (show) {
- $("#followMeOptions").css("display", "block");
- } else {
- $("#followMeOptions").css("display", "none");
- }
- },
-
- /**
- * Check if settings menu is visible or not.
- * @returns {boolean}
- */
- isVisible () {
- return $('#settingsmenu').is(':visible');
- },
-
- /**
- * Change user display name in the settings menu.
- * @param {string} newDisplayName
- */
- changeDisplayName (newDisplayName) {
- $('#setDisplayName').val(newDisplayName);
- },
-
- /**
- * Change user avatar in the settings menu.
- * @param {string} avatarUrl url of the new avatar
- */
- changeAvatar (avatarUrl) {
- $('#avatar').attr('src', avatarUrl);
- },
-
- /**
- * Change available cameras/microphones or hide selects completely if
- * no devices available.
- * @param {{ deviceId, label, kind }[]} devices list of available devices
- */
- changeDevicesList (devices) {
- if (!devices.length) {
- $('#devicesOptions').hide();
- return;
- }
-
- let audio = devices.filter(device => device.kind === 'audioinput');
- let video = devices.filter(device => device.kind === 'videoinput');
-
- $('#selectCamera').html(
- generateDevicesOptions(video, Settings.getCameraDeviceId())
- );
- $('#selectMic').html(
- generateDevicesOptions(audio, Settings.getMicDeviceId())
- );
-
- $('#devicesOptions').show();
- }
- };
|