2020-09-21 00:34:25 +02:00
|
|
|
import {GameScene} from "../Phaser/Game/GameScene";
|
|
|
|
|
2020-09-20 19:31:24 +02:00
|
|
|
const Quill = require("quill");
|
|
|
|
|
2020-09-20 17:12:27 +02:00
|
|
|
import {HtmlUtils} from "../WebRtc/HtmlUtils";
|
2020-09-16 21:50:04 +02:00
|
|
|
import {Connection, GlobalMessageInterface} from "../Connection";
|
2020-09-21 00:34:25 +02:00
|
|
|
import {UserInputManager} from "../Phaser/UserInput/UserInputManager";
|
2020-09-16 21:50:04 +02:00
|
|
|
|
|
|
|
export const CLASS_CONSOLE_MESSAGE = 'main-console';
|
|
|
|
export const INPUT_CONSOLE_MESSAGE = 'input-send-text';
|
|
|
|
export const UPLOAD_CONSOLE_MESSAGE = 'input-upload-music';
|
|
|
|
export const BUTTON_CONSOLE_SEND = 'button-send';
|
|
|
|
export const INPUT_TYPE_CONSOLE = 'input-type';
|
|
|
|
|
|
|
|
export const AUDIO_TYPE = 'audio';
|
|
|
|
export const MESSAGE_TYPE = 'message';
|
|
|
|
|
|
|
|
export class ConsoleGlobalMessageManager {
|
|
|
|
|
|
|
|
private Connection: Connection;
|
2020-09-19 01:08:56 +02:00
|
|
|
private divMainConsole: HTMLDivElement;
|
|
|
|
private buttonMainConsole: HTMLDivElement;
|
|
|
|
private activeConsole: boolean = false;
|
2020-09-21 00:34:25 +02:00
|
|
|
private userInputManager!: UserInputManager;
|
2020-09-16 21:50:04 +02:00
|
|
|
|
2020-09-21 00:34:25 +02:00
|
|
|
constructor(Connection: Connection, userInputManager : UserInputManager) {
|
2020-09-16 21:50:04 +02:00
|
|
|
this.Connection = Connection;
|
2020-09-19 01:08:56 +02:00
|
|
|
this.buttonMainConsole = document.createElement('div');
|
2020-09-20 19:31:24 +02:00
|
|
|
this.buttonMainConsole.classList.add('console');
|
2020-09-19 01:08:56 +02:00
|
|
|
this.divMainConsole = document.createElement('div');
|
2020-09-21 00:34:25 +02:00
|
|
|
this.userInputManager = userInputManager;
|
2020-09-16 21:50:04 +02:00
|
|
|
this.initialise();
|
|
|
|
}
|
|
|
|
|
2020-09-19 01:08:56 +02:00
|
|
|
initialise() {
|
2020-09-21 01:16:10 +02:00
|
|
|
try {
|
2020-09-21 15:00:39 +02:00
|
|
|
HtmlUtils.removeElementByIdOrFail(CLASS_CONSOLE_MESSAGE);
|
2020-09-23 18:44:24 +02:00
|
|
|
}catch (err){
|
|
|
|
console.error(err);
|
|
|
|
}
|
2020-09-21 01:16:10 +02:00
|
|
|
|
2020-09-21 15:00:39 +02:00
|
|
|
const typeConsole = document.createElement('input');
|
|
|
|
typeConsole.id = INPUT_TYPE_CONSOLE;
|
|
|
|
typeConsole.value = MESSAGE_TYPE;
|
|
|
|
typeConsole.type = 'hidden';
|
|
|
|
|
2020-09-21 01:16:10 +02:00
|
|
|
const menu = document.createElement('div');
|
|
|
|
menu.classList.add('menu')
|
|
|
|
const textMessage = document.createElement('span');
|
|
|
|
textMessage.innerText = "Message";
|
|
|
|
textMessage.classList.add('active');
|
|
|
|
textMessage.addEventListener('click', () => {
|
|
|
|
textMessage.classList.add('active');
|
2020-09-21 15:00:39 +02:00
|
|
|
const messageSection = HtmlUtils.getElementByIdOrFail<HTMLInputElement>(this.getSectionId(INPUT_CONSOLE_MESSAGE));
|
|
|
|
messageSection.classList.add('active');
|
|
|
|
|
2020-09-21 01:16:10 +02:00
|
|
|
textAudio.classList.remove('active');
|
2020-09-21 15:00:39 +02:00
|
|
|
const audioSection = HtmlUtils.getElementByIdOrFail<HTMLInputElement>(this.getSectionId(UPLOAD_CONSOLE_MESSAGE));
|
|
|
|
audioSection.classList.remove('active');
|
|
|
|
|
|
|
|
typeConsole.value = MESSAGE_TYPE;
|
2020-09-21 00:42:39 +02:00
|
|
|
});
|
2020-09-21 01:16:10 +02:00
|
|
|
menu.appendChild(textMessage);
|
|
|
|
const textAudio = document.createElement('span');
|
|
|
|
textAudio.innerText = "Audio";
|
|
|
|
textAudio.addEventListener('click', () => {
|
|
|
|
textAudio.classList.add('active');
|
2020-09-21 15:00:39 +02:00
|
|
|
const audioSection = HtmlUtils.getElementByIdOrFail<HTMLInputElement>(this.getSectionId(UPLOAD_CONSOLE_MESSAGE));
|
|
|
|
audioSection.classList.add('active');
|
|
|
|
|
2020-09-21 01:16:10 +02:00
|
|
|
textMessage.classList.remove('active');
|
2020-09-21 15:00:39 +02:00
|
|
|
const messageSection = HtmlUtils.getElementByIdOrFail<HTMLInputElement>(this.getSectionId(INPUT_CONSOLE_MESSAGE));
|
|
|
|
messageSection.classList.remove('active');
|
|
|
|
|
|
|
|
typeConsole.value = AUDIO_TYPE;
|
2020-09-21 01:16:10 +02:00
|
|
|
});
|
|
|
|
menu.appendChild(textMessage);
|
|
|
|
menu.appendChild(textAudio);
|
|
|
|
this.divMainConsole.appendChild(menu);
|
2020-09-21 00:42:39 +02:00
|
|
|
|
2020-09-20 17:12:27 +02:00
|
|
|
const buttonText = document.createElement('p');
|
2020-09-16 21:50:04 +02:00
|
|
|
buttonText.innerText = 'Console';
|
|
|
|
|
2020-09-19 01:08:56 +02:00
|
|
|
this.buttonMainConsole.appendChild(buttonText);
|
|
|
|
this.buttonMainConsole.addEventListener('click', () => {
|
|
|
|
if(this.activeConsole){
|
|
|
|
this.disabled();
|
|
|
|
}else{
|
|
|
|
this.active();
|
|
|
|
}
|
|
|
|
});
|
2020-09-16 21:50:04 +02:00
|
|
|
|
2020-09-19 01:08:56 +02:00
|
|
|
this.divMainConsole.className = CLASS_CONSOLE_MESSAGE;
|
|
|
|
this.divMainConsole.appendChild(this.buttonMainConsole);
|
2020-09-21 15:00:39 +02:00
|
|
|
this.divMainConsole.appendChild(typeConsole);
|
2020-09-19 01:08:56 +02:00
|
|
|
|
|
|
|
this.createTextMessagePart();
|
2020-09-21 15:00:39 +02:00
|
|
|
this.createUploadAudioPart();
|
2020-09-16 21:50:04 +02:00
|
|
|
|
2020-09-21 01:16:10 +02:00
|
|
|
const mainSectionDiv = HtmlUtils.getElementByIdOrFail<HTMLDivElement>('main-container');
|
2020-09-19 01:08:56 +02:00
|
|
|
mainSectionDiv.appendChild(this.divMainConsole);
|
|
|
|
}
|
|
|
|
|
|
|
|
createTextMessagePart(){
|
2020-09-20 19:31:24 +02:00
|
|
|
const div = document.createElement('div');
|
2020-09-21 15:00:39 +02:00
|
|
|
div.id = INPUT_CONSOLE_MESSAGE
|
2020-09-20 19:31:24 +02:00
|
|
|
const buttonSend = document.createElement('button');
|
2020-09-19 01:08:56 +02:00
|
|
|
buttonSend.innerText = 'Envoyer';
|
2020-09-21 00:34:25 +02:00
|
|
|
buttonSend.classList.add('btn');
|
2020-09-19 01:08:56 +02:00
|
|
|
buttonSend.addEventListener('click', (event: MouseEvent) => {
|
|
|
|
this.sendMessage();
|
|
|
|
this.disabled();
|
|
|
|
});
|
2020-09-21 00:34:25 +02:00
|
|
|
const buttonDiv = document.createElement('div');
|
|
|
|
buttonDiv.classList.add('btn-action');
|
|
|
|
buttonDiv.appendChild(buttonSend)
|
2020-09-19 01:08:56 +02:00
|
|
|
|
2020-09-20 19:31:24 +02:00
|
|
|
const section = document.createElement('section');
|
2020-09-21 15:00:39 +02:00
|
|
|
section.id = this.getSectionId(INPUT_CONSOLE_MESSAGE);
|
|
|
|
section.classList.add('active');
|
2020-09-20 19:31:24 +02:00
|
|
|
section.appendChild(div);
|
2020-09-21 00:34:25 +02:00
|
|
|
section.appendChild(buttonDiv);
|
2020-09-20 19:31:24 +02:00
|
|
|
this.divMainConsole.appendChild(section);
|
|
|
|
|
|
|
|
//TODO refactor
|
|
|
|
setTimeout(() => {
|
|
|
|
const toolbarOptions = [
|
|
|
|
['bold', 'italic', 'underline', 'strike'], // toggled buttons
|
|
|
|
['blockquote', 'code-block'],
|
|
|
|
|
|
|
|
[{ 'header': 1 }, { 'header': 2 }], // custom button values
|
|
|
|
[{ 'list': 'ordered'}, { 'list': 'bullet' }],
|
|
|
|
[{ 'script': 'sub'}, { 'script': 'super' }], // superscript/subscript
|
|
|
|
[{ 'indent': '-1'}, { 'indent': '+1' }], // outdent/indent
|
|
|
|
[{ 'direction': 'rtl' }], // text direction
|
|
|
|
|
|
|
|
[{ 'size': ['small', false, 'large', 'huge'] }], // custom dropdown
|
|
|
|
[{ 'header': [1, 2, 3, 4, 5, 6, false] }],
|
|
|
|
|
|
|
|
[{ 'color': [] }, { 'background': [] }], // dropdown with defaults from theme
|
|
|
|
[{ 'font': [] }],
|
|
|
|
[{ 'align': [] }],
|
|
|
|
|
|
|
|
['clean'],
|
|
|
|
|
|
|
|
['link', 'image', 'video']
|
|
|
|
// remove formatting button
|
|
|
|
];
|
|
|
|
|
2020-09-23 18:37:54 +02:00
|
|
|
new Quill(`#${INPUT_CONSOLE_MESSAGE}`, {
|
2020-09-20 19:31:24 +02:00
|
|
|
theme: 'snow',
|
|
|
|
modules: {
|
|
|
|
toolbar: toolbarOptions
|
|
|
|
},
|
|
|
|
});
|
2020-09-21 00:34:25 +02:00
|
|
|
|
2020-09-20 19:31:24 +02:00
|
|
|
}, 1000);
|
2020-09-16 21:50:04 +02:00
|
|
|
}
|
|
|
|
|
2020-09-21 15:00:39 +02:00
|
|
|
createUploadAudioPart(){
|
|
|
|
const div = document.createElement('div');
|
|
|
|
div.classList.add('upload');
|
|
|
|
|
|
|
|
const label = document.createElement('label');
|
|
|
|
label.setAttribute('for', UPLOAD_CONSOLE_MESSAGE);
|
|
|
|
|
|
|
|
const img = document.createElement('img');
|
|
|
|
img.setAttribute('for', UPLOAD_CONSOLE_MESSAGE);
|
|
|
|
img.src = 'resources/logos/music-file.svg';
|
|
|
|
|
|
|
|
const input = document.createElement('input');
|
|
|
|
input.type = 'file';
|
|
|
|
input.id = UPLOAD_CONSOLE_MESSAGE
|
2020-09-23 18:44:24 +02:00
|
|
|
input.addEventListener('input', (e: Event) => {
|
2020-09-21 15:00:39 +02:00
|
|
|
if(!e.target || !e.target.files || e.target.files.length === 0){
|
|
|
|
return;
|
|
|
|
}
|
2020-09-23 18:44:24 +02:00
|
|
|
const file : File = e.target.files[0];
|
2020-09-21 15:00:39 +02:00
|
|
|
|
|
|
|
if(!file){
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
try {
|
|
|
|
HtmlUtils.removeElementByIdOrFail('audi-message-filename');
|
2020-09-23 18:44:24 +02:00
|
|
|
}catch (err) {
|
|
|
|
console.error(err)
|
|
|
|
}
|
2020-09-21 15:00:39 +02:00
|
|
|
|
|
|
|
const p = document.createElement('p');
|
|
|
|
p.id = 'audi-message-filename';
|
|
|
|
p.innerText = `${file.name} : ${this.getFileSize(file.size)}`;
|
|
|
|
label.appendChild(p);
|
|
|
|
});
|
|
|
|
|
|
|
|
label.appendChild(img);
|
|
|
|
div.appendChild(label);
|
|
|
|
div.appendChild(input);
|
|
|
|
|
|
|
|
const buttonSend = document.createElement('button');
|
|
|
|
buttonSend.innerText = 'Envoyer';
|
|
|
|
buttonSend.classList.add('btn');
|
|
|
|
buttonSend.addEventListener('click', (event: MouseEvent) => {
|
|
|
|
this.sendMessage();
|
|
|
|
this.disabled();
|
|
|
|
});
|
|
|
|
const buttonDiv = document.createElement('div');
|
|
|
|
buttonDiv.classList.add('btn-action');
|
|
|
|
buttonDiv.appendChild(buttonSend)
|
|
|
|
|
|
|
|
const section = document.createElement('section');
|
|
|
|
section.id = this.getSectionId(UPLOAD_CONSOLE_MESSAGE);
|
|
|
|
section.appendChild(div);
|
|
|
|
section.appendChild(buttonDiv);
|
|
|
|
this.divMainConsole.appendChild(section);
|
|
|
|
}
|
|
|
|
|
2020-09-19 01:08:56 +02:00
|
|
|
sendMessage(){
|
|
|
|
const inputType = HtmlUtils.getElementByIdOrFail<HTMLInputElement>(INPUT_TYPE_CONSOLE);
|
|
|
|
if(AUDIO_TYPE !== inputType.value && MESSAGE_TYPE !== inputType.value){
|
2020-09-16 21:50:04 +02:00
|
|
|
throw "Error event type";
|
|
|
|
}
|
2020-09-20 19:01:21 +02:00
|
|
|
if(AUDIO_TYPE === inputType.value){
|
2020-09-20 17:12:27 +02:00
|
|
|
return this.sendAudioMessage();
|
|
|
|
}
|
|
|
|
return this.sendTextMessage();
|
|
|
|
}
|
|
|
|
|
|
|
|
private sendTextMessage(){
|
2020-09-23 18:44:24 +02:00
|
|
|
const elements = document.getElementsByClassName('ql-editor');
|
|
|
|
const quillEditor = elements.item(0);
|
2020-09-23 18:07:31 +02:00
|
|
|
if(!quillEditor){
|
|
|
|
throw "Error get quill node";
|
|
|
|
}
|
2020-09-23 18:44:24 +02:00
|
|
|
const GlobalMessage : GlobalMessageInterface = {
|
2020-09-16 21:50:04 +02:00
|
|
|
id: 1,
|
2020-09-23 18:07:31 +02:00
|
|
|
message: quillEditor.innerHTML,
|
2020-09-20 17:12:27 +02:00
|
|
|
type: MESSAGE_TYPE
|
2020-09-16 21:50:04 +02:00
|
|
|
};
|
2020-09-23 18:07:31 +02:00
|
|
|
quillEditor.innerHTML = '';
|
2020-09-16 21:50:04 +02:00
|
|
|
this.Connection.emitGlobalMessage(GlobalMessage);
|
|
|
|
}
|
2020-09-19 01:08:56 +02:00
|
|
|
|
2020-09-20 17:12:27 +02:00
|
|
|
private async sendAudioMessage(){
|
2020-09-20 19:01:21 +02:00
|
|
|
const inputAudio = HtmlUtils.getElementByIdOrFail<HTMLInputElement>(UPLOAD_CONSOLE_MESSAGE);
|
|
|
|
const selectedFile = inputAudio.files ? inputAudio.files[0] : null;
|
|
|
|
if(!selectedFile){
|
|
|
|
throw 'no file selected';
|
|
|
|
}
|
|
|
|
|
|
|
|
const fd = new FormData();
|
|
|
|
fd.append('file', selectedFile);
|
2020-09-23 18:44:24 +02:00
|
|
|
const res = await this.Connection.uploadAudio(fd);
|
2020-09-20 17:12:27 +02:00
|
|
|
|
2020-09-23 18:44:24 +02:00
|
|
|
const GlobalMessage : GlobalMessageInterface = {
|
2020-09-20 17:12:27 +02:00
|
|
|
id: res.id,
|
2020-09-20 19:01:21 +02:00
|
|
|
message: res.path,
|
2020-09-21 15:00:39 +02:00
|
|
|
type: AUDIO_TYPE
|
2020-09-20 17:12:27 +02:00
|
|
|
};
|
|
|
|
inputAudio.value = '';
|
2020-09-21 15:00:39 +02:00
|
|
|
try {
|
|
|
|
HtmlUtils.removeElementByIdOrFail('audi-message-filename');
|
2020-09-23 18:44:24 +02:00
|
|
|
}catch (err) {
|
|
|
|
console.error(err);
|
|
|
|
}
|
2020-09-20 17:12:27 +02:00
|
|
|
this.Connection.emitGlobalMessage(GlobalMessage);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2020-09-19 01:08:56 +02:00
|
|
|
active(){
|
2020-09-21 00:34:25 +02:00
|
|
|
this.userInputManager.clearAllInputKeyboard();
|
2020-09-19 01:08:56 +02:00
|
|
|
this.activeConsole = true;
|
|
|
|
this.divMainConsole.style.top = '0';
|
|
|
|
}
|
|
|
|
|
|
|
|
disabled(){
|
2020-09-21 00:34:25 +02:00
|
|
|
this.userInputManager.initKeyBoardEvent();
|
2020-09-19 01:08:56 +02:00
|
|
|
this.activeConsole = false;
|
|
|
|
this.divMainConsole.style.top = '-80%';
|
|
|
|
}
|
2020-09-21 15:00:39 +02:00
|
|
|
|
|
|
|
private getSectionId(id: string) : string {
|
|
|
|
return `section-${id}`;
|
|
|
|
}
|
|
|
|
|
|
|
|
private getFileSize(number: number) :string {
|
|
|
|
if (number < 1024) {
|
|
|
|
return number + 'bytes';
|
|
|
|
} else if (number >= 1024 && number < 1048576) {
|
|
|
|
return (number / 1024).toFixed(1) + 'KB';
|
|
|
|
} else if (number >= 1048576) {
|
|
|
|
return (number / 1048576).toFixed(1) + 'MB';
|
|
|
|
}else{
|
|
|
|
return '';
|
|
|
|
}
|
|
|
|
}
|
2020-09-16 21:50:04 +02:00
|
|
|
}
|