BigW Consortium Gitlab

importer_status.js 2.85 KB
Newer Older
1
/* eslint-disable */
Fatih Acet committed
2 3 4 5 6 7 8 9 10 11 12 13
(function() {
  this.ImporterStatus = (function() {
    function ImporterStatus(jobs_url, import_url) {
      this.jobs_url = jobs_url;
      this.import_url = import_url;
      this.initStatusPage();
      this.setAutoUpdate();
    }

    ImporterStatus.prototype.initStatusPage = function() {
      $('.js-add-to-import').off('click').on('click', (function(_this) {
        return function(e) {
14
          var $btn, $namespace_input, $target_field, $tr, id, target_namespace, newName;
Fatih Acet committed
15 16 17
          $btn = $(e.currentTarget);
          $tr = $btn.closest('tr');
          $target_field = $tr.find('.import-target');
18
          $namespace_input = $target_field.find('.js-select-namespace option:selected');
Fatih Acet committed
19
          id = $tr.attr('id').replace('repo_', '');
20
          target_namespace = null;
21
          newName = null;
Fatih Acet committed
22
          if ($namespace_input.length > 0) {
23
            target_namespace = $namespace_input[0].innerHTML;
James Lopez committed
24
            newName = $target_field.find('#path').prop('value');
25
            $target_field.empty().append(target_namespace + "/" + newName);
Fatih Acet committed
26 27 28 29
          }
          $btn.disable().addClass('is-loading');
          return $.post(_this.import_url, {
            repo_id: id,
30
            target_namespace: target_namespace,
31
            new_name: newName
Fatih Acet committed
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 59 60 61 62 63 64 65 66 67 68 69 70 71 72
          }, {
            dataType: 'script'
          });
        };
      })(this));
      return $('.js-import-all').off('click').on('click', function(e) {
        var $btn;
        $btn = $(this);
        $btn.disable().addClass('is-loading');
        return $('.js-add-to-import').each(function() {
          return $(this).trigger('click');
        });
      });
    };

    ImporterStatus.prototype.setAutoUpdate = function() {
      return setInterval(((function(_this) {
        return function() {
          return $.get(_this.jobs_url, function(data) {
            return $.each(data, function(i, job) {
              var job_item, status_field;
              job_item = $("#project_" + job.id);
              status_field = job_item.find(".job-status");
              if (job.import_status === 'finished') {
                job_item.removeClass("active").addClass("success");
                return status_field.html('<span><i class="fa fa-check"></i> done</span>');
              } else if (job.import_status === 'started') {
                return status_field.html("<i class='fa fa-spinner fa-spin'></i> started");
              } else {
                return status_field.html(job.import_status);
              }
            });
          });
        };
      })(this)), 4000);
    };

    return ImporterStatus;

  })();

73 74 75 76
  $(function() {
    if ($('.js-importer-status').length) {
      var jobsImportPath = $('.js-importer-status').data('jobs-import-path');
      var importPath = $('.js-importer-status').data('import-path');
77

78 79 80
      new ImporterStatus(jobsImportPath, importPath);
    }
  });
Fatih Acet committed
81
}).call(this);