mirror of
				https://gitee.com/gitea/gitea
				synced 2025-11-04 16:40:24 +08:00 
			
		
		
		
	* Remove customized (unmaintained) dropdown, improve aria a11y for dropdown * fix repo permission * use action instead of onChange * re-order the CSS selector * fix dropdown behavior for repo permissions, make elements inside menu item non-focusable * use menu/menuitem instead of combobox/option. use tooltip(data-content) for aria-label, prevent from repeated attaching * click menu item when pressing Enter * code format * fix repo permission * repo setting: prevent from misleading users when error occurs * fine tune the repo collaboration access mode dropdown (in case the access mode is undefined in the template) Co-authored-by: zeripath <art27@cantab.net> Co-authored-by: techknowlogick <techknowlogick@gitea.io>
		
			
				
	
	
		
			93 lines
		
	
	
		
			3.1 KiB
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			93 lines
		
	
	
		
			3.1 KiB
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
import $ from 'jquery';
 | 
						|
import {createMonaco} from './codeeditor.js';
 | 
						|
import {initRepoCommonFilterSearchDropdown} from './repo-common.js';
 | 
						|
 | 
						|
const {appSubUrl, csrfToken} = window.config;
 | 
						|
 | 
						|
export function initRepoSettingsCollaboration() {
 | 
						|
  // Change collaborator access mode
 | 
						|
  $('.page-content.repository .ui.dropdown.access-mode').each((_, e) => {
 | 
						|
    const $dropdown = $(e);
 | 
						|
    const $text = $dropdown.find('> .text');
 | 
						|
    $dropdown.dropdown({
 | 
						|
      action(_text, value) {
 | 
						|
        const lastValue = $dropdown.attr('data-last-value');
 | 
						|
        $.post($dropdown.attr('data-url'), {
 | 
						|
          _csrf: csrfToken,
 | 
						|
          uid: $dropdown.attr('data-uid'),
 | 
						|
          mode: value,
 | 
						|
        }).fail(() => {
 | 
						|
          $text.text('(error)'); // prevent from misleading users when error occurs
 | 
						|
          $dropdown.attr('data-last-value', lastValue);
 | 
						|
        });
 | 
						|
        $dropdown.attr('data-last-value', value);
 | 
						|
        $dropdown.dropdown('hide');
 | 
						|
      },
 | 
						|
      onChange(_value, text, _$choice) {
 | 
						|
        $text.text(text); // update the text when using keyboard navigating
 | 
						|
      },
 | 
						|
      onHide() {
 | 
						|
        // set to the really selected value, defer to next tick to make sure `action` has finished its work because the calling order might be onHide -> action
 | 
						|
        setTimeout(() => {
 | 
						|
          const $item = $dropdown.dropdown('get item', $dropdown.attr('data-last-value'));
 | 
						|
          if ($item) {
 | 
						|
            $dropdown.dropdown('set selected', $dropdown.attr('data-last-value'));
 | 
						|
          } else {
 | 
						|
            $text.text('(N/A)'); // prevent from misleading users when the access mode is undefined
 | 
						|
          }
 | 
						|
        }, 0);
 | 
						|
      }
 | 
						|
    });
 | 
						|
  });
 | 
						|
}
 | 
						|
 | 
						|
export function initRepoSettingSearchTeamBox() {
 | 
						|
  const $searchTeamBox = $('#search-team-box');
 | 
						|
  $searchTeamBox.search({
 | 
						|
    minCharacters: 2,
 | 
						|
    apiSettings: {
 | 
						|
      url: `${appSubUrl}/org/${$searchTeamBox.data('org')}/teams/-/search?q={query}`,
 | 
						|
      headers: {'X-Csrf-Token': csrfToken},
 | 
						|
      onResponse(response) {
 | 
						|
        const items = [];
 | 
						|
        $.each(response.data, (_i, item) => {
 | 
						|
          const title = `${item.name} (${item.permission} access)`;
 | 
						|
          items.push({
 | 
						|
            title,
 | 
						|
          });
 | 
						|
        });
 | 
						|
 | 
						|
        return {results: items};
 | 
						|
      }
 | 
						|
    },
 | 
						|
    searchFields: ['name', 'description'],
 | 
						|
    showNoResults: false
 | 
						|
  });
 | 
						|
}
 | 
						|
 | 
						|
 | 
						|
export function initRepoSettingGitHook() {
 | 
						|
  if ($('.edit.githook').length === 0) return;
 | 
						|
  const filename = document.querySelector('.hook-filename').textContent;
 | 
						|
  const _promise = createMonaco($('#content')[0], filename, {language: 'shell'});
 | 
						|
}
 | 
						|
 | 
						|
export function initRepoSettingBranches() {
 | 
						|
  // Branches
 | 
						|
  if ($('.repository.settings.branches').length > 0) {
 | 
						|
    initRepoCommonFilterSearchDropdown('.protected-branches .dropdown');
 | 
						|
    $('.enable-protection, .enable-whitelist, .enable-statuscheck').on('change', function () {
 | 
						|
      if (this.checked) {
 | 
						|
        $($(this).data('target')).removeClass('disabled');
 | 
						|
      } else {
 | 
						|
        $($(this).data('target')).addClass('disabled');
 | 
						|
      }
 | 
						|
    });
 | 
						|
    $('.disable-whitelist').on('change', function () {
 | 
						|
      if (this.checked) {
 | 
						|
        $($(this).data('target')).addClass('disabled');
 | 
						|
      }
 | 
						|
    });
 | 
						|
  }
 | 
						|
}
 |