mirror of
				https://github.com/go-gitea/gitea.git
				synced 2025-10-29 09:56:25 +01:00 
			
		
		
		
	Rewrite a lot of legacy strange code, remove duplicate code, remove jquery, and make these filters reusable. Let's forget the old code, new code affects: * issue list open/close switch * issue list filter (label, author, assignee) * milestone list open/close switch * milestone issue list filter (label, author, assignee) * project view (label, assignee)
		
			
				
	
	
		
			229 lines
		
	
	
		
			8.7 KiB
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
			
		
		
	
	
			229 lines
		
	
	
		
			8.7 KiB
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
| import {updateIssuesMeta} from './repo-common.ts';
 | |
| import {toggleElem, isElemHidden, queryElems} from '../utils/dom.ts';
 | |
| import {htmlEscape} from 'escape-goat';
 | |
| import {confirmModal} from './comp/ConfirmModal.ts';
 | |
| import {showErrorToast} from '../modules/toast.ts';
 | |
| import {createSortable} from '../modules/sortable.ts';
 | |
| import {DELETE, POST} from '../modules/fetch.ts';
 | |
| import {parseDom} from '../utils.ts';
 | |
| import {fomanticQuery} from '../modules/fomantic/base.ts';
 | |
| 
 | |
| function initRepoIssueListCheckboxes() {
 | |
|   const issueSelectAll = document.querySelector<HTMLInputElement>('.issue-checkbox-all');
 | |
|   if (!issueSelectAll) return; // logged out state
 | |
|   const issueCheckboxes = document.querySelectorAll<HTMLInputElement>('.issue-checkbox');
 | |
| 
 | |
|   const syncIssueSelectionState = () => {
 | |
|     const checkedCheckboxes = Array.from(issueCheckboxes).filter((el) => el.checked);
 | |
|     const anyChecked = Boolean(checkedCheckboxes.length);
 | |
|     const allChecked = anyChecked && checkedCheckboxes.length === issueCheckboxes.length;
 | |
| 
 | |
|     if (allChecked) {
 | |
|       issueSelectAll.checked = true;
 | |
|       issueSelectAll.indeterminate = false;
 | |
|     } else if (anyChecked) {
 | |
|       issueSelectAll.checked = false;
 | |
|       issueSelectAll.indeterminate = true;
 | |
|     } else {
 | |
|       issueSelectAll.checked = false;
 | |
|       issueSelectAll.indeterminate = false;
 | |
|     }
 | |
|     // if any issue is selected, show the action panel, otherwise show the filter panel
 | |
|     toggleElem('#issue-filters', !anyChecked);
 | |
|     toggleElem('#issue-actions', anyChecked);
 | |
|     // there are two panels but only one select-all checkbox, so move the checkbox to the visible panel
 | |
|     const panels = document.querySelectorAll('#issue-filters, #issue-actions');
 | |
|     const visiblePanel = Array.from(panels).find((el) => !isElemHidden(el));
 | |
|     const toolbarLeft = visiblePanel.querySelector('.issue-list-toolbar-left');
 | |
|     toolbarLeft.prepend(issueSelectAll);
 | |
|   };
 | |
| 
 | |
|   for (const el of issueCheckboxes) {
 | |
|     el.addEventListener('change', syncIssueSelectionState);
 | |
|   }
 | |
| 
 | |
|   issueSelectAll.addEventListener('change', () => {
 | |
|     for (const el of issueCheckboxes) {
 | |
|       el.checked = issueSelectAll.checked;
 | |
|     }
 | |
|     syncIssueSelectionState();
 | |
|   });
 | |
| 
 | |
|   queryElems(document, '.issue-action', (el) => el.addEventListener('click',
 | |
|     async (e: MouseEvent) => {
 | |
|       e.preventDefault();
 | |
| 
 | |
|       const url = el.getAttribute('data-url');
 | |
|       let action = el.getAttribute('data-action');
 | |
|       let elementId = el.getAttribute('data-element-id');
 | |
|       const issueIDList: string[] = [];
 | |
|       for (const el of document.querySelectorAll('.issue-checkbox:checked')) {
 | |
|         issueIDList.push(el.getAttribute('data-issue-id'));
 | |
|       }
 | |
|       const issueIDs = issueIDList.join(',');
 | |
|       if (!issueIDs) return;
 | |
| 
 | |
|       // for assignee
 | |
|       if (elementId === '0' && url.endsWith('/assignee')) {
 | |
|         elementId = '';
 | |
|         action = 'clear';
 | |
|       }
 | |
| 
 | |
|       // for toggle
 | |
|       if (action === 'toggle' && e.altKey) {
 | |
|         action = 'toggle-alt';
 | |
|       }
 | |
| 
 | |
|       // for delete
 | |
|       if (action === 'delete') {
 | |
|         const confirmText = el.getAttribute('data-action-delete-confirm');
 | |
|         if (!await confirmModal({content: confirmText, confirmButtonColor: 'red'})) {
 | |
|           return;
 | |
|         }
 | |
|       }
 | |
| 
 | |
|       try {
 | |
|         await updateIssuesMeta(url, action, issueIDs, elementId);
 | |
|         window.location.reload();
 | |
|       } catch (err) {
 | |
|         showErrorToast(err.responseJSON?.error ?? err.message);
 | |
|       }
 | |
|     },
 | |
|   ));
 | |
| }
 | |
