2018-04-16 18:08:00 +02:00
|
|
|
// Converse.js
|
2019-03-04 17:47:45 +01:00
|
|
|
// https://conversejs.org
|
2018-04-16 18:08:00 +02:00
|
|
|
//
|
2019-02-18 19:17:06 +01:00
|
|
|
// Copyright (c) 2013-2019, the Converse.js developers
|
2018-04-16 18:08:00 +02:00
|
|
|
// Licensed under the Mozilla Public License (MPLv2)
|
2019-07-11 10:48:52 +02:00
|
|
|
/**
|
|
|
|
* @module converse-modal
|
|
|
|
*/
|
2018-10-23 03:41:38 +02:00
|
|
|
import "backbone.vdomview";
|
2019-01-25 07:15:18 +01:00
|
|
|
import bootstrap from "bootstrap.native";
|
2018-10-23 03:41:38 +02:00
|
|
|
import converse from "@converse/headless/converse-core";
|
2019-10-31 14:42:28 +01:00
|
|
|
import { isString } from "lodash";
|
2019-07-04 14:12:12 +02:00
|
|
|
import tpl_alert from "templates/alert.html";
|
2018-10-23 03:41:38 +02:00
|
|
|
import tpl_alert_modal from "templates/alert_modal.html";
|
2019-09-24 15:33:41 +02:00
|
|
|
import tpl_prompt from "templates/prompt.html";
|
2018-05-09 10:09:42 +02:00
|
|
|
|
2019-10-31 14:42:28 +01:00
|
|
|
const { Backbone, sizzle } = converse.env;
|
2019-04-06 22:10:00 +02:00
|
|
|
const u = converse.env.utils;
|
2018-05-09 10:09:42 +02:00
|
|
|
|
|
|
|
|
2018-10-23 03:41:38 +02:00
|
|
|
converse.plugins.add('converse-modal', {
|
2018-05-09 10:09:42 +02:00
|
|
|
|
2018-10-23 03:41:38 +02:00
|
|
|
initialize () {
|
|
|
|
const { _converse } = this;
|
2019-09-24 15:33:41 +02:00
|
|
|
const { __ } = _converse;
|
2018-10-23 03:41:38 +02:00
|
|
|
|
|
|
|
_converse.BootstrapModal = Backbone.VDOMView.extend({
|
|
|
|
|
2019-07-04 14:12:12 +02:00
|
|
|
events: {
|
|
|
|
'click .nav-item .nav-link': 'switchTab'
|
|
|
|
},
|
|
|
|
|
2018-10-23 03:41:38 +02:00
|
|
|
initialize () {
|
|
|
|
this.render().insertIntoDOM();
|
|
|
|
this.modal = new bootstrap.Modal(this.el, {
|
|
|
|
backdrop: 'static',
|
|
|
|
keyboard: true
|
|
|
|
});
|
2019-08-05 01:39:57 +02:00
|
|
|
this.el.addEventListener('hide.bs.modal', () => u.removeClass('selected', this.trigger_el), false);
|
2018-10-23 03:41:38 +02:00
|
|
|
},
|
|
|
|
|
|
|
|
insertIntoDOM () {
|
|
|
|
const container_el = _converse.chatboxviews.el.querySelector("#converse-modals");
|
|
|
|
container_el.insertAdjacentElement('beforeEnd', this.el);
|
|
|
|
},
|
|
|
|
|
2019-07-04 14:12:12 +02:00
|
|
|
switchTab (ev) {
|
|
|
|
ev.stopPropagation();
|
|
|
|
ev.preventDefault();
|
|
|
|
sizzle('.nav-link.active', this.el).forEach(el => {
|
|
|
|
u.removeClass('active', this.el.querySelector(el.getAttribute('href')));
|
|
|
|
u.removeClass('active', el);
|
|
|
|
});
|
|
|
|
u.addClass('active', ev.target);
|
|
|
|
u.addClass('active', this.el.querySelector(ev.target.getAttribute('href')))
|
|
|
|
},
|
|
|
|
|
|
|
|
alert (message, type='primary') {
|
|
|
|
const body = this.el.querySelector('.modal-body');
|
|
|
|
body.insertAdjacentHTML(
|
|
|
|
'afterBegin',
|
|
|
|
tpl_alert({
|
|
|
|
'type': `alert-${type}`,
|
|
|
|
'message': message
|
|
|
|
})
|
|
|
|
);
|
|
|
|
const el = body.firstElementChild;
|
|
|
|
setTimeout(() => {
|
|
|
|
u.addClass('fade-out', el);
|
|
|
|
setTimeout(() => u.removeElement(el), 600);
|
|
|
|
}, 5000);
|
|
|
|
},
|
|
|
|
|
2018-10-23 03:41:38 +02:00
|
|
|
show (ev) {
|
|
|
|
if (ev) {
|
|
|
|
ev.preventDefault();
|
|
|
|
this.trigger_el = ev.target;
|
|
|
|
this.trigger_el.classList.add('selected');
|
2018-08-21 18:27:43 +02:00
|
|
|
}
|
2018-10-23 03:41:38 +02:00
|
|
|
this.modal.show();
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
2019-09-24 15:33:41 +02:00
|
|
|
_converse.Confirm = _converse.BootstrapModal.extend({
|
|
|
|
events: {
|
|
|
|
'submit .confirm': 'onConfimation'
|
|
|
|
},
|
|
|
|
|
|
|
|
initialize () {
|
|
|
|
this.confirmation = u.getResolveablePromise();
|
|
|
|
_converse.BootstrapModal.prototype.initialize.apply(this, arguments);
|
|
|
|
this.listenTo(this.model, 'change', this.render)
|
|
|
|
this.el.addEventListener('closed.bs.modal', () => this.confirmation.reject(), false);
|
|
|
|
},
|
|
|
|
|
|
|
|
toHTML () {
|
|
|
|
return tpl_prompt(Object.assign({__}, this.model.toJSON()));
|
|
|
|
},
|
|
|
|
|
|
|
|
afterRender () {
|
|
|
|
if (!this.close_handler_registered) {
|
|
|
|
this.el.addEventListener('closed.bs.modal', () => {
|
|
|
|
if (!this.confirmation.isResolved) {
|
|
|
|
this.confirmation.reject()
|
|
|
|
}
|
|
|
|
}, false);
|
|
|
|
this.close_handler_registered = true;
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
|
|
|
onConfimation (ev) {
|
|
|
|
ev.preventDefault();
|
|
|
|
this.confirmation.resolve(true);
|
|
|
|
this.modal.hide();
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
|
|
_converse.Prompt = _converse.Confirm.extend({
|
|
|
|
toHTML () {
|
|
|
|
return tpl_prompt(Object.assign({__}, this.model.toJSON()));
|
|
|
|
},
|
|
|
|
|
|
|
|
onConfimation (ev) {
|
|
|
|
ev.preventDefault();
|
|
|
|
const form_data = new FormData(ev.target);
|
|
|
|
this.confirmation.resolve(form_data.get('reason'));
|
|
|
|
this.modal.hide();
|
|
|
|
}
|
|
|
|
});
|
2018-10-23 03:41:38 +02:00
|
|
|
|
2019-09-24 15:33:41 +02:00
|
|
|
|
|
|
|
_converse.Alert = _converse.BootstrapModal.extend({
|
2018-10-23 03:41:38 +02:00
|
|
|
initialize () {
|
|
|
|
_converse.BootstrapModal.prototype.initialize.apply(this, arguments);
|
2019-09-06 14:34:59 +02:00
|
|
|
this.listenTo(this.model, 'change', this.render)
|
2018-10-23 03:41:38 +02:00
|
|
|
},
|
|
|
|
|
|
|
|
toHTML () {
|
2019-09-24 15:33:41 +02:00
|
|
|
return tpl_alert_modal(
|
|
|
|
Object.assign({__}, this.model.toJSON()));
|
2018-10-23 03:41:38 +02:00
|
|
|
}
|
|
|
|
});
|
|
|
|
|
2019-09-24 15:33:41 +02:00
|
|
|
|
|
|
|
/************************ BEGIN Event Listeners ************************/
|
2019-11-21 14:48:38 +01:00
|
|
|
_converse.api.listen.on('disconnect', () => {
|
|
|
|
const container = document.querySelector("#converse-modals");
|
2018-10-23 03:41:38 +02:00
|
|
|
if (container) {
|
|
|
|
container.innerHTML = '';
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
|
|
/************************ BEGIN API ************************/
|
|
|
|
// We extend the default converse.js API to add methods specific to MUC chat rooms.
|
2019-09-24 15:33:41 +02:00
|
|
|
let alert, prompt, confirm;
|
2018-10-23 03:41:38 +02:00
|
|
|
|
2019-04-29 09:07:15 +02:00
|
|
|
Object.assign(_converse.api, {
|
2019-09-24 15:33:41 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Show a confirm modal to the user.
|
|
|
|
* @method _converse.api.confirm
|
|
|
|
* @param { String } title - The header text for the confirmation dialog
|
|
|
|
* @param { (String[]|String) } messages - The text to show to the user
|
|
|
|
* @returns { Promise } A promise which resolves with true or false
|
|
|
|
*/
|
|
|
|
async confirm (title, messages=[]) {
|
|
|
|
if (isString(messages)) {
|
|
|
|
messages = [messages];
|
|
|
|
}
|
|
|
|
if (confirm === undefined) {
|
|
|
|
const model = new Backbone.Model({
|
|
|
|
'title': title,
|
|
|
|
'messages': messages,
|
|
|
|
'type': 'confirm'
|
|
|
|
})
|
|
|
|
confirm = new _converse.Confirm({model});
|
|
|
|
} else {
|
2019-11-14 22:00:23 +01:00
|
|
|
confirm.confirmation = u.getResolveablePromise();
|
2019-09-24 15:33:41 +02:00
|
|
|
confirm.model.set({
|
|
|
|
'title': title,
|
|
|
|
'messages': messages,
|
|
|
|
'type': 'confirm'
|
|
|
|
});
|
|
|
|
}
|
|
|
|
confirm.show();
|
|
|
|
try {
|
|
|
|
return await confirm.confirmation;
|
|
|
|
} catch (e) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Show a prompt modal to the user.
|
|
|
|
* @method _converse.api.prompt
|
|
|
|
* @param { String } title - The header text for the prompt
|
|
|
|
* @param { (String[]|String) } messages - The prompt text to show to the user
|
|
|
|
* @param { String } placeholder - The placeholder text for the prompt input
|
|
|
|
* @returns { Promise } A promise which resolves with the text provided by the
|
|
|
|
* user or `false` if the user canceled the prompt.
|
|
|
|
*/
|
|
|
|
async prompt (title, messages=[], placeholder='') {
|
|
|
|
if (isString(messages)) {
|
|
|
|
messages = [messages];
|
|
|
|
}
|
|
|
|
if (prompt === undefined) {
|
|
|
|
const model = new Backbone.Model({
|
|
|
|
'title': title,
|
|
|
|
'messages': messages,
|
|
|
|
'placeholder': placeholder,
|
|
|
|
'type': 'prompt'
|
|
|
|
})
|
|
|
|
prompt = new _converse.Prompt({model});
|
|
|
|
} else {
|
2019-11-14 22:00:23 +01:00
|
|
|
prompt.confirmation = u.getResolveablePromise();
|
2019-09-24 15:33:41 +02:00
|
|
|
prompt.model.set({
|
|
|
|
'title': title,
|
|
|
|
'messages': messages,
|
|
|
|
'type': 'prompt'
|
|
|
|
});
|
|
|
|
}
|
|
|
|
prompt.show();
|
|
|
|
try {
|
|
|
|
return await prompt.confirmation;
|
|
|
|
} catch (e) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
2019-10-31 14:42:28 +01:00
|
|
|
/**
|
|
|
|
* Show an alert modal to the user.
|
|
|
|
* @method _converse.api.alert
|
|
|
|
* @param { ('info'|'warn'|'error') } type - The type of alert.
|
2019-09-24 15:33:41 +02:00
|
|
|
* @param { String } title - The header text for the alert.
|
|
|
|
* @param { (String[]|String) } messages - The alert text to show to the user.
|
2019-10-31 14:42:28 +01:00
|
|
|
*/
|
|
|
|
alert (type, title, messages) {
|
|
|
|
if (isString(messages)) {
|
|
|
|
messages = [messages];
|
2018-05-09 10:09:42 +02:00
|
|
|
}
|
2019-09-24 15:33:41 +02:00
|
|
|
let level;
|
2019-10-31 14:42:28 +01:00
|
|
|
if (type === 'error') {
|
2019-09-24 15:33:41 +02:00
|
|
|
level = 'alert-danger';
|
2019-10-31 14:42:28 +01:00
|
|
|
} else if (type === 'info') {
|
2019-09-24 15:33:41 +02:00
|
|
|
level = 'alert-info';
|
2019-10-31 14:42:28 +01:00
|
|
|
} else if (type === 'warn') {
|
2019-09-24 15:33:41 +02:00
|
|
|
level = 'alert-warning';
|
2019-10-31 14:42:28 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
if (alert === undefined) {
|
|
|
|
const model = new Backbone.Model({
|
|
|
|
'title': title,
|
|
|
|
'messages': messages,
|
2019-09-24 15:33:41 +02:00
|
|
|
'level': level,
|
|
|
|
'type': 'alert'
|
2019-10-31 14:42:28 +01:00
|
|
|
})
|
2019-09-24 15:33:41 +02:00
|
|
|
alert = new _converse.Alert({model});
|
2019-10-31 14:42:28 +01:00
|
|
|
} else {
|
|
|
|
alert.model.set({
|
|
|
|
'title': title,
|
|
|
|
'messages': messages,
|
2019-09-24 15:33:41 +02:00
|
|
|
'level': level
|
2019-10-31 14:42:28 +01:00
|
|
|
});
|
|
|
|
}
|
|
|
|
alert.show();
|
2018-10-23 03:41:38 +02:00
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|