aboutsummaryrefslogtreecommitdiff
path: root/qc_app/static/js/select_platform.js
diff options
context:
space:
mode:
authorFrederick Muriuki Muriithi2024-07-25 11:07:33 -0500
committerFrederick Muriuki Muriithi2024-07-25 14:34:09 -0500
commit754e8f214b940e05298cb360ed829f5c685d55a5 (patch)
tree62c2c5b601746621f0949b38937ad232f006dee2 /qc_app/static/js/select_platform.js
parentde9e1b9fe37928b864bea28b408de6c14d04526b (diff)
downloadgn-uploader-754e8f214b940e05298cb360ed829f5c685d55a5.tar.gz
Rename module: qc_app --> uploader
Diffstat (limited to 'qc_app/static/js/select_platform.js')
-rw-r--r--qc_app/static/js/select_platform.js70
1 files changed, 0 insertions, 70 deletions
diff --git a/qc_app/static/js/select_platform.js b/qc_app/static/js/select_platform.js
deleted file mode 100644
index 4fdd865..0000000
--- a/qc_app/static/js/select_platform.js
+++ /dev/null
@@ -1,70 +0,0 @@
-function radio_column(chip) {
- col = document.createElement("td");
- radio = document.createElement("input");
- radio.setAttribute("type", "radio");
- radio.setAttribute("name", "genechipid");
- radio.setAttribute("value", chip["GeneChipId"]);
- radio.setAttribute("required", "required");
- col.appendChild(radio);
- return col;
-}
-
-function setup_genechips(genechip_data) {
- columns = ["GeneChipId", "GeneChipName"]
- submit_button = document.querySelector(
- "#select-platform-form button[type='submit']");
- elt = document.getElementById(
- "genechips-table").getElementsByTagName("tbody")[0];
- remove_children(elt);
- if((genechip_data === undefined) || genechip_data.length === 0) {
- row = document.createElement("tr");
- col = document.createElement("td");
- col.setAttribute("colspan", "3");
- text = document.createTextNode("No chips found for selected species");
- col.appendChild(text);
- row.appendChild(col);
- elt.appendChild(row);
- submit_button.setAttribute("disabled", true);
- return false;
- }
-
- submit_button.removeAttribute("disabled")
- genechip_data.forEach(chip => {
- row = document.createElement("tr");
- row.appendChild(radio_column(chip));
- columns.forEach(column => {
- col = document.createElement("td");
- content = document.createTextNode(chip[column]);
- col.appendChild(content);
- row.appendChild(col);
- });
- elt.appendChild(row);
- });
-}
-
-function genechips() {
- return JSON.parse(
- document.getElementById("select-platform-form").getAttribute(
- "data-genechips"));
-}
-
-function update_genechips(event) {
- genec = genechips();
-
- species_elt = document.getElementById("species");
-
- if(event.target == species_elt) {
- setup_genechips(genec[species_elt.value.toLowerCase()]);
- }
-}
-
-function select_row_radio(row) {
- radio = row.getElementsByTagName(
- "td")[0].getElementsByTagName(
- "input")[0];
- if(radio === undefined) {
- return false;
- }
- radio.setAttribute("checked", "checked");
- return true;
-}