diff options
author | Denise sur Lya <sekhmet@lya> | 2021-07-25 12:19:23 +0200 |
---|---|---|
committer | Denise sur Lya <sekhmet@lya> | 2021-07-25 12:19:23 +0200 |
commit | 723d52a6793ba8003412f60f52e21cc2950d487f (patch) | |
tree | 707144e83f070c5ef18aab23b96c6e6c007e6280 /static | |
parent | 348a7b3607d7cd722e8d11765d7063a9df863db0 (diff) | |
download | oms-723d52a6793ba8003412f60f52e21cc2950d487f.tar.gz oms-723d52a6793ba8003412f60f52e21cc2950d487f.tar.zst oms-723d52a6793ba8003412f60f52e21cc2950d487f.zip |
Modif JS et HTML : message quand les courbes se calculent
Diffstat (limited to 'static')
-rw-r--r-- | static/requetes.js | 10 | ||||
-rw-r--r-- | static/style.css | 20 |
2 files changed, 17 insertions, 13 deletions
diff --git a/static/requetes.js b/static/requetes.js index ba2a81e..465366c 100644 --- a/static/requetes.js +++ b/static/requetes.js | |||
@@ -1,6 +1,7 @@ | |||
1 | 1 | ||
2 | function appelle_image() | 2 | function appelle_image() |
3 | { | 3 | { |
4 | affiche_statut("Calcul en cours...") ; | ||
4 | 5 | ||
5 | var formData = new FormData( document.getElementById("donnees_enfant") ); | 6 | var formData = new FormData( document.getElementById("donnees_enfant") ); |
6 | 7 | ||
@@ -82,6 +83,7 @@ function appelle_image() | |||
82 | ul2.appendChild(li); | 83 | ul2.appendChild(li); |
83 | } | 84 | } |
84 | } | 85 | } |
86 | affiche_statut("Courbes générées, scroller vers le bas pour les voir.") ; | ||
85 | } | 87 | } |
86 | else{ // si la génération de l'image a merdé | 88 | else{ // si la génération de l'image a merdé |
87 | 89 | ||
@@ -94,13 +96,14 @@ function appelle_image() | |||
94 | li.appendChild(document.createTextNode(liste_warnings[i])); | 96 | li.appendChild(document.createTextNode(liste_warnings[i])); |
95 | ul.appendChild(li); | 97 | ul.appendChild(li); |
96 | } | 98 | } |
97 | 99 | affiche_statut("Il y a eu une erreur à la génération des courbes, voir plus bas.") ; | |
98 | 100 | ||
99 | } | 101 | } |
100 | } | 102 | } |
101 | } | 103 | } |
102 | requete.open("POST","courbe/b64",true) | 104 | requete.open("POST","courbe/b64",true) |
103 | requete.send(formData) | 105 | requete.send(formData) |
106 | |||
104 | } | 107 | } |
105 | 108 | ||
106 | function nettoie_erreurs() | 109 | function nettoie_erreurs() |
@@ -147,3 +150,8 @@ function download_file(filename,mimetype,data) { | |||
147 | function upload_file(nomformulaire) { | 150 | function upload_file(nomformulaire) { |
148 | document.getElementById(nomformulaire).submit(); | 151 | document.getElementById(nomformulaire).submit(); |
149 | } | 152 | } |
153 | |||
154 | // Fonction pour afficher le statut des courbes | ||
155 | function affiche_statut(message) { | ||
156 | document.getElementById("statut_courbes").innerHTML = message ; | ||
157 | } | ||
diff --git a/static/style.css b/static/style.css index 4b82077..f72a546 100644 --- a/static/style.css +++ b/static/style.css | |||
@@ -21,6 +21,12 @@ h1 { | |||
21 | background: #ff8060; | 21 | background: #ff8060; |
22 | } | 22 | } |
23 | 23 | ||
24 | #statut_courbes { | ||
25 | color: #505050 ; | ||
26 | font-size: 0.9em ; | ||
27 | |||
28 | } | ||
29 | |||
24 | input[type="text"] { | 30 | input[type="text"] { |
25 | max-width: 20vw; | 31 | max-width: 20vw; |
26 | } | 32 | } |
@@ -46,28 +52,18 @@ img#courbe { | |||
46 | display: none; | 52 | display: none; |
47 | } | 53 | } |
48 | 54 | ||
49 | #courbe_warnings { | 55 | #courbe_warnings, #courbe_erreurs, #pref_graphique, #extra, #multi, #prema{ |
50 | display: none; | 56 | display: none; |
51 | } | 57 | } |
52 | 58 | ||
53 | #courbe_erreurs { | ||
54 | display: none; | ||
55 | } | ||
56 | 59 | ||
57 | #pref_graphique, #extra, #multi{ | ||
58 | display: none; | ||
59 | } | ||
60 | |||
61 | #prema { | ||
62 | display: none; | ||
63 | } | ||
64 | 60 | ||
65 | .enfants_cache_def{ | 61 | .enfants_cache_def{ |
66 | display: none; | 62 | display: none; |
67 | } | 63 | } |
68 | 64 | ||
69 | .icon_button { | 65 | .icon_button { |
70 | display: block; | 66 | #display: block; |
71 | cursor: pointer; | 67 | cursor: pointer; |
72 | position: relative; | 68 | position: relative; |
73 | } | 69 | } |