Problem: event source code show lots of debugging messages

Solution: remove logging in event source
This commit is contained in:
Peter Stuifzand 2022-04-18 14:19:01 +02:00
parent 79b88d7a59
commit 906bcd5493

View File

@ -80,21 +80,19 @@ export default new Vuex.Store({
'Authorization': 'Bearer ' + this.state.access_token 'Authorization': 'Bearer ' + this.state.access_token
} }
}) })
state.eventSource.addEventListener('open', evt => { // state.eventSource.addEventListener('open', evt => {
// eslint-disable-next-line // // eslint-disable-next-line
console.log(evt) // console.log(evt)
}) // })
state.eventSource.addEventListener('ping', evt => { // state.eventSource.addEventListener('ping', evt => {
// eslint-disable-next-line // // eslint-disable-next-line
console.log(evt) // console.log(evt)
}) // })
state.eventSource.addEventListener('message', evt => { // state.eventSource.addEventListener('message', evt => {
// eslint-disable-next-line // // eslint-disable-next-line
console.log(evt) // console.log(evt)
}) // })
state.eventSource.addEventListener('error', evt => { state.eventSource.addEventListener('error', evt => {
// eslint-disable-next-line
console.log(evt)
if (evt.message === "network error") { if (evt.message === "network error") {
state.eventSource.close() state.eventSource.close()
} }
@ -112,8 +110,6 @@ export default new Vuex.Store({
} }
}) })
state.eventSource.addEventListener('new item in channel', evt => { state.eventSource.addEventListener('new item in channel', evt => {
// eslint-disable-next-line
console.log(evt)
let msg = JSON.parse(evt.data) let msg = JSON.parse(evt.data)
let channel = _.find(state.channels, item => item.uid === msg.uid) let channel = _.find(state.channels, item => item.uid === msg.uid)
if (channel) { if (channel) {
@ -122,8 +118,6 @@ export default new Vuex.Store({
}) })
state.eventSource.addEventListener('new channel', evt => { state.eventSource.addEventListener('new channel', evt => {
// eslint-disable-next-line
console.log(evt)
let msg = JSON.parse(evt.data) let msg = JSON.parse(evt.data)
let channel = _.find(state.channels, it => it.uid === msg.channel.uid) let channel = _.find(state.channels, it => it.uid === msg.channel.uid)
if (!channel) { if (!channel) {
@ -132,8 +126,6 @@ export default new Vuex.Store({
}) })
state.eventSource.addEventListener('update channel', evt => { state.eventSource.addEventListener('update channel', evt => {
// eslint-disable-next-line
console.log(evt)
let msg = JSON.parse(evt.data) let msg = JSON.parse(evt.data)
let channel = _.find(state.channels, it => it.uid === msg.channel.uid) let channel = _.find(state.channels, it => it.uid === msg.channel.uid)
if (channel) { if (channel) {
@ -142,8 +134,6 @@ export default new Vuex.Store({
}) })
state.eventSource.addEventListener('delete channel', evt => { state.eventSource.addEventListener('delete channel', evt => {
// eslint-disable-next-line
console.log(evt)
let msg = JSON.parse(evt.data) let msg = JSON.parse(evt.data)
state.channels = _.remove(state.channels, it => it.uid === msg.uid) state.channels = _.remove(state.channels, it => it.uid === msg.uid)
}) })
@ -333,7 +323,7 @@ export default new Vuex.Store({
} }
}, },
startEventListening({commit}, url) { startEventListening({commit}, url) {
commit('createEventSource', url) return commit('createEventSource', url)
}, },
openDebug({commit}, item) { openDebug({commit}, item) {
return commit('openDebugPopup', item) return commit('openDebugPopup', item)