- Also allow private chats to be opened via URL fragment.
- Make sure to clear the URL fragment when the relevant chat is closed.
This commit is contained in:
JC Brand 2017-10-31 23:04:46 +01:00
parent 985cf6c294
commit 3514d6d56b
7 changed files with 55 additions and 12 deletions

View File

@ -3,6 +3,7 @@
## 3.3.0 (Unreleased) ## 3.3.0 (Unreleased)
### Bugfixes ### Bugfixes
- #800 Could not register successfully in ejabberd 17.01
- Don't require `auto_login` to be `true` when using the API to log in. - Don't require `auto_login` to be `true` when using the API to log in.
- Moment locale wasn't being set to the value passed via the `i18n` option. - Moment locale wasn't being set to the value passed via the `i18n` option.
- Refetch the roster from the server after reconnection. - Refetch the roster from the server after reconnection.
@ -12,7 +13,9 @@
Otherwise connected contacts might not get your presence updates. Otherwise connected contacts might not get your presence updates.
### New Features ### New Features
- #828 Add routing for the `#converse-login` and `#converse-register` URL - #314 Add support for opening chat rooms with a URL fragment such as `#converse/room?jid=room@domain`
and private chats with a URL fragment such as `#converse/chat?jid=user@domain`
- #828 Add routing for the `#converse/login` and `#converse/register` URL
fragments, which will render the registration and login forms respectively. fragments, which will render the registration and login forms respectively.
### UX/UI changes ### UX/UI changes

View File

@ -6,6 +6,16 @@
Features Features
======== ========
Open chats via URL
==================
From version 3.3.0, converse.js now has the ability to open chats (private or
groupchat) based on the URL fragment.
A room (aka groupchat) can be opened with a URL fragment such as `#converse/room?jid=room@domain`
and a private chat with a URL fragment such as
`#converse/chat?jid=user@domain`.
Off-the-record encryption Off-the-record encryption
========================= =========================

View File

@ -10,7 +10,7 @@
define(["converse-core"], factory); define(["converse-core"], factory);
}(this, function (converse) { }(this, function (converse) {
"use strict"; "use strict";
const { Backbone, Strophe, b64_sha1, utils, _ } = converse.env; const { Backbone, Promise, Strophe, b64_sha1, utils, _ } = converse.env;
converse.plugins.add('converse-chatboxes', { converse.plugins.add('converse-chatboxes', {
@ -55,6 +55,23 @@
'chatBoxesInitialized' 'chatBoxesInitialized'
]); ]);
function openChat (jid) {
if (!utils.isValidJID(jid)) {
return converse.log(
`Invalid JID "${jid}" provided in URL fragment`,
Strophe.LogLevel.WARN
);
}
Promise.all([
_converse.api.waitUntil('rosterContactsFetched'),
_converse.api.waitUntil('chatBoxesFetched')
]).then(() => {
_converse.api.chats.open(jid);
});
}
_converse.router.route('converse/chat?jid=:jid', openChat);
_converse.ChatBoxes = Backbone.Collection.extend({ _converse.ChatBoxes = Backbone.Collection.extend({
comparator: 'time_opened', comparator: 'time_opened',
@ -343,9 +360,12 @@
_converse.log("chats.open: You need to provide at least one JID", Strophe.LogLevel.ERROR); _converse.log("chats.open: You need to provide at least one JID", Strophe.LogLevel.ERROR);
return null; return null;
} else if (_.isString(jids)) { } else if (_.isString(jids)) {
return _converse.getViewForChatBox( const chatbox = _converse.chatboxes.getChatBox(jids, true, attrs);
_converse.chatboxes.getChatBox(jids, true, attrs).trigger('show') if (_.isNil(chatbox)) {
); _converse.log("Could not open chatbox for JID: "+jids);
return;
}
return _converse.getViewForChatBox(chatbox.trigger('show'));
} }
return _.map(jids, (jid) => return _.map(jids, (jid) =>
_converse.getViewForChatBox( _converse.getViewForChatBox(

View File

@ -836,6 +836,9 @@
close (ev) { close (ev) {
if (ev && ev.preventDefault) { ev.preventDefault(); } if (ev && ev.preventDefault) { ev.preventDefault(); }
if (Backbone.history.getFragment() === "converse/chat?jid="+this.model.get('jid')) {
_converse.router.navigate('');
}
if (_converse.connection.connected) { if (_converse.connection.connected) {
// Immediately sending the chat state, because the // Immediately sending the chat state, because the
// model is going to be destroyed afterwards. // model is going to be destroyed afterwards.

View File

@ -356,18 +356,22 @@
_converse.api.promises.add(['roomsPanelRendered', 'roomsAutoJoined']); _converse.api.promises.add(['roomsPanelRendered', 'roomsAutoJoined']);
function openRoom (room) { function openRoom (jid) {
if (!utils.isValidJID(jid)) {
return converse.log(
`Invalid JID "${jid}" provided in URL fragment`,
Strophe.LogLevel.WARN
);
}
const promises = [_converse.api.waitUntil('roomsAutoJoined')] const promises = [_converse.api.waitUntil('roomsAutoJoined')]
if (!_converse.allow_bookmarks) { if (!_converse.allow_bookmarks) {
promises.push( _converse.api.waitUntil('bookmarksInitialized')); promises.push( _converse.api.waitUntil('bookmarksInitialized'));
} }
Promise.all(promises).then(() => { Promise.all(promises).then(() => {
if (utils.isValidJID(room)) { _converse.api.rooms.open(jid);
_converse.api.rooms.open(room);
}
}); });
} }
_converse.router.route('converse/room?jid=:room', openRoom); _converse.router.route('converse/room?jid=:jid', openRoom);
function openChatRoom (settings, bring_to_foreground) { function openChatRoom (settings, bring_to_foreground) {
@ -1262,6 +1266,9 @@
* reason for leaving. * reason for leaving.
*/ */
this.hide(); this.hide();
if (Backbone.history.getFragment() === "converse/room?jid="+this.model.get('jid')) {
_converse.router.navigate('');
}
this.occupantsview.model.reset(); this.occupantsview.model.reset();
this.occupantsview.model.browserStorage._clear(); this.occupantsview.model.browserStorage._clear();
if (_converse.connection.connected) { if (_converse.connection.connected) {

View File

@ -419,7 +419,7 @@
_converse.connection.reset(); _converse.connection.reset();
this.showSpinner(); this.showSpinner();
if (_.includes(["converse/login", "converse/register"], Backbone.History.getFragment())) { if (_.includes(["converse/login", "converse/register"], Backbone.history.getFragment())) {
_converse.router.navigate('', {'replace': true}); _converse.router.navigate('', {'replace': true});
} }

View File

@ -31,7 +31,7 @@
function (iq, jid) { function (iq, jid) {
_converse.log( _converse.log(
`Error while retrieving vcard for ${jid}`, `Error while retrieving vcard for ${jid}`,
Strophe.LogLevel.ERROR Strophe.LogLevel.WARN
); );
_converse.createRequestingContactFromVCard(presence, iq, jid); _converse.createRequestingContactFromVCard(presence, iq, jid);
} }