| 
 | |
| function initDropdownUserRemoteSearch(el: Element) {
 | |
|   let searchUrl = el.getAttribute('data-search-url');
 | |
|   const actionJumpUrl = el.getAttribute('data-action-jump-url');
 | |
|   const selectedUserId = parseInt(el.getAttribute('data-selected-user-id'));
 | |
|   let selectedUsername = '';
 | |
|   if (!searchUrl.includes('?')) searchUrl += '?';
 | |
|   const $searchDropdown = fomanticQuery(el);
 | |
|   const elSearchInput = el.querySelector<HTMLInputElement>('.ui.search input');
 | |
|   const elItemFromInput = el.querySelector('.menu > .item-from-input');
 | |
| 
 | |
|   $searchDropdown.dropdown('setting', {
 | |
|     fullTextSearch: true,
 | |
|     selectOnKeydown: false,
 | |
|     action: (_text, value) => {
 | |
|       window.location.href = actionJumpUrl.replace('{username}', encodeURIComponent(value));
 | |
|     },
 | |
|   });
 | |
| 
 | |
|   type ProcessedResult = {value: string, name: string};
 | |
|   const processedResults: ProcessedResult[] = []; // to be used by dropdown to generate menu items
 | |
|   const syncItemFromInput = () => {
 | |
|     elItemFromInput.setAttribute('data-value', elSearchInput.value);
 | |
|     elItemFromInput.textContent = elSearchInput.value;
 | |
|     toggleElem(elItemFromInput, !processedResults.length);
 | |
|   };
 | |
| 
 | |
|   if (!searchUrl) {
 | |
|     elSearchInput.addEventListener('input', syncItemFromInput);
 | |
|   } else {
 | |
|     $searchDropdown.dropdown('setting', 'apiSettings', {
 | |
|       cache: false,
 | |
|       url: `${searchUrl}&q={query}`,
 | |
|       onResponse(resp) {
 | |
|         // the content is provided by backend IssuePosters handler
 | |
|         processedResults.length = 0;
 | |
|         for (const item of resp.results) {
 | |
|           let html = `<img class="ui avatar tw-align-middle" src="${htmlEscape(item.avatar_link)}" aria-hidden="true" alt="" width="20" height="20"><span class="gt-ellipsis">${htmlEscape(item.username)}</span>`;
 | |
|           if (item.full_name) html += `<span class="search-fullname tw-ml-2">${htmlEscape(item.full_name)}</span>`;
 | |
|           if (selectedUserId === item.user_id) selectedUsername = item.username;
 | |
|           processedResults.push({value: item.username, name: html});
 | |
|         }
 | |
|         resp.results = processedResults;
 | |
|         syncItemFromInput();
 | |
|         return resp;
 | |
|       },
 | |
|     });
 | |
|     $searchDropdown.dropdown('setting', 'onShow', () => $searchDropdown.dropdown('filter', ' ')); // trigger a search on first show
 | |
|   }
 | |
| 
 | |
|   // we want to generate the dropdown menu items by ourselves, replace its internal setup functions
 | |
|   const dropdownSetup = {...$searchDropdown.dropdown('internal', 'setup')};
 | |
|   const dropdownTemplates = $searchDropdown.dropdown('setting', 'templates');
 | |
|   $searchDropdown.dropdown('internal', 'setup', dropdownSetup);
 | |
|   dropdownSetup.menu = function (values) {
 | |
|     const menu = $searchDropdown.find('> .menu')[0];
 | |
|     // remove old dynamic items
 | |
|     for (const el of menu.querySelectorAll(':scope > .dynamic-item')) {
 | |
|       el.remove();
 | |
|     }
 | |
| 
 | |
|     const newMenuHtml = dropdownTemplates.menu(values, $searchDropdown.dropdown('setting', 'fields'), true /* html */, $searchDropdown.dropdown('setting', 'className'));
 | |
|     if (newMenuHtml) {
 | |
|       const newMenuItems = parseDom(newMenuHtml, 'text/html').querySelectorAll('body > div');
 | |
|       for (const newMenuItem of newMenuItems) {
 | |
|         newMenuItem.classList.add('dynamic-item');
 | |
|       }
 | |
|       const div = document.createElement('div');
 | |
|       div.classList.add('divider', 'dynamic-item');
 | |
|       menu.append(div, ...newMenuItems);
 | |
|     }
 | |
|     $searchDropdown.dropdown('refresh');
 | |
|     // defer our selection to the next tick, because dropdown will set the selection item after this `menu` function
 | |
|     setTimeout(() => {
 | |
|       for (const el of menu.querySelectorAll('.item.active, .item.selected')) {
 | |
|         el.classList.remove('active', 'selected');
 | |
|       }
 | |
|       menu.querySelector(`.item[data-value="${CSS.escape(selectedUsername)}"]`)?.classList.add('selected');
 | |
|     }, 0);
 | |
|   };
 | |
| }
 | |
