mirror of
				https://github.com/go-gitea/gitea.git
				synced 2025-11-04 05:25:15 +01:00 
			
		
		
		
	As per https://github.com/go-gitea/gitea/pull/30115#discussion_r1626060164, prefer `querySelector` by enabling [`unicorn/prefer-query-selector`](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/main/docs/rules/prefer-query-selector.md) and autofixing all except 10 issues. According to [this](https://old.reddit.com/r/learnjavascript/comments/i0f5o8/performance_of_getelementbyid_vs_queryselector/), querySelector may be faster as well, so it's a win-win. --------- Co-authored-by: wxiaoguang <wxiaoguang@gmail.com> Co-authored-by: Giteabot <teabot@gitea.io>
		
			
				
	
	
		
			64 lines
		
	
	
		
			1.8 KiB
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			64 lines
		
	
	
		
			1.8 KiB
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
import {hideElem, showElem} from '../utils/dom.js';
 | 
						|
import {GET, POST} from '../modules/fetch.js';
 | 
						|
 | 
						|
const {appSubUrl} = window.config;
 | 
						|
 | 
						|
export function initRepoMigrationStatusChecker() {
 | 
						|
  const repoMigrating = document.querySelector('#repo_migrating');
 | 
						|
  if (!repoMigrating) return;
 | 
						|
 | 
						|
  document.querySelector('#repo_migrating_retry').addEventListener('click', doMigrationRetry);
 | 
						|
 | 
						|
  const task = repoMigrating.getAttribute('data-migrating-task-id');
 | 
						|
 | 
						|
  // returns true if the refresh still needs to be called after a while
 | 
						|
  const refresh = async () => {
 | 
						|
    const res = await GET(`${appSubUrl}/user/task/${task}`);
 | 
						|
    if (res.status !== 200) return true; // continue to refresh if network error occurs
 | 
						|
 | 
						|
    const data = await res.json();
 | 
						|
 | 
						|
    // for all status
 | 
						|
    if (data.message) {
 | 
						|
      document.querySelector('#repo_migrating_progress_message').textContent = data.message;
 | 
						|
    }
 | 
						|
 | 
						|
    // TaskStatusFinished
 | 
						|
    if (data.status === 4) {
 | 
						|
      window.location.reload();
 | 
						|
      return false;
 | 
						|
    }
 | 
						|
 | 
						|
    // TaskStatusFailed
 | 
						|
    if (data.status === 3) {
 | 
						|
      hideElem('#repo_migrating_progress');
 | 
						|
      hideElem('#repo_migrating');
 | 
						|
      showElem('#repo_migrating_retry');
 | 
						|
      showElem('#repo_migrating_failed');
 | 
						|
      showElem('#repo_migrating_failed_image');
 | 
						|
      document.querySelector('#repo_migrating_failed_error').textContent = data.message;
 | 
						|
      return false;
 | 
						|
    }
 | 
						|
 | 
						|
    return true; // continue to refresh
 | 
						|
  };
 | 
						|
 | 
						|
  const syncTaskStatus = async () => {
 | 
						|
    let doNextRefresh = true;
 | 
						|
    try {
 | 
						|
      doNextRefresh = await refresh();
 | 
						|
    } finally {
 | 
						|
      if (doNextRefresh) {
 | 
						|
        setTimeout(syncTaskStatus, 2000);
 | 
						|
      }
 | 
						|
    }
 | 
						|
  };
 | 
						|
 | 
						|
  syncTaskStatus(); // no await
 | 
						|
}
 | 
						|
 | 
						|
async function doMigrationRetry(e) {
 | 
						|
  await POST(e.target.getAttribute('data-migrating-task-retry-url'));
 | 
						|
  window.location.reload();
 | 
						|
}
 |