Merge pull request #12219 from overleaf/em-camel-case-web

Camel case variables in web

GitOrigin-RevId: 28e61b759b27f71265f33ab64f588374dba610e0
This commit is contained in:
Eric Mc Sween
2023-03-22 09:05:04 +00:00
committed by Copybot
parent e4efe121da
commit 21971956b7
56 changed files with 685 additions and 742 deletions
@@ -1,5 +1,4 @@
/* eslint-disable
camelcase,
max-len,
no-unused-vars,
*/
@@ -24,20 +23,20 @@ const RND = crypto.randomBytes(4).toString('hex') // generate a random key for t
let COUNT = 0
module.exports = EditorRealTimeController = {
emitToRoom(room_id, message, ...payload) {
emitToRoom(roomId, message, ...payload) {
// create a unique message id using a counter
const message_id = `web:${HOST}:${RND}-${COUNT++}`
const messageId = `web:${HOST}:${RND}-${COUNT++}`
let channel
if (room_id === 'all' || !Settings.publishOnIndividualChannels) {
if (roomId === 'all' || !Settings.publishOnIndividualChannels) {
channel = 'editor-events'
} else {
channel = `editor-events:${room_id}`
channel = `editor-events:${roomId}`
}
const blob = JSON.stringify({
room_id,
room_id: roomId,
message,
payload,
_id: message_id,
_id: messageId,
})
Metrics.summary('redis.publish.editor-events', blob.length, {
status: message,