| 
 | |
| function initPinRemoveButton() {
 | |
|   for (const button of document.querySelectorAll('.issue-card-unpin')) {
 | |
|     button.addEventListener('click', async (event) => {
 | |
|       const el = event.currentTarget as HTMLElement;
 | |
|       const id = Number(el.getAttribute('data-issue-id'));
 | |
| 
 | |
|       // Send the unpin request
 | |
|       const response = await DELETE(el.getAttribute('data-unpin-url'));
 | |
|       if (response.ok) {
 | |
|         // Delete the tooltip
 | |
|         el._tippy.destroy();
 | |
|         // Remove the Card
 | |
|         el.closest(`div.issue-card[data-issue-id="${id}"]`).remove();
 | |
|       }
 | |
|     });
 | |
|   }
 | |
| }
 | |
| 
 | |
| async function pinMoveEnd(e) {
 | |
|   const url = e.item.getAttribute('data-move-url');
 | |
|   const id = Number(e.item.getAttribute('data-issue-id'));
 | |
|   await POST(url, {data: {id, position: e.newIndex + 1}});
 | |
| }
 | |
| 
 | |
| async function initIssuePinSort() {
 | |
|   const pinDiv = document.querySelector('#issue-pins');
 | |
| 
 | |
|   if (pinDiv === null) return;
 | |
| 
 | |
|   // If the User is not a Repo Admin, we don't need to proceed
 | |
|   if (!pinDiv.hasAttribute('data-is-repo-admin')) return;
 | |
| 
 | |
|   initPinRemoveButton();
 | |
| 
 | |
|   // If only one issue pinned, we don't need to make this Sortable
 | |
|   if (pinDiv.children.length < 2) return;
 | |
| 
 | |
|   createSortable(pinDiv, {
 | |
|     group: 'shared',
 | |
|     onEnd: (e) => {
 | |
|       (async () => {
 | |
|         await pinMoveEnd(e);
 | |
|       })();
 | |
|     },
 | |
|   });
 | |
| }
 | |
| 
 | |
| export function initRepoIssueList() {
 | |
|   if (!document.querySelector('.page-content.repository.issue-list, .page-content.repository.milestone-issue-list')) return;
 | |
|   initRepoIssueListCheckboxes();
 | |
|   queryElems(document, '.ui.dropdown.user-remote-search', (el) => initDropdownUserRemoteSearch(el));
 | |
|   initIssuePinSort();
 | |
| }
 |