mirror of
https://github.com/pierre42100/ComunicWeb
synced 2025-06-19 12:25:16 +00:00
Simplify variables name
This commit is contained in:
@ -146,7 +146,7 @@ const ConvChatWindow = {
|
||||
class: "form-control",
|
||||
placeholder: tr("New message..."),
|
||||
});
|
||||
inputText.maxLength = ServerConfig.conf.conversations_policy.max_conversation_message_len;
|
||||
inputText.maxLength = ServerConfig.conf.conversations_policy.max_message_len;
|
||||
|
||||
// Notify other users when this user is writing a message
|
||||
ConversationsUtils.listenToInputChangeEvents(inputText, infosBox.conversationID)
|
||||
@ -164,7 +164,7 @@ const ConvChatWindow = {
|
||||
type: "input",
|
||||
elemType: "file",
|
||||
});
|
||||
fileInput.accept = ServerConfig.conf.conversations_policy.allowed_conversation_files_type.join(", ");
|
||||
fileInput.accept = ServerConfig.conf.conversations_policy.allowed_files_type.join(", ");
|
||||
|
||||
|
||||
//Create button group
|
||||
@ -902,8 +902,8 @@ const ConvChatWindow = {
|
||||
if (message.length == 0)
|
||||
return;
|
||||
|
||||
if(message.length < ServerConfig.conf.conversations_policy.min_conversation_message_len
|
||||
|| message.length > ServerConfig.conf.conversations_policy.max_conversation_message_len){
|
||||
if(message.length < ServerConfig.conf.conversations_policy.min_message_len
|
||||
|| message.length > ServerConfig.conf.conversations_policy.max_message_len){
|
||||
notify(tr("Invalid message length!"), "danger", 2);
|
||||
return;
|
||||
}
|
||||
|
@ -241,14 +241,14 @@ const ConversationsUtils = {
|
||||
|
||||
const file = fileInput.files[0];
|
||||
|
||||
if (ServerConfig.conf.conversations_policy.allowed_conversation_files_type.indexOf(file.type) < 0) {
|
||||
if (ServerConfig.conf.conversations_policy.allowed_files_type.indexOf(file.type) < 0) {
|
||||
notify(tr("This file type is not allowed!"), "danger")
|
||||
return;
|
||||
}
|
||||
|
||||
|
||||
if (file.size > ServerConfig.conf.conversations_policy.conversation_files_max_size) {
|
||||
notify(tr("This file is too big (max file size: %1%)", {"1": fileSizeToHuman(ServerConfig.conf.conversations_policy.conversation_files_max_size)}), "danger");
|
||||
if (file.size > ServerConfig.conf.conversations_policy.files_max_size) {
|
||||
notify(tr("This file is too big (max file size: %1%)", {"1": fileSizeToHuman(ServerConfig.conf.conversations_policy.files_max_size)}), "danger");
|
||||
return;
|
||||
}
|
||||
|
||||
@ -301,7 +301,7 @@ const ConversationsUtils = {
|
||||
return;
|
||||
|
||||
const t = ComunicDate.time();
|
||||
if (t - last_update < ServerConfig.conf.conversations_policy.conversation_writing_event_interval)
|
||||
if (t - last_update < ServerConfig.conf.conversations_policy.writing_event_interval)
|
||||
return;
|
||||
|
||||
last_update = t;
|
||||
|
@ -42,7 +42,7 @@ class ConversationWritingNotifier {
|
||||
setTimeout(() => {
|
||||
this.usersFifo.shift();
|
||||
this.refreshText()
|
||||
}, ServerConfig.conf.conversations_policy.conversation_writing_event_lifetime * 1000)
|
||||
}, ServerConfig.conf.conversations_policy.writing_event_lifetime * 1000)
|
||||
}
|
||||
|
||||
/**
|
||||
|
Reference in New Issue
Block a user