mirror of
				https://codeberg.org/forgejo/forgejo.git
				synced 2025-10-31 06:21:11 +00:00 
			
		
		
		
	Step one for a GitHub like commit status check ui:    Step two:   The design now will list all commit status checks which takes too much space. This is a pre-improve for #26247 --------- Co-authored-by: delvh <dev.lh@web.de> Co-authored-by: silverwind <me@silverwind.io> Co-authored-by: wxiaoguang <wxiaoguang@gmail.com>
		
			
				
	
	
		
			12 lines
		
	
	
	
		
			620 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			12 lines
		
	
	
	
		
			620 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
| export function initRepoPullRequestCommitStatus() {
 | |
|   for (const btn of document.querySelectorAll('.commit-status-hide-checks')) {
 | |
|     const panel = btn.closest('.commit-status-panel');
 | |
|     const list = panel.querySelector('.commit-status-list');
 | |
|     btn.addEventListener('click', () => {
 | |
|       list.style.maxHeight = list.style.maxHeight ? '' : '0px'; // toggle
 | |
|       list.style.overflow = 'hidden'; // hide scrollbar when hiding
 | |
|       btn.textContent = btn.getAttribute(list.style.maxHeight ? 'data-show-all' : 'data-hide-all');
 | |
|     });
 | |
|     list.addEventListener('animationend', () => list.style.overflow = '');
 | |
|   }
 | |
| }
 |