123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382 |
- /* global $, APP, JitsiMeetJS */
-
- /**
- * Substate for password
- * @type {{LOCKED: string, UNLOCKED: string}}
- */
- const States = {
- LOCKED: 'locked',
- UNLOCKED: 'unlocked'
- };
-
- /**
- * Class representing view for Invite dialog
- * @class InviteDialogView
- */
- export default class InviteDialogView {
- constructor(model) {
- let InviteAttributesKey = 'inviteUrlDefaultMsg';
- let title = APP.translation.translateString(InviteAttributesKey);
-
- this.unlockHint = "unlockHint";
- this.lockHint = "lockHint";
- this.model = model;
-
- if (this.model.inviteUrl === null) {
- this.inviteAttributes = (
- `data-i18n="[value]inviteUrlDefaultMsg" value="${title}"`
- );
- } else {
- let encodedInviteUrl = this.model.getEncodedInviteUrl();
- this.inviteAttributes = `value="${encodedInviteUrl}"`;
- }
-
- this.initDialog();
- }
-
- /**
- * Initialization of dialog property
- */
- initDialog() {
- let dialog = {};
- dialog.closeFunction = this.closeFunction.bind(this);
- dialog.submitFunction = this.submitFunction.bind(this);
- dialog.loadedFunction = this.loadedFunction.bind(this);
-
- let titleKey = "dialog.shareLink";
- let titleString = APP.translation.generateTranslationHTML(titleKey);
-
- dialog.titleKey = titleKey;
- dialog.titleString = titleString;
- this.dialog = dialog;
-
- this.dialog.states = this.getStates();
- }
-
- /**
- * Event handler for submitting dialog
- * @param e
- * @param v
- */
- submitFunction(e, v) {
- if (v && this.model.inviteUrl) {
- JitsiMeetJS.analytics.sendEvent('toolbar.invite.button');
- } else {
- JitsiMeetJS.analytics.sendEvent('toolbar.invite.cancel');
- }
- }
-
- /**
- * Event handler for load dialog
- * @param event
- */
- loadedFunction(event) {
- if (this.model.inviteUrl) {
- document.getElementById('inviteLinkRef').select();
- } else {
- if (event && event.target) {
- $(event.target).find('button[value=true]')
- .prop('disabled', true);
- }
- }
- }
-
- /**
- * Event handler for closing dialog
- * @param e
- * @param v
- * @param m
- * @param f
- */
- closeFunction(e, v, m, f) {
- $(document).off('click', '.copyInviteLink', this.copyToClipboard);
-
- if(!v && !m && !f)
- JitsiMeetJS.analytics.sendEvent('toolbar.invite.close');
- }
-
- /**
- * Returns all states of the dialog
- * @returns {{}}
- */
- getStates() {
- let {
- titleString
- } = this.dialog;
-
- let states = {};
-
- states[States.UNLOCKED] = {
- title: titleString,
- html: this.getShareLinkBlock() + this.getAddPasswordBlock()
- };
- states[States.LOCKED] = {
- title: titleString,
- html: this.getShareLinkBlock() + this.getPasswordBlock()
- };
-
- return states;
- }
-
- /**
- * Layout for invite link input
- * @returns {string}
- */
- getShareLinkBlock() {
- let copyKey = 'dialog.copy';
- let copyText = APP.translation.translateString(copyKey);
- let roomLockDescKey = 'roomLocked';
- let roomLockDesc = APP.translation.translateString(roomLockDescKey);
- let roomUnlockKey = 'roomUnlocked';
- let roomUnlock = APP.translation.translateString(roomUnlockKey);
- let classes = 'button-control button-control_light copyInviteLink';
- return (
- `<div class="input-control">
- <label class="input-control__label" for="inviteLinkRef">
- ${this.dialog.titleString}
- </label>
- <div class="input-control__container">
- <input class="input-control__input inviteLink"
- id="inviteLinkRef" type="text"
- ${this.inviteAttributes} readonly>
- <button data-i18n="${copyKey}"
- class="${classes}">
- ${copyText}
- </button>
- </div>
- <p class="input-control__hint ${this.lockHint}">
- <span class="icon-security-locked"></span>
- <span data-i18n="${roomLockDescKey}">${roomLockDesc}</span>
- </p>
- <p class="input-control__hint ${this.unlockHint}">
- <span class="icon-security"></span>
- <span data-i18n="${roomUnlockKey}">${roomUnlock}</span>
- </p>
- </div>`
- );
- }
-
- /**
- * Layout for adding password input
- * @returns {string}
- */
- getAddPasswordBlock() {
- let addPassKey = 'dialog.addPassword';
- let addPassText = APP.translation.translateString(addPassKey);
- let addKey = 'dialog.add';
- let addText = APP.translation.translateString(addKey);
- let html;
-
- if (this.model.isModerator) {
- html = (`
- <div class="input-control">
- <label class="input-control__label
- for="newPasswordInput"
- data-i18n="${addPassKey}">${addPassText}</label>
- <div class="input-control__container">
- <input class="input-control__input" id="newPasswordInput"
- type="text">
- <button id="addPasswordBtn" id="inviteDialogAddPassword"
- disabled data-i18n="${addKey}"
- class="button-control button-control_light">
- ${addText}
- </button>
- </div>
- </div>
- `);
- } else {
- html = '';
- }
-
- return html;
- }
-
- /**
- * Layout for password (when room is locked)
- * @returns {string}
- */
- getPasswordBlock() {
- let { password, isModerator } = this.model;
- let removePassKey = 'dialog.removePassword';
- let removePassText = APP.translation.translateString(removePassKey);
- let currentPassKey = 'dialog.currentPassword';
- let currentPassText = APP.translation.translateString(currentPassKey);
- let passwordKey = "dialog.passwordLabel";
- let passwordText = APP.translation.translateString(passwordKey);
-
- if (isModerator) {
- return (`
- <div class="input-control">
- <label class="input-control__label"
- data-i18n="${passwordKey}">${passwordText}</label>
- <div class="input-control__container">
- <p class="input-control__text"
- data-i18n="${currentPassKey}">
- ${currentPassText}
- <span id="inviteDialogPassword"
- class="input-control__em">
- ${password}
- </span>
- </p>
- <a class="link input-control__right"
- id="inviteDialogRemovePassword"
- href="#" data-i18n="${removePassKey}">
- ${removePassText}
- </a>
- </div>
- </div>
- `);
- } else {
- return (`
- <div class="input-control">
- <p>A participant protected this call with a password.</p>
- </div>
- `);
- }
-
- }
-
-
-
- /**
- * Opening the dialog
- */
- open() {
- let leftButton;
- let {
- submitFunction,
- loadedFunction,
- closeFunction
- } = this.dialog;
-
- let states = this.getStates();
-
- let buttons = [];
- let leftButtonKey = "dialog.Invite";
- let cancelButton
- = APP.translation.generateTranslationHTML("dialog.Cancel");
- buttons.push({title: cancelButton, value: false});
-
- leftButton = APP.translation.generateTranslationHTML(leftButtonKey);
- buttons.push({ title: leftButton, value: true});
-
- let initial = this.model.roomLocked ? States.LOCKED : States.UNLOCKED;
-
- APP.UI.messageHandler.openDialogWithStates(states, {
- submit: submitFunction,
- loaded: loadedFunction,
- close: closeFunction,
- buttons,
- size: 'medium'
- });
- $.prompt.goToState(initial);
-
- this.registerListeners();
- this.updateView();
- }
-
- /**
- * Setting event handlers
- * used in dialog
- */
- registerListeners() {
- let $passInput = $('#newPasswordInput');
- let $addPassBtn = $('#addPasswordBtn');
-
- $(document).on('click', '.copyInviteLink', this.copyToClipboard);
- $addPassBtn.on('click', () => {
- let newPass = $passInput.val();
-
- if(newPass) {
- this.model.setRoomLocked(newPass);
- }
- });
- $('#inviteDialogRemovePassword').on('click', () => {
- this.model.setRoomUnlocked();
- });
- $passInput.keyup(this.disableAddPassIfInputEmpty.bind(this));
- }
-
- /**
- * Checking input and if it's empty then
- * disable add pass button
- */
- disableAddPassIfInputEmpty() {
- let $passInput = $('#newPasswordInput');
- let $addPassBtn = $('#addPasswordBtn');
-
- if(!$passInput.val()) {
- $addPassBtn.prop('disabled', true);
- } else {
- $addPassBtn.prop('disabled', false);
- }
- }
-
- /**
- * Copying text to clipboard
- */
- copyToClipboard() {
- $('.inviteLink').each(function () {
- let $el = $(this).closest('.jqistate');
-
- // TOFIX: We can select only visible elements
- if($el.css('display') === 'block') {
- this.select();
-
- try {
- document.execCommand('copy');
- this.blur();
- }
- catch (err) {
- console.error('error when copy the text');
- }
- }
- });
- }
-
- /**
- * Method syncing the view and the model
- */
- updateView() {
- let pass = this.model.getPassword();
- if (!pass)
- pass = APP.translation.translateString("passwordSetRemotely");
-
- $('#inviteDialogPassword').text(pass);
- $('#newPasswordInput').val('');
- this.disableAddPassIfInputEmpty();
-
- this.updateInviteLink();
-
- $.prompt.goToState(
- (this.model.isLocked())
- ? States.LOCKED
- : States.UNLOCKED);
-
- let roomLocked = `.${this.lockHint}`;
- let roomUnlocked = `.${this.unlockHint}`;
-
- let showDesc = this.model.isLocked() ? roomLocked : roomUnlocked;
- let hideDesc = !this.model.isLocked() ? roomLocked : roomUnlocked;
-
- $(showDesc).show();
- $(hideDesc).hide();
- }
-
- /**
- * Updates invite link
- */
- updateInviteLink() {
- // If the invite dialog has been already opened we update the
- // information.
- let inviteLink = document.querySelectorAll('.inviteLink');
- let list = Array.from(inviteLink);
- list.forEach((inviteLink) => {
- inviteLink.value = this.model.inviteUrl;
- inviteLink.select();
- });
-
- $('#inviteLinkRef').parent()
- .find('button[value=true]').prop('disabled', false);
- }
- }
|