summaryrefslogtreecommitdiffstats
path: root/web_src/js/features/migration.js
blob: e4c306307f378946d1351ab8b35a82e27c4db48a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
const $service = $('#service_type');
const $user = $('#auth_username');
const $pass = $('#auth_password');
const $token = $('#auth_token');
const $items = $('#migrate_items').find('.field');

export default function initMigration() {
  checkAuth();

  $service.on('change', checkAuth);
  $user.on('keyup', () => {checkItems(false)});
  $pass.on('keyup', () => {checkItems(false)});
  $token.on('keyup', () => {checkItems(true)});

  const $cloneAddr = $('#clone_addr');
  $cloneAddr.on('change', () => {
    const $repoName = $('#repo_name');
    if ($cloneAddr.val().length > 0 && $repoName.val().length === 0) { // Only modify if repo_name input is blank
      $repoName.val($cloneAddr.val().match(/^(.*\/)?((.+?)(\.git)?)$/)[3]);
    }
  });
}

function checkAuth() {
  const serviceType = $service.val();
  const tokenAuth = $(`#service-${serviceType}`).data('token');

  if (tokenAuth) {
    $user.parent().addClass('disabled');
    $pass.parent().addClass('disabled');
    $token.parent().removeClass('disabled');
  } else {
    $user.parent().removeClass('disabled');
    $pass.parent().removeClass('disabled');
    $token.parent().addClass('disabled');
  }

  checkItems(tokenAuth);
}

function checkItems(tokenAuth) {
  let enableItems;
  if (tokenAuth) {
    enableItems = $token.val() !== '';
  } else {
    enableItems = $user.val() !== '' || $pass.val() !== '';
  }
  if (enableItems && $service.val() > 1) {
    $items.removeClass('disabled');
  } else {
    $items.addClass('disabled');
  }
}