Возникли проблемы при создании выпадающего ввода с динамическими параметрами для формы Flask - PullRequest
0 голосов
/ 29 августа 2018

У меня есть следующий HTML-файл, в котором я пытаюсь создать многошаговую форму, где некоторые из входных данных могут быть раскрывающимися. Ранее я мог заставить это работать, используя только метод SelectField Flask в классе wtform (как показано ниже), но это уже не работает.

class InputForm(FlaskForm):

    stack_name = StringField('STACK NAME', validators=[validators.required()])
    deploy_bucket = SelectField('PIPELINE DEPLOYMENT BUCKET', validators=[validators.required()])
    qc = SelectField('QC', choices=[("", "---"), ("","BAM"), ("","VCF")])

@app.route('/', methods=['GET', 'POST'])
def pipeline():

    form = InputForm(request.form)
    form.deploy_bucket.choices = [("", "---")] + [("", bucket["Name"]) for bucket in app.config['S3_CLIENT'].list_buckets()["Buckets"]]

    if request.method == 'POST':
        try:
            STACK_NAME = form.stack_name.data
            DEPLOY_BUCKET = form.deploy_bucket.data
            QC = form.qc.data

Я окружил поля ввода, которые я хочу выпустить с помощью <select>. Некоторые из моих «выпадающих» входов будут иметь фиксированные параметры, в то время как другие будут иметь динамические параметры, для которых последний будет поступать из API-вызова в AWS в пределах app.py. Я знаю, что для фиксированных опций я могу просто использовать <select> и <option>, но как правильно настроить раскрывающийся ввод в html-файле ниже для динамических опций? См. Мою попытку в html-файле ниже.

(Примечание: deploy_bucket_options передается в html-файл из моего app.py и определяется там как form.resource_cfn_tmpl_deploy_bucket.choices = [("", "---")] + [("", bucket["Name"]) for bucket in app.config['S3_CLIENT'].list_buckets()["Buckets"]])

HTML / JS

{% extends 'layout.html' %}

{% block body %}

<form method="POST" id="regForm" action="">
  <h1>Pipeline Input</h1>
  <br>
  <!-- One "tab" for each step in the form: -->
  <div class="tab">Pipeline Infrastructure:
    <p><input placeholder="Stack name..." oninput="this.className = ''" name="stack_name"></p>

    <!-- Here is a dynamic option input, not sure what to do here! -->

    <p><select placeholder="Deploy bucket..." oninput="this.className = ''" name="deploy_bucket">
    {% for option in deploy_bucket_options %}
         <option value="{{ option }}">{{ option }}</option>
    {% endfor %}
    </select>

    <!-- Fixed option input -->

  <select placeholder="QC..." oninput="this.className = ''" name="qc">
    <option value="---">---</option>
    <option value="BAM">BAM</option>
    <option value="VCF">VCF</option>
  </select>
  </div>
</form>

<script>
var currentTab = 0; // Current tab is set to be the first tab (0)
showTab(currentTab); // Display the crurrent tab

function showTab(n) {
  // This function will display the specified tab of the form...
  var x = document.getElementsByClassName("tab");
  x[n].style.display = "block";
  //... and fix the Previous/Next buttons:
  if (n == 0) {
    document.getElementById("prevBtn").style.display = "none";
  } else {
    document.getElementById("prevBtn").style.display = "inline";
  }
  if (n == (x.length - 1)) {
    document.getElementById("nextBtn").innerHTML = "Submit";
  } else {
    document.getElementById("nextBtn").innerHTML = "Next";
  }
  //... and run a function that will display the correct step indicator:
  fixStepIndicator(n)
}

function nextPrev(n) {
  // This function will figure out which tab to display
  var x = document.getElementsByClassName("tab");
  // Exit the function if any field in the current tab is invalid:
  if (n == 1 && !validateForm()) return false;
  // Hide the current tab:
  x[currentTab].style.display = "none";
  // Increase or decrease the current tab by 1:
  currentTab = currentTab + n;
  // if you have reached the end of the form...
  if (currentTab >= x.length) {
    // ... the form gets submitted:
    document.getElementById("regForm").submit();
    return false;
  }
  // Otherwise, display the correct tab:
  showTab(currentTab);
}

function validateForm() {
  // This function deals with validation of the form fields
  var x, y, i, valid = true;
  x = document.getElementsByClassName("tab");
  y = x[currentTab].getElementsByTagName("input");
  // A loop that checks every input field in the current tab:
  for (i = 0; i < y.length; i++) {
    // If a field is empty...
    if (y[i].value == "") {
      // add an "invalid" class to the field:
      y[i].className += " invalid";
      // and set the current valid status to false
      valid = false;
    }
  }
  // If the valid status is true, mark the step as finished and valid:
  if (valid) {
    document.getElementsByClassName("step")[currentTab].className += " finish";
  }
  return valid; // return the valid status
}

function fixStepIndicator(n) {
  // This function removes the "active" class of all steps...
  var i, x = document.getElementsByClassName("step");
  for (i = 0; i < x.length; i++) {
    x[i].className = x[i].className.replace(" active", "");
  }
  //... and adds the "active" class on the current step:
  x[n].className += " active";
}
</script>

{% endblock %}
...