Compare commits
2 commits
b26dd1094c
...
23ad679473
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
23ad679473 | ||
|
|
57db26a827 |
|
|
@ -20,11 +20,8 @@ const config = require('../../../config.json');
|
||||||
//Local Imports
|
//Local Imports
|
||||||
const channelModel = require('../../schemas/channel/channelSchema');
|
const channelModel = require('../../schemas/channel/channelSchema');
|
||||||
const emoteModel = require('../../schemas/emoteSchema');
|
const emoteModel = require('../../schemas/emoteSchema');
|
||||||
const {userModel} = require('../../schemas/user/userSchema');
|
|
||||||
const userBanModel = require('../../schemas/user/userBanSchema');
|
|
||||||
const socketUtils = require('../../utils/socketUtils');
|
const socketUtils = require('../../utils/socketUtils');
|
||||||
const loggerUtils = require('../../utils/loggerUtils');
|
const loggerUtils = require('../../utils/loggerUtils');
|
||||||
const csrfUtils = require('../../utils/csrfUtils');
|
|
||||||
const presenceUtils = require('../../utils/presenceUtils');
|
const presenceUtils = require('../../utils/presenceUtils');
|
||||||
const activeChannel = require('./activeChannel');
|
const activeChannel = require('./activeChannel');
|
||||||
const chatHandler = require('./chatHandler');
|
const chatHandler = require('./chatHandler');
|
||||||
|
|
|
||||||
|
|
@ -214,7 +214,7 @@ textarea{
|
||||||
text-shadow: var(--danger-glow0-alt1);
|
text-shadow: var(--danger-glow0-alt1);
|
||||||
}
|
}
|
||||||
|
|
||||||
.positive-button{
|
.positive-button:not([disabled]){
|
||||||
background-color: var(--focus0);
|
background-color: var(--focus0);
|
||||||
color: white;
|
color: white;
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -108,14 +108,20 @@ class pmPanel extends panelObj{
|
||||||
//Pull current sesh from sesh list
|
//Pull current sesh from sesh list
|
||||||
const sesh = this.client.pmHandler.seshList.get(this.activeSesh);
|
const sesh = this.client.pmHandler.seshList.get(this.activeSesh);
|
||||||
|
|
||||||
//Send message out to server
|
//Preprocess message from prompt
|
||||||
this.client.pmSocket.emit("pm", {
|
const preprocessedMessage = this.client.chatBox.commandPreprocessor.preprocess(this.seshPrompt.value);
|
||||||
recipients: sesh.recipients,
|
|
||||||
msg: this.seshPrompt.value
|
|
||||||
});
|
|
||||||
|
|
||||||
//Clear our prompt
|
//If preprocessedMessage had it's send flag thrown as false
|
||||||
this.seshPrompt.value = "";
|
if(preprocessedMessage != false){
|
||||||
|
//Stick recipients into the pre-processed message
|
||||||
|
preprocessedMessage.recipients = sesh.recipients;
|
||||||
|
|
||||||
|
//Send message out to server
|
||||||
|
this.client.pmSocket.emit("pm", preprocessedMessage);
|
||||||
|
}
|
||||||
|
|
||||||
|
//Clear our prompt
|
||||||
|
this.seshPrompt.value = "";
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue