Newer
Older
// Imports
import * as Auth from "/services/auth/auth.js";
import * as Common from "/services/common/common.js";
import * as Messages from "/services/messages/messages.js";
import * as SectionModel from "/services/model/section-model.js";
import { Delete } from "/services/common/delete.js";
// DOM elements
export async function mount(where, parent) {
const sectionComponent = new Section(parent);
await sectionComponent.mount(where);
return sectionComponent;
}
class Section {
constructor(parent) {
this.parent = parent;
this.SectionModel.current_user = await Auth.GetUser();
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
const mountpoint = where;
document.getElementById(mountpoint).innerHTML = /* HTML */ `
<header class="card-header">
<p class="card-header-title" id="section-title">
Sections
</p>
</header>
<div class="card-content">
<div id="section-list" class="content">
Sélectionner une circonscription.
</div>
</div>
`;
this.mountModal("section-modal");
this.handleDom();
}
handleDom() {
let sectionHandler = this;
document
.getElementById(`section-modal-close`)
.addEventListener("click", function () {
Common.toggleModal("section-modal", "section-modal-card");
});
document
.getElementById(`section-modal-cancel`)
.addEventListener("click", function () {
Common.toggleModal("section-modal", "section-modal-card");
});
document
.getElementById(`section-modal-save`)
.addEventListener("click", async function () {
await sectionHandler.saveSection();
});
document
.getElementById(`section-modal-save-section`)
.addEventListener("click", async function () {
await sectionHandler.saveSection();
await new Promise((r) => setTimeout(r, 800));
sectionHandler.newSection(sectionHandler.area);
});
document
.getElementById(`section-modal-save-desk`)
.addEventListener("click", async function () {
let section = await sectionHandler.saveSection();
await new Promise((r) => setTimeout(r, 800));
sectionHandler.parent.deskHandler.section = section;
sectionHandler.parent.deskHandler.newDesk(section);
});
}
mountModal(where) {
const mountpoint = where;
document.getElementById(mountpoint).innerHTML = /* HTML */ `
<div class="modal-background"></div>
<div class="modal-card" id="section-modal-card">
<header class="modal-card-head">
<p class="modal-card-title">
Ajout/modification d'une section
</p>
<button
class="delete"
aria-label="close"
id="section-modal-close"
></button>
</header>
<section class="modal-card-body">
<div class="field">
<label>Id</label>
<div class="control">
<input
class="input"
type="number"
id="section-modal-id"
disabled
/>
</div>
</div>
<div class="field">
<label>Nom</label>
<div class="control">
<input class="input" type="text" id="section-modal-name" />
</div>
</div>
<div class="field">
<label>Identifiant de carte</label>
<div class="control">
<input class="input" type="number" id="section-modal-mapID" />
</div>
</div>
</section>
<footer class="modal-card-foot">
<button id="section-modal-save" class="button is-success">
Sauvegarder
</button>
<button id="section-modal-save-section" class="button is-success">
Sauvegarder <br />
(ajouter section)
</button>
<button id="section-modal-save-desk" class="button is-success">
Sauvegarder <br />
(ajouter bureau)
</button>
<button id="section-modal-cancel" class="button">Annuler</button>
</footer>
</div>
`;
}
async displaySections() {
document.getElementById("sections").style.display = "block";
document.getElementById("section-list").innerHTML = /* HTML */ `<button
id="section-new"
class="button large-button is-success"
>
<span class="icon is-small">
<i class="fas fa-plus"></i>
</span>
</button>`;
let sectionHandler = this;
let sections = await this.updateSections();
const markup = sections
.map((section) => this.sectionTemplate(section))
.join("");
document.getElementById("section-list").innerHTML += markup;
document.getElementById("section-title").innerHTML =
"Sections de <em> " + this.area.Name + "</em>";
sections.map((section) => {
document
.getElementById(`sections-section-edit-${section.ID}`)
.addEventListener("click", function () {
sectionHandler.editSection(section);
});
document
.getElementById(`sections-section-delete-${section.ID}`)
.addEventListener("click", function () {
new Delete(() => {
sectionHandler.deleteSection(section);
});
});
document
.getElementById(`sections-section-${section.ID}`)
.addEventListener("click", function () {
sectionHandler.activateSection(section);
sectionHandler.parent.deskHandler.section = section;
sectionHandler.parent.deskHandler.displayDesks();
document.getElementById("desk-new").setAttribute("disabled", "true");
});
});
document.getElementById(`section-new`).addEventListener("click", () => {
this.newSection(this.area);
});
}
emptySections() {
this.area = null;
document.getElementById("desks").style.display = "none";
}
sectionTemplate(section) {
return /* HTML */ `<div class="card card-list">
<div id="sections-section-${section.ID}" class="card-content clickable">
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
<div class="content">
<nav class="level">
<div class="level-left">
${section.Name}
</div>
<div class="level-right">
<a
id="sections-section-edit-${section.ID}"
class="button is-link is-small"
title="Modifier"
>
<span class="icon is-small">
<i class="fas fa-pen"></i>
</span>
</a>
<a
id="sections-section-delete-${section.ID}"
class="button is-danger is-small"
title="Supprimer"
>
<span class="icon is-small">
<i class="fas fa-times"></i>
</span>
</a>
</div>
</nav>
</div>
</div>
</div>`;
}
async activateSection(sectionToActivate) {
this.parent.deskHandler.emptyDesks();
let sections = await this.updateSections();
sections.forEach((section) => {
document
.getElementById(`sections-section-${section.ID}`)
.classList.remove("active-card");
});
document
.getElementById(`sections-section-${sectionToActivate.ID}`)
.classList.add("active-card");
}
newSection(area) {
this.method = "POST";
this.area = area;
document.getElementById("section-modal-id").value = null;
document.getElementById("section-modal-name").value = area.Name;
document.getElementById("section-modal-mapID").value = null;
Common.toggleModal("section-modal", "section-modal-card");
}
editSection(section) {
this.method = "PUT";
document.getElementById("section-modal-id").value = section.ID;
document.getElementById("section-modal-name").value = section.Name;
document.getElementById("section-modal-mapID").value = section.MapID;
Common.toggleModal("section-modal", "section-modal-card");
}
async saveSection() {
let section;
if (this.method == "POST")
document.getElementById("section-modal-id").value = null;
section = await this.SectionModel.saveSection(
this.method,
parseInt(document.getElementById("section-modal-id").value),
this.area.ID,
document.getElementById("section-modal-name").value,
document.getElementById("section-modal-mapID").value
Common.toggleModal("section-modal", "section-modal-card");
this.activateSection(section);
this.parent.deskHandler.section = section;
this.parent.deskHandler.displayDesks();
return section;
}
async updateSections() {
let sectionHandler = this;
let sections = await this.SectionModel.getSections();
return sections.filter(function (section) {
return section.AreaID == sectionHandler.area.ID;
});
}
async deleteSection(section) {
this.displaySections();
this.parent.deskHandler.emptyDesks();
}
async cloneSections(areaCloned, areaToClone) {
let sectionHandler = this;
await areaToClone.Sections.forEach(async (sectionToClone) => {
try {
sectionToClone = await sectionHandler.SectionModel.getSection(
sectionToClone.ID
);
let sectionCloned = await sectionHandler.SectionModel.saveSection(
"POST",
null,
areaCloned.ID,
await sectionHandler.parent.deskHandler.cloneDesks(
sectionCloned,
sectionToClone
);
} catch (e) {
Messages.Show("is-warning", e.message);
console.error(e);
}
});
}