ConverseJS optimization:
* ConverseJS: Don't send state notifications. #134 * ConverseJS: Don't show join/leave messages. #134
This commit is contained in:
parent
55e6414fe9
commit
0545a1034a
@ -10,11 +10,13 @@ If you haven't upgraded to v6.0.0 yet, please read v6.0.0 changelog first.
|
|||||||
|
|
||||||
### New features
|
### New features
|
||||||
|
|
||||||
* Share chat link popup: add an option to generate an iframe.
|
* Share chat link popup: add an option to generate an iframe. #110 #92
|
||||||
|
|
||||||
### Changes
|
### Changes
|
||||||
|
|
||||||
* Minimum Peertube version is now v4.2.0.
|
* Minimum Peertube version is now v4.2.0.
|
||||||
|
* ConverseJS: Don't send state notifications. #134
|
||||||
|
* ConverseJS: Don't show join/leave messages. #134
|
||||||
|
|
||||||
### Minor changes and fixes
|
### Minor changes and fixes
|
||||||
|
|
||||||
|
@ -106,6 +106,7 @@ window.initConverse = async function initConverse ({
|
|||||||
transparent
|
transparent
|
||||||
}: InitConverseParams) {
|
}: InitConverseParams) {
|
||||||
const isInIframe = inIframe()
|
const isInIframe = inIframe()
|
||||||
|
const converse = window.converse
|
||||||
|
|
||||||
const body = document.querySelector('body')
|
const body = document.querySelector('body')
|
||||||
if (isInIframe) {
|
if (isInIframe) {
|
||||||
@ -176,7 +177,20 @@ window.initConverse = async function initConverse ({
|
|||||||
show_images_inline: false, // for security reason, and to avoid bugs when image is larger that iframe
|
show_images_inline: false, // for security reason, and to avoid bugs when image is larger that iframe
|
||||||
render_media: false, // for security reason, and to avoid bugs when image is larger that iframe
|
render_media: false, // for security reason, and to avoid bugs when image is larger that iframe
|
||||||
whitelisted_plugins: ['livechatWindowTitlePlugin', 'livechatViewerModePlugin', 'livechatDisconnectOnUnloadPlugin'],
|
whitelisted_plugins: ['livechatWindowTitlePlugin', 'livechatViewerModePlugin', 'livechatDisconnectOnUnloadPlugin'],
|
||||||
show_retraction_warning: false // No need to use this warning (except if we open to external clients?)
|
show_retraction_warning: false, // No need to use this warning (except if we open to external clients?)
|
||||||
|
muc_show_info_messages: [
|
||||||
|
// FIXME: wait for a response here, and rewrite: https://github.com/conversejs/converse.js/issues/3125
|
||||||
|
'100', '102', '103', '172', '173', '174', // visibility_changes
|
||||||
|
'110', // self
|
||||||
|
'104', '201', // non_privacy_changes
|
||||||
|
'170', '171', // muc_logging_changes
|
||||||
|
'210', '303', // nickname_changes
|
||||||
|
'301', '307', '321', '322', '332', '333', // disconnected
|
||||||
|
'owner', 'admin', 'member', 'exadmin', 'exowner', 'exoutcast', 'exmember', // affiliation_changes
|
||||||
|
// 'entered', 'exited', // join_leave_events
|
||||||
|
'op', 'deop', 'voice', 'mute' // role_changes
|
||||||
|
],
|
||||||
|
send_chat_state_notifications: false // don't send this for performance reason
|
||||||
}
|
}
|
||||||
|
|
||||||
// TODO: params.clear_messages_on_reconnection = true when muc_mam will be available.
|
// TODO: params.clear_messages_on_reconnection = true when muc_mam will be available.
|
||||||
@ -222,7 +236,7 @@ window.initConverse = async function initConverse ({
|
|||||||
}
|
}
|
||||||
|
|
||||||
try {
|
try {
|
||||||
window.converse.plugins.add('livechatWindowTitlePlugin', {
|
converse.plugins.add('livechatWindowTitlePlugin', {
|
||||||
dependencies: ['converse-muc-views'],
|
dependencies: ['converse-muc-views'],
|
||||||
overrides: {
|
overrides: {
|
||||||
ChatRoomView: {
|
ChatRoomView: {
|
||||||
@ -245,7 +259,7 @@ window.initConverse = async function initConverse ({
|
|||||||
})
|
})
|
||||||
|
|
||||||
if (autoViewerMode && !isAuthenticated) {
|
if (autoViewerMode && !isAuthenticated) {
|
||||||
window.converse.plugins.add('livechatViewerModePlugin', {
|
converse.plugins.add('livechatViewerModePlugin', {
|
||||||
dependencies: ['converse-muc', 'converse-muc-views'],
|
dependencies: ['converse-muc', 'converse-muc-views'],
|
||||||
initialize: function () {
|
initialize: function () {
|
||||||
const _converse = this._converse
|
const _converse = this._converse
|
||||||
@ -288,7 +302,7 @@ window.initConverse = async function initConverse ({
|
|||||||
// // - users are not show as disconnected until a long timeout
|
// // - users are not show as disconnected until a long timeout
|
||||||
// // - anonymous users' nicknames are not available before this timeout
|
// // - anonymous users' nicknames are not available before this timeout
|
||||||
// // - logged in users sometimes can't switch between iframe and fullscreen more than 1 time
|
// // - logged in users sometimes can't switch between iframe and fullscreen more than 1 time
|
||||||
// window.converse.plugins.add('livechatDisconnectOnUnloadPlugin', {
|
// converse.plugins.add('livechatDisconnectOnUnloadPlugin', {
|
||||||
// initialize: function () {
|
// initialize: function () {
|
||||||
// const _converse = this._converse
|
// const _converse = this._converse
|
||||||
// const { unloadevent } = _converse
|
// const { unloadevent } = _converse
|
||||||
@ -301,7 +315,7 @@ window.initConverse = async function initConverse ({
|
|||||||
// })
|
// })
|
||||||
// }
|
// }
|
||||||
|
|
||||||
window.converse.initialize(params)
|
converse.initialize(params)
|
||||||
} catch (error) {
|
} catch (error) {
|
||||||
console.error('Failed initializing converseJS', error)
|
console.error('Failed initializing converseJS', error)
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user