From c3540b43106c187fad59f05688c3e9f6503d9b2e Mon Sep 17 00:00:00 2001
From: CyrilM <mammar@lal.in2p3.fr>
Date: Thu, 6 Sep 2018 16:20:26 +0200
Subject: [PATCH] Try to create a hierarchy for add label.

---
 app/templates/add_new_tuto.html | 32 ++++++++++++++++++++++++++++----
 1 file changed, 28 insertions(+), 4 deletions(-)

diff --git a/app/templates/add_new_tuto.html b/app/templates/add_new_tuto.html
index fe4ad8d..39c604e 100644
--- a/app/templates/add_new_tuto.html
+++ b/app/templates/add_new_tuto.html
@@ -14,6 +14,11 @@
 				<br>
 			</span>
 			{{ labels_add }}
+			<br>
+			<span v-for='(value, index) in all_labels'>
+				<span v-if="value[2] == 1"><ul>{{ value[1] }}</span>
+				<span v-else></span></ul><li>{{ value[1] }}</li></span>
+			</span>
 		</div>
 
 		<div id='form'>
@@ -42,13 +47,28 @@
 			return (result);
 		}
 
+		function get_all_childs_of_father(tab_labels, father_id) {
+   			/**
+   			* Gets all the childs (label id) from a father.
+   			*/
+   			var childs = [];
+  			for (var i = 0; tab_labels[i]; i++) {
+  		      	if (tab_labels[i][2] == father_id) {
+   		        childs.push(tab_labels[i][0])
+   		        childs = childs.concat(get_all_childs_of_father(tab_labels, tab_labels[i][0]));
+   		    	}
+    		}
+  			return (childs);
+		}
+
 		var hierarchy = new Vue({
 			el: '#hierarchy',
 			data: {
 				all_labels: [],
 				table: order_intent_labels_tab(),
 				is_active: create_empty_tab(40),
-				labels_add: []
+				labels_add: [],
+				ok: [1, 0, 1, 0, 0, 1, 0, 0]
 			},
 			methods: {
 				activate_lo: function (index) {
@@ -61,14 +81,18 @@
 					document.form1.labels.value = this.labels_add;
 				},
 				get_all_labels: function() {
-					this.all_labels = JSON.parse(request_ajax("labels"));
+					return (JSON.parse(request_ajax("labels")));
 				} 
 			}
 		});
-		/*hierarchy.all_labels = hierarchy.get_all_labels();
+		hierarchy.all_labels = hierarchy.get_all_labels();
 		for (var i = 0; hierarchy.all_labels[i]; i++) {
 			console.log(get_all_childs_of_father(hierarchy.all_labels, hierarchy.all_labels[i][0]));
-		}*/
+		}
+
+		for (var i = 0; hierarchy.all_labels[i]; i++) {
+			hierarchy.all_labels[i][2] = hierarchy.ok[i];
+		}
 
 	</script>
 
-- 
GitLab