Merge branch 'develop' of github.com:thecodingmachine/workadventure into main
This commit is contained in:
commit
1783b90d81
1
front/dist/resources/style/style.css
vendored
1
front/dist/resources/style/style.css
vendored
@ -136,6 +136,7 @@ body .message-info.warning{
|
|||||||
position: absolute;
|
position: absolute;
|
||||||
right: 15px;
|
right: 15px;
|
||||||
bottom: 30px;
|
bottom: 30px;
|
||||||
|
max-height: 200px;
|
||||||
}
|
}
|
||||||
|
|
||||||
video#myCamVideo{
|
video#myCamVideo{
|
||||||
|
@ -35,7 +35,7 @@
|
|||||||
"phaser": "3.24.1",
|
"phaser": "3.24.1",
|
||||||
"phaser3-rex-plugins": "^1.1.42",
|
"phaser3-rex-plugins": "^1.1.42",
|
||||||
"queue-typescript": "^1.0.1",
|
"queue-typescript": "^1.0.1",
|
||||||
"quill": "^1.3.7",
|
"quill": "1.3.6",
|
||||||
"rxjs": "^6.6.3",
|
"rxjs": "^6.6.3",
|
||||||
"simple-peer": "^9.6.2",
|
"simple-peer": "^9.6.2",
|
||||||
"socket.io-client": "^2.3.0",
|
"socket.io-client": "^2.3.0",
|
||||||
|
@ -2,7 +2,6 @@ import {HtmlUtils} from "../WebRtc/HtmlUtils";
|
|||||||
import {UserInputManager} from "../Phaser/UserInput/UserInputManager";
|
import {UserInputManager} from "../Phaser/UserInput/UserInputManager";
|
||||||
import {RoomConnection} from "../Connexion/RoomConnection";
|
import {RoomConnection} from "../Connexion/RoomConnection";
|
||||||
import {PlayGlobalMessageInterface} from "../Connexion/ConnexionModels";
|
import {PlayGlobalMessageInterface} from "../Connexion/ConnexionModels";
|
||||||
import {ADMIN_URL} from "../Enum/EnvironmentVariable";
|
|
||||||
import {AdminMessageEventTypes} from "../Connexion/AdminMessagesService";
|
import {AdminMessageEventTypes} from "../Connexion/AdminMessagesService";
|
||||||
|
|
||||||
export const CLASS_CONSOLE_MESSAGE = 'main-console';
|
export const CLASS_CONSOLE_MESSAGE = 'main-console';
|
||||||
@ -162,42 +161,46 @@ export class ConsoleGlobalMessageManager {
|
|||||||
this.divMessageConsole.appendChild(section);
|
this.divMessageConsole.appendChild(section);
|
||||||
|
|
||||||
(async () => {
|
(async () => {
|
||||||
// Start loading CSS
|
try{
|
||||||
const cssPromise = ConsoleGlobalMessageManager.loadCss();
|
// Start loading CSS
|
||||||
// Import quill
|
const cssPromise = ConsoleGlobalMessageManager.loadCss();
|
||||||
const Quill:any = await import("quill"); // eslint-disable-line @typescript-eslint/no-explicit-any
|
// Import quill
|
||||||
// Wait for CSS to be loaded
|
const {default: Quill}:any = await import("quill"); // eslint-disable-line @typescript-eslint/no-explicit-any
|
||||||
await cssPromise;
|
// Wait for CSS to be loaded
|
||||||
|
await cssPromise;
|
||||||
|
|
||||||
const toolbarOptions = [
|
const toolbarOptions = [
|
||||||
['bold', 'italic', 'underline', 'strike'], // toggled buttons
|
['bold', 'italic', 'underline', 'strike'], // toggled buttons
|
||||||
['blockquote', 'code-block'],
|
['blockquote', 'code-block'],
|
||||||
|
|
||||||
[{'header': 1}, {'header': 2}], // custom button values
|
[{'header': 1}, {'header': 2}], // custom button values
|
||||||
[{'list': 'ordered'}, {'list': 'bullet'}],
|
[{'list': 'ordered'}, {'list': 'bullet'}],
|
||||||
[{'script': 'sub'}, {'script': 'super'}], // superscript/subscript
|
[{'script': 'sub'}, {'script': 'super'}], // superscript/subscript
|
||||||
[{'indent': '-1'}, {'indent': '+1'}], // outdent/indent
|
[{'indent': '-1'}, {'indent': '+1'}], // outdent/indent
|
||||||
[{'direction': 'rtl'}], // text direction
|
[{'direction': 'rtl'}], // text direction
|
||||||
|
|
||||||
[{'size': ['small', false, 'large', 'huge']}], // custom dropdown
|
[{'size': ['small', false, 'large', 'huge']}], // custom dropdown
|
||||||
[{'header': [1, 2, 3, 4, 5, 6, false]}],
|
[{'header': [1, 2, 3, 4, 5, 6, false]}],
|
||||||
|
|
||||||
[{'color': []}, {'background': []}], // dropdown with defaults from theme
|
[{'color': []}, {'background': []}], // dropdown with defaults from theme
|
||||||
[{'font': []}],
|
[{'font': []}],
|
||||||
[{'align': []}],
|
[{'align': []}],
|
||||||
|
|
||||||
['clean'],
|
['clean'],
|
||||||
|
|
||||||
['link', 'image', 'video']
|
['link', 'image', 'video']
|
||||||
// remove formatting button
|
// remove formatting button
|
||||||
];
|
];
|
||||||
|
|
||||||
new Quill(`#${INPUT_CONSOLE_MESSAGE}`, {
|
new Quill(`#${INPUT_CONSOLE_MESSAGE}`, {
|
||||||
theme: 'snow',
|
theme: 'snow',
|
||||||
modules: {
|
modules: {
|
||||||
toolbar: toolbarOptions
|
toolbar: toolbarOptions
|
||||||
},
|
},
|
||||||
});
|
});
|
||||||
|
}catch(err){
|
||||||
|
console.error(err);
|
||||||
|
}
|
||||||
})();
|
})();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -1947,7 +1947,7 @@ extend-shallow@^3.0.0, extend-shallow@^3.0.2:
|
|||||||
assign-symbols "^1.0.0"
|
assign-symbols "^1.0.0"
|
||||||
is-extendable "^1.0.1"
|
is-extendable "^1.0.1"
|
||||||
|
|
||||||
extend@^3.0.2:
|
extend@^3.0.1, extend@^3.0.2:
|
||||||
version "3.0.2"
|
version "3.0.2"
|
||||||
resolved "https://registry.yarnpkg.com/extend/-/extend-3.0.2.tgz#f8b1136b4071fbd8eb140aff858b1019ec2915fa"
|
resolved "https://registry.yarnpkg.com/extend/-/extend-3.0.2.tgz#f8b1136b4071fbd8eb140aff858b1019ec2915fa"
|
||||||
integrity sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g==
|
integrity sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g==
|
||||||
@ -4036,15 +4036,15 @@ quill-delta@^3.6.2:
|
|||||||
extend "^3.0.2"
|
extend "^3.0.2"
|
||||||
fast-diff "1.1.2"
|
fast-diff "1.1.2"
|
||||||
|
|
||||||
quill@^1.3.7:
|
quill@1.3.6:
|
||||||
version "1.3.7"
|
version "1.3.6"
|
||||||
resolved "https://registry.yarnpkg.com/quill/-/quill-1.3.7.tgz#da5b2f3a2c470e932340cdbf3668c9f21f9286e8"
|
resolved "https://registry.yarnpkg.com/quill/-/quill-1.3.6.tgz#99f4de1fee85925a0d7d4163b6d8328f23317a4d"
|
||||||
integrity sha512-hG/DVzh/TiknWtE6QmWAF/pxoZKYxfe3J/d/+ShUWkDvvkZQVTPeVmUJVu1uE6DDooC4fWTiCLh84ul89oNz5g==
|
integrity sha512-K0mvhimWZN6s+9OQ249CH2IEPZ9JmkFuCQeHAOQax3EZ2nDJ3wfGh59mnlQaZV2i7u8eFarx6wAtvQKgShojug==
|
||||||
dependencies:
|
dependencies:
|
||||||
clone "^2.1.1"
|
clone "^2.1.1"
|
||||||
deep-equal "^1.0.1"
|
deep-equal "^1.0.1"
|
||||||
eventemitter3 "^2.0.3"
|
eventemitter3 "^2.0.3"
|
||||||
extend "^3.0.2"
|
extend "^3.0.1"
|
||||||
parchment "^1.1.4"
|
parchment "^1.1.4"
|
||||||
quill-delta "^3.6.2"
|
quill-delta "^3.6.2"
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user