Remove left panel by DOM manipulation

This commit is contained in:
Ben 2022-04-30 15:39:20 +02:00
parent 10a54cf6ac
commit 037b95aded
Signed by: ben
GPG Key ID: 0F54A7ED232D3319
1 changed files with 13 additions and 0 deletions

View File

@ -134,7 +134,20 @@ export default {
elementWebFrame.contentWindow.mxDispatcher.dispatch({
action: 'view_room',
room_id: matrixInfoResponse.data.matrixChatRoom,
}, true)
// removes left panel by DOM manipulation
const matrixchat = elementWebFrame.contentDocument.getElementById('matrixchat')
console.debug(matrixchat)
const observerConfig = { attributes: false, childList: true, subtree: true }
const observer = new MutationObserver((mutationsList, observer) => {
console.debug('observer kicked', observer)
const leftPanelsByClass = elementWebFrame.contentDocument.getElementsByClassName('mx_LeftPanel_outerWrapper')
for (const leftPanel of leftPanelsByClass) {
leftPanel.remove()
}
})
observer.observe(matrixchat, observerConfig)
}).catch(console.error)
},
},