Skip to content
Snippets Groups Projects
management.js 2.62 KiB
Newer Older
  • Learn to ignore specific revisions
  • // Imports
    
    import * as Election from "/components/management/genericElection.js";
    
    import * as Round from "/components/management/round.js";
    
    Alexis POYEN's avatar
    Alexis POYEN committed
    import * as Party from "/components/management/party.js";
    
    
    // DOM elements
    
    export async function mount(where) {
      const managementPage = new Management();
      await managementPage.mount(where);
    }
    
    class Management {
      constructor() {}
    
      async mount(where) {
        const mountpoint = where;
        document.getElementById(mountpoint).innerHTML = /* HTML */ `
          <div class="tabs is-boxed is-toggle is-fullwidth">
            <ul>
    
    Alexis POYEN's avatar
    Alexis POYEN committed
              <li id="parties">
                <a>
                  <span class="icon is-small"
                  ><i class="fab fa-old-republic" aria-hidden="true"></i
                  ></span>
                  <span>Partis Politiques</span>
                </a>
              </li>
    
              <li id="elections" class="is-active">
    
                <a>
                  <span class="icon is-small"
                    ><i class="fas fa-vote-yea" aria-hidden="true"></i
                  ></span>
                  <span>Election</span>
                </a>
              </li>
    
              <li id="rounds">
    
                <a>
                  <span class="icon is-small"
    
    Alexis POYEN's avatar
    Alexis POYEN committed
                    ><i class="fas fa-person-booth" aria-hidden="true"></i
    
                  ></span>
                  <span>Tour</span>
                </a>
              </li>
            </ul>
          </div>
    
          <section id="management-section" style="margin-bottom: 230px;"></section>
    
        `;
        this.handleDom();
    
    Alexis POYEN's avatar
    Alexis POYEN committed
        document.getElementById("elections").click();
    
    Alexis POYEN's avatar
    Alexis POYEN committed
      handleDom() {
        document
          .getElementById("parties")
          .addEventListener("click", async function () {
            await Party.mount("management-section");
            document.getElementById("elections").setAttribute("class", "");
            document.getElementById("rounds").setAttribute("class", "");
            document.getElementById("parties").setAttribute("class", "is-active");
          });
        document
          .getElementById("elections")
          .addEventListener("click", async function () {
    
            await Election.mount("management-section");
    
    Alexis POYEN's avatar
    Alexis POYEN committed
            document.getElementById("rounds").setAttribute("class", "");
            document.getElementById("parties").setAttribute("class", "");
            document.getElementById("elections").setAttribute("class", "is-active");
          });
        document
          .getElementById("rounds")
          .addEventListener("click", async function () {
    
            await Round.mount("management-section");
    
    Alexis POYEN's avatar
    Alexis POYEN committed
            document.getElementById("elections").setAttribute("class", "");
            document.getElementById("parties").setAttribute("class", "");
            document.getElementById("rounds").setAttribute("class", "is-active");