mirror of
				https://gitee.com/gitea/gitea
				synced 2025-11-04 16:40:24 +08:00 
			
		
		
		
	Split index.js to separate files (#17315)
				
					
				
			* split `index.js` to separate files
* tune clipboard
* fix promise
* fix document
* remove intermediate empty file
* fix async event listener
* use `export function` instead of `export {}`, add more comments
Co-authored-by: Lunny Xiao <xiaolunwen@gmail.com>
Co-authored-by: 6543 <6543@obermui.de>
			
			
This commit is contained in:
		
							
								
								
									
										100
									
								
								web_src/js/features/repo-common.js
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										100
									
								
								web_src/js/features/repo-common.js
									
									
									
									
									
										Normal file
									
								
							@@ -0,0 +1,100 @@
 | 
			
		||||
const {csrf} = window.config;
 | 
			
		||||
 | 
			
		||||
function getArchive($target, url, first) {
 | 
			
		||||
  $.ajax({
 | 
			
		||||
    url,
 | 
			
		||||
    type: 'POST',
 | 
			
		||||
    data: {
 | 
			
		||||
      _csrf: csrf,
 | 
			
		||||
    },
 | 
			
		||||
    complete(xhr) {
 | 
			
		||||
      if (xhr.status === 200) {
 | 
			
		||||
        if (!xhr.responseJSON) {
 | 
			
		||||
          // XXX Shouldn't happen?
 | 
			
		||||
          $target.closest('.dropdown').children('i').removeClass('loading');
 | 
			
		||||
          return;
 | 
			
		||||
        }
 | 
			
		||||
 | 
			
		||||
        if (!xhr.responseJSON.complete) {
 | 
			
		||||
          $target.closest('.dropdown').children('i').addClass('loading');
 | 
			
		||||
          // Wait for only three quarters of a second initially, in case it's
 | 
			
		||||
          // quickly archived.
 | 
			
		||||
          setTimeout(() => {
 | 
			
		||||
            getArchive($target, url, false);
 | 
			
		||||
          }, first ? 750 : 2000);
 | 
			
		||||
        } else {
 | 
			
		||||
          // We don't need to continue checking.
 | 
			
		||||
          $target.closest('.dropdown').children('i').removeClass('loading');
 | 
			
		||||
          window.location.href = url;
 | 
			
		||||
        }
 | 
			
		||||
      }
 | 
			
		||||
    },
 | 
			
		||||
  });
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
export function initRepoArchiveLinks() {
 | 
			
		||||
  $('.archive-link').on('click', function (event) {
 | 
			
		||||
    event.preventDefault();
 | 
			
		||||
    const url = $(this).data('url');
 | 
			
		||||
    if (!url) return;
 | 
			
		||||
    getArchive($(event.target), url, true);
 | 
			
		||||
  });
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
export function initRepoClone() {
 | 
			
		||||
  // Quick start and repository home
 | 
			
		||||
  $('#repo-clone-ssh').on('click', function () {
 | 
			
		||||
    $('.clone-url').text($(this).data('link'));
 | 
			
		||||
    $('#repo-clone-url').val($(this).data('link'));
 | 
			
		||||
    $(this).addClass('primary');
 | 
			
		||||
    $('#repo-clone-https').removeClass('primary');
 | 
			
		||||
    localStorage.setItem('repo-clone-protocol', 'ssh');
 | 
			
		||||
  });
 | 
			
		||||
  $('#repo-clone-https').on('click', function () {
 | 
			
		||||
    $('.clone-url').text($(this).data('link'));
 | 
			
		||||
    $('#repo-clone-url').val($(this).data('link'));
 | 
			
		||||
    $(this).addClass('primary');
 | 
			
		||||
    if ($('#repo-clone-ssh').length > 0) {
 | 
			
		||||
      $('#repo-clone-ssh').removeClass('primary');
 | 
			
		||||
      localStorage.setItem('repo-clone-protocol', 'https');
 | 
			
		||||
    }
 | 
			
		||||
  });
 | 
			
		||||
  $('#repo-clone-url').on('click', function () {
 | 
			
		||||
    $(this).select();
 | 
			
		||||
  });
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
export function initRepoCommonBranchOrTagDropdown(selector) {
 | 
			
		||||
  $(selector).each(function () {
 | 
			
		||||
    const $dropdown = $(this);
 | 
			
		||||
    $dropdown.find('.reference.column').on('click', function () {
 | 
			
		||||
      $dropdown.find('.scrolling.reference-list-menu').hide();
 | 
			
		||||
      $($(this).data('target')).show();
 | 
			
		||||
      return false;
 | 
			
		||||
    });
 | 
			
		||||
  });
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
export function initRepoCommonFilterSearchDropdown(selector) {
 | 
			
		||||
  const $dropdown = $(selector);
 | 
			
		||||
  $dropdown.dropdown({
 | 
			
		||||
    fullTextSearch: true,
 | 
			
		||||
    selectOnKeydown: false,
 | 
			
		||||
    onChange(_text, _value, $choice) {
 | 
			
		||||
      if ($choice.data('url')) {
 | 
			
		||||
        window.location.href = $choice.data('url');
 | 
			
		||||
      }
 | 
			
		||||
    },
 | 
			
		||||
    message: {noResults: $dropdown.data('no-results')},
 | 
			
		||||
  });
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
export function initRepoCommonLanguageStats() {
 | 
			
		||||
  // Language stats
 | 
			
		||||
  if ($('.language-stats').length > 0) {
 | 
			
		||||
    $('.language-stats').on('click', (e) => {
 | 
			
		||||
      e.preventDefault();
 | 
			
		||||
      $('.language-stats-details, .repository-menu').slideToggle();
 | 
			
		||||
    });
 | 
			
		||||
  }
 | 
			
		||||
}
 | 
			
		||||
		Reference in New Issue
	
	Block a user