Skip to content
Snippets Groups Projects
vote-model.js 2.36 KiB
Newer Older
  • Learn to ignore specific revisions
  • import * as Messages from "/services/messages/messages.js";
    
    let voteModel;
    
    export function getVoteModel() {
      if (voteModel == null) {
        voteModel = new VoteModel();
      }
      return voteModel;
    }
    
    class VoteModel {
      constructor() {}
    
      async getVote(id) {
        if (this.votes == null) await this.refreshVotes();
        let voteToGet;
        this.votes.forEach((vote) => {
          if (vote.ID == id) voteToGet = vote;
        });
        return voteToGet;
      }
    
      async getVotes() {
        if (this.votes == null) {
          try {
            const response = await fetch("/api/Vote/", {
              method: "GET",
              headers: new Headers({
                "XSRF-Token": this.current_user.xsrftoken,
              }),
            });
            if (response.status !== 200) {
              throw new Error(
                `Votes could not be fetched (status ${response.status})`
              );
            }
            this.votes = await response.json();
          } catch (e) {
            Messages.Show("is-warning", e.message);
            console.error(e);
          }
        }
        return this.votes;
      }
    
      async saveVote(
        method,
        DeskRoundID,
        CandidateListID,
        VoiceNumber,
        Blank,
        NullVote
      ) {
        try {
    
    Alexis POYEN's avatar
    Alexis POYEN committed
          const response = await fetch("/api/Vote/", {
    
            method: method,
            headers: new Headers({
              "XSRF-Token": this.current_user.xsrftoken,
            }),
            body: JSON.stringify({
              DeskRoundID: DeskRoundID,
              CandidateListID: CandidateListID,
              VoiceNumber: VoiceNumber,
              Blank: Blank,
              NullVote: NullVote,
            }),
          });
          if (response.status !== 200) {
            throw new Error(
              `Vote could not be updated or created (status ${response.status})`
            );
          }
          return await response.json();
        } catch (e) {
          Messages.Show("is-warning", e.message);
          console.error(e);
          return;
        }
      }
    
      async deleteVote(ID) {
        try {
          const response = await fetch("/api/Vote/" + ID, {
            method: "delete",
            headers: new Headers({
              "XSRF-Token": this.current_user.xsrftoken,
            }),
          });
          if (response.status !== 200) {
            throw new Error(
              `Vote could not be deleted (status ${response.status})`
            );
          }
        } catch (e) {
          Messages.Show("is-warning", e.message);
          console.error(e);
        }
      }
    
      async refreshVotes() {
        this.votes = null;
        await this.getVotes();
      }
    }