admin.js 1.58 KB
Newer Older
Phil Hughes's avatar
Phil Hughes committed
1
import { refreshCurrentPage } from '../../lib/utils/url_utility';
2

3 4 5 6 7 8 9
function showBlacklistType() {
  if ($('input[name="blacklist_type"]:checked').val() === 'file') {
    $('.blacklist-file').show();
    $('.blacklist-raw').hide();
  } else {
    $('.blacklist-file').hide();
    $('.blacklist-raw').show();
10
  }
11
}
Fatih Acet's avatar
Fatih Acet committed
12

13 14 15 16 17 18
export default function adminInit() {
  const modal = $('.change-owner-holder');

  $('input#user_force_random_password').on('change', function randomPasswordClick() {
    const $elems = $('#user_password, #user_password_confirmation');
    if ($(this).attr('checked')) {
Jacob Schatz's avatar
Jacob Schatz committed
19
      $elems.val('').prop('disabled', true);
20
    } else {
Jacob Schatz's avatar
Jacob Schatz committed
21
      $elems.prop('disabled', false);
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 54 55 56 57 58 59
    }
  });

  $('body').on('click', '.js-toggle-colors-link', (e) => {
    e.preventDefault();
    $('.js-toggle-colors-container').toggle();
  });

  $('.log-tabs a').on('click', function logTabsClick(e) {
    e.preventDefault();
    $(this).tab('show');
  });

  $('.log-bottom').on('click', (e) => {
    e.preventDefault();
    const $visibleLog = $('.file-content:visible');
    $visibleLog.animate({
      scrollTop: $visibleLog.find('ol').height(),
    }, 'fast');
  });

  $('.change-owner-link').on('click', function changeOwnerLinkClick(e) {
    e.preventDefault();
    $(this).hide();
    modal.show();
  });

  $('.change-owner-cancel-link').on('click', (e) => {
    e.preventDefault();
    modal.hide();
    $('.change-owner-link').show();
  });

  $('li.project_member, li.group_member').on('ajax:success', refreshCurrentPage);

  $("input[name='blacklist_type']").on('click', showBlacklistType);
  showBlacklistType();
}