2020-01-17 09:42:02 +00:00
|
|
|
var socket = io();
|
|
|
|
|
|
|
|
var corpora;
|
|
|
|
var corporaSubscribers = [];
|
|
|
|
var jobs;
|
|
|
|
var jobsSubscribers = [];
|
|
|
|
|
|
|
|
var foreignCorpora;
|
|
|
|
var foreignCorporaSubscribers = [];
|
|
|
|
var foreignJobs;
|
|
|
|
var foreignJobsSubscribers = [];
|
|
|
|
|
|
|
|
|
2020-01-17 14:10:01 +00:00
|
|
|
function toast(message, color="") {
|
2020-01-17 09:42:02 +00:00
|
|
|
var toast;
|
|
|
|
var toastActionElement;
|
|
|
|
|
2020-01-17 14:10:01 +00:00
|
|
|
toast = M.toast({"classes": color,
|
|
|
|
"html": `<span>${message}</span>
|
|
|
|
<button class="btn-flat toast-action white-text" data-action="close">
|
2020-01-17 09:42:02 +00:00
|
|
|
<i class="material-icons">close</i>
|
|
|
|
</button>`});
|
|
|
|
toastActionElement = toast.el.querySelector(`.toast-action[data-action="close"]`);
|
|
|
|
if (toastActionElement) {
|
|
|
|
toastActionElement.addEventListener("click", function() {
|
|
|
|
toast.dismiss();
|
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
socket.on('init-corpora', function(msg) {
|
|
|
|
corpora = JSON.parse(msg);
|
|
|
|
for (let subscriber of corporaSubscribers) {subscriber._init(corpora);}
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
|
|
socket.on('init-jobs', function(msg) {
|
|
|
|
jobs = JSON.parse(msg);
|
|
|
|
for (let subscriber of jobsSubscribers) {subscriber._init(jobs);}
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
|
|
socket.on('update-corpora', function(msg) {
|
|
|
|
var patch;
|
|
|
|
|
|
|
|
patch = JSON.parse(msg);
|
|
|
|
corpora = jsonpatch.apply_patch(corpora, patch);
|
|
|
|
for (let subscriber of corporaSubscribers) {subscriber._update(patch);}
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
|
|
socket.on('update-jobs', function(msg) {
|
|
|
|
var patch;
|
|
|
|
|
|
|
|
patch = JSON.parse(msg);
|
|
|
|
jobs = jsonpatch.apply_patch(jobs, patch);
|
|
|
|
for (let subscriber of jobsSubscribers) {subscriber._update(patch);}
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
|
|
socket.on('init-foreign-corpora', function(msg) {
|
|
|
|
foreignCorpora = JSON.parse(msg);
|
|
|
|
for (let subscriber of foreignCorporaSubscribers) {subscriber._init(foreignCorpora);}
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
|
|
socket.on('init-foreign-jobs', function(msg) {
|
|
|
|
foreignJobs = JSON.parse(msg);
|
|
|
|
for (let subscriber of foreignJobsSubscribers) {subscriber._init(foreignJobs);}
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
|
|
socket.on('update-foreign-corpora', function(msg) {
|
|
|
|
var patch;
|
|
|
|
|
|
|
|
patch = JSON.parse(msg);
|
|
|
|
foreignCorpora = jsonpatch.apply_patch(foreignCorpora, patch);
|
|
|
|
for (let subscriber of foreignCorporaSubscribers) {subscriber._update(patch);}
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
|
|
socket.on('update-foreign-jobs', function(msg) {
|
|
|
|
var patch;
|
|
|
|
|
|
|
|
patch = JSON.parse(msg);
|
|
|
|
foreignJobs = jsonpatch.apply_patch(foreignJobs, patch);
|
|
|
|
for (let subscriber of foreignJobsSubscribers) {subscriber._update(patch);}
|
|
|
|
});
|
|
|
|
|
|
|
|
|
2020-01-17 09:49:04 +00:00
|
|
|
document.addEventListener("DOMContentLoaded", function() {
|
2020-01-17 09:42:02 +00:00
|
|
|
M.AutoInit();
|
|
|
|
M.CharacterCounter.init(document.querySelectorAll(`input[data-length][type="text"]`));
|
|
|
|
M.Dropdown.init(document.getElementById("nav-notifications"),
|
|
|
|
{"alignment": "right", "constrainWidth": false, "coverTrigger": false});
|
|
|
|
M.Dropdown.init(document.getElementById("nav-account"),
|
|
|
|
{"alignment": "right", "constrainWidth": false, "coverTrigger": false});
|
|
|
|
for (let entry of document.querySelectorAll("#slide-out a:not(.subheader)")) {
|
|
|
|
if (entry.href === window.location.href) {
|
|
|
|
entry.parentNode.classList.add("active");
|
|
|
|
}
|
|
|
|
}
|
2020-01-17 09:49:04 +00:00
|
|
|
socket.emit("subscribe_user_ressources");
|
2020-01-17 09:42:02 +00:00
|
|
|
});
|