Blame view

js/init.js 2.74 KB
79bb411d   Geoffrey PREUD'HOMME   Possibilité de se...
1
2
3
4
5
6
7
8
9
10
11
  // Constantes
  var JETON_TAILLE = 30 // Taille d'un jeton
  var JETON_DUREE = 10*60 // Temps de validité du jeton en secondes
  
  var TRANSACTION_CREATION = 1
  var TRANSACTION_RECHARGEMENT = 2
  var TRANSACTION_PAIEMENT = 3
  var TRANSACTION_VIDANGE = 4
  
  var TRANSACTION_DUREE = 60
  
79bb411d   Geoffrey PREUD'HOMME   Possibilité de se...
12
  // Fonctions pour Materialize
bf26706c   Geoffrey PREUD'HOMME   Écran principal
13
14
15
  $(function(){
      $('.button-collapse').sideNav();
      $('.modal-trigger').leanModal()
2146d35a   Geoffrey PREUD'HOMME   Vue interactive
16
  });
bf26706c   Geoffrey PREUD'HOMME   Écran principal
17
  
2146d35a   Geoffrey PREUD'HOMME   Vue interactive
18
  // Application
79bb411d   Geoffrey PREUD'HOMME   Possibilité de se...
19
  
2146d35a   Geoffrey PREUD'HOMME   Vue interactive
20
21
22
23
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
  var app = new Vue({
      el: 'body',
      data: {
          nomApplication: "10⁵",
          connecte: false,
          erreurTitre: '',
          erreurMessage: '',
          date: 1,
      },
      methods: {
          // API
          apiBrute: function(chemin, donnees, cb) {
              $.post('api/' + chemin, donnees, function(data) {
                  cb(data['status'], data);
              })
          },
          // Affichage
          toast: function(texte) {
              Materialize.toast(texte, 4000);
          },
          erreur: function(retour, donnees) {
              this.erreurTitre = retour
              this.erreurMessage = donnees['message']
              $("#modalErreur").openModal();
          },
          // Fonctionnement
          connecter: function() {
              if (!this.peutConnecter) return
              var that = this;
              this.apiBrute("utilisateur/connexion", {login: this.login , mdp: this.mdp} , function(retour, donnees) {
                  that.mdp = ''
                  switch(retour) {
                      case "ok":
                          that.login = donnees.login
                          that.droit = donnees.droit
                          that.jeton = donnees.jeton
                          that.connecte = that.date
                          that.toast("Correctement identifié en tant que " + that.login + " pour 10 minutes")
                         break;
79bb411d   Geoffrey PREUD'HOMME   Possibilité de se...
59
  
2146d35a   Geoffrey PREUD'HOMME   Vue interactive
60
61
62
                      case "identifiants_invalides":
                          that.toast("Identifiants invalides")
                          break;
79bb411d   Geoffrey PREUD'HOMME   Possibilité de se...
63
  
2146d35a   Geoffrey PREUD'HOMME   Vue interactive
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
                      default:
                          that.erreur(retour, donnees);
                          break;
                  }
              })
          },
      },
      computed: {
          peutConnecter: function() {
              return this.login && this.mdp;
          },
          timer: function() {
              var secondes = this.connecte + JETON_DUREE - this.date
              return Math.floor(secondes/60) + ':' + (secondes % 60)
          }
      },
  })
79bb411d   Geoffrey PREUD'HOMME   Possibilité de se...
81
  
2146d35a   Geoffrey PREUD'HOMME   Vue interactive
82
83
84
  setInterval(function actualiserDate() {
      app.$data.date = Math.floor(Date.now()/1000)
  }, 1000);
79bb411d   Geoffrey PREUD'HOMME   Possibilité de se...
85
  
79bb411d   Geoffrey PREUD'HOMME   Possibilité de se...
86
87
  
  // Placeholder
bf26706c   Geoffrey PREUD'HOMME   Écran principal
88
89
90
91
92
93
94
95
96
97
  function vendu() {
      var interieur = $("<span>").text("Vendu 1 bière à KAE1EET2YI (15,30 € → 13,50 €) ").append(
              $("<a>").attr("href", "#!").text("Annuler")
          );
      Materialize.toast(interieur, 4000);
  }
  
  function soldeInsuffisant() {
      $("#soldeInsuffisant").openModal();
  }
79bb411d   Geoffrey PREUD'HOMME   Possibilité de se...