mirror of
				https://github.com/go-gitea/gitea.git
				synced 2025-11-04 15:04:00 +01:00 
			
		
		
		
	Before and after: <img width="218" alt="Screenshot 2024-12-15 at 04 53 53" src="https://github.com/user-attachments/assets/299b1f0a-ba72-47c6-b662-a9d540d4d741" /> <img width="222" alt="Screenshot 2024-12-15 at 04 53 41" src="https://github.com/user-attachments/assets/5a2b5332-e324-4d20-82e9-21d1c850e826" /> Diff without whitespace: https://github.com/go-gitea/gitea/pull/32847/files?diff=unified&w=1 The `tw-mt-2` is fine even if the element renders empty: <img width="387" alt="image" src="https://github.com/user-attachments/assets/76a976e4-ba2e-48a5-9248-c361552a937a" /> --------- Co-authored-by: wxiaoguang <wxiaoguang@gmail.com>
		
			
				
	
	
		
			149 lines
		
	
	
		
			5.5 KiB
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
			
		
		
	
	
			149 lines
		
	
	
		
			5.5 KiB
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
import {stripTags} from '../utils.ts';
 | 
						|
import {hideElem, queryElemChildren, showElem} from '../utils/dom.ts';
 | 
						|
import {POST} from '../modules/fetch.ts';
 | 
						|
import {showErrorToast, type Toast} from '../modules/toast.ts';
 | 
						|
import {fomanticQuery} from '../modules/fomantic/base.ts';
 | 
						|
 | 
						|
const {appSubUrl} = window.config;
 | 
						|
 | 
						|
export function initRepoTopicBar() {
 | 
						|
  const mgrBtn = document.querySelector<HTMLButtonElement>('#manage_topic');
 | 
						|
  if (!mgrBtn) return;
 | 
						|
 | 
						|
  const editDiv = document.querySelector('#topic_edit');
 | 
						|
  const viewDiv = document.querySelector('#repo-topics');
 | 
						|
  const topicDropdown = editDiv.querySelector('.ui.dropdown');
 | 
						|
  let lastErrorToast: Toast;
 | 
						|
 | 
						|
  mgrBtn.addEventListener('click', () => {
 | 
						|
    hideElem([viewDiv, mgrBtn]);
 | 
						|
    showElem(editDiv);
 | 
						|
    topicDropdown.querySelector<HTMLInputElement>('input.search').focus();
 | 
						|
  });
 | 
						|
 | 
						|
  document.querySelector('#cancel_topic_edit').addEventListener('click', () => {
 | 
						|
    lastErrorToast?.hideToast();
 | 
						|
    hideElem(editDiv);
 | 
						|
    showElem([viewDiv, mgrBtn]);
 | 
						|
    mgrBtn.focus();
 | 
						|
  });
 | 
						|
 | 
						|
  document.querySelector('#save_topic').addEventListener('click', async (e: MouseEvent & {target: HTMLButtonElement}) => {
 | 
						|
    lastErrorToast?.hideToast();
 | 
						|
    const topics = editDiv.querySelector<HTMLInputElement>('input[name=topics]').value;
 | 
						|
 | 
						|
    const data = new FormData();
 | 
						|
    data.append('topics', topics);
 | 
						|
 | 
						|
    const response = await POST(e.target.getAttribute('data-link'), {data});
 | 
						|
 | 
						|
    if (response.ok) {
 | 
						|
      const responseData = await response.json();
 | 
						|
      if (responseData.status === 'ok') {
 | 
						|
        queryElemChildren(viewDiv, '.repo-topic', (el) => el.remove());
 | 
						|
        if (topics.length) {
 | 
						|
          const topicArray = topics.split(',');
 | 
						|
          topicArray.sort();
 | 
						|
          for (const topic of topicArray) {
 | 
						|
            // TODO: sort items in topicDropdown, or items in edit div will have different order to the items in view div
 | 
						|
            // !!!! it SHOULD and MUST match the code in "home_sidebar_top.tmpl" !!!!
 | 
						|
            const link = document.createElement('a');
 | 
						|
            link.classList.add('repo-topic', 'ui', 'large', 'label', 'gt-ellipsis');
 | 
						|
            link.href = `${appSubUrl}/explore/repos?q=${encodeURIComponent(topic)}&topic=1`;
 | 
						|
            link.textContent = topic;
 | 
						|
            viewDiv.append(link);
 | 
						|
          }
 | 
						|
        }
 | 
						|
        hideElem(editDiv);
 | 
						|
        showElem([viewDiv, mgrBtn]);
 | 
						|
      }
 | 
						|
    } else if (response.status === 422) {
 | 
						|
      // how to test: input topic like " invalid topic " (with spaces), and select it from the list, then "Save"
 | 
						|
      const responseData = await response.json();
 | 
						|
      lastErrorToast = showErrorToast(responseData.message, {duration: 5000});
 | 
						|
      if (responseData.invalidTopics && responseData.invalidTopics.length > 0) {
 | 
						|
        const {invalidTopics} = responseData;
 | 
						|
        const topicLabels = queryElemChildren(topicDropdown, 'a.ui.label');
 | 
						|
        for (const [index, value] of topics.split(',').entries()) {
 | 
						|
          if (invalidTopics.includes(value)) {
 | 
						|
            topicLabels[index].classList.remove('green');
 | 
						|
            topicLabels[index].classList.add('red');
 | 
						|
          }
 | 
						|
        }
 | 
						|
      }
 | 
						|
    }
 | 
						|
  });
 | 
						|
 | 
						|
  fomanticQuery(topicDropdown).dropdown({
 | 
						|
    allowAdditions: true,
 | 
						|
    forceSelection: false,
 | 
						|
    fullTextSearch: 'exact',
 | 
						|
    fields: {name: 'description', value: 'data-value'},
 | 
						|
    saveRemoteData: false,
 | 
						|
    label: {
 | 
						|
      transition: 'horizontal flip',
 | 
						|
      duration: 200,
 | 
						|
      variation: false,
 | 
						|
    },
 | 
						|
    apiSettings: {
 | 
						|
      url: `${appSubUrl}/explore/topics/search?q={query}`,
 | 
						|
      throttle: 500,
 | 
						|
      cache: false,
 | 
						|
      onResponse(res) {
 | 
						|
        const formattedResponse = {
 | 
						|
          success: false,
 | 
						|
          results: [],
 | 
						|
        };
 | 
						|
        const query = stripTags(this.urlData.query.trim());
 | 
						|
        let found_query = false;
 | 
						|
        const current_topics = [];
 | 
						|
        for (const el of queryElemChildren(topicDropdown, 'a.ui.label.visible')) {
 | 
						|
          current_topics.push(el.getAttribute('data-value'));
 | 
						|
        }
 | 
						|
 | 
						|
        if (res.topics) {
 | 
						|
          let found = false;
 | 
						|
          for (const {topic_name} of res.topics) {
 | 
						|
            // skip currently added tags
 | 
						|
            if (current_topics.includes(topic_name)) {
 | 
						|
              continue;
 | 
						|
            }
 | 
						|
 | 
						|
            if (topic_name.toLowerCase() === query.toLowerCase()) {
 | 
						|
              found_query = true;
 | 
						|
            }
 | 
						|
            formattedResponse.results.push({description: topic_name, 'data-value': topic_name});
 | 
						|
            found = true;
 | 
						|
          }
 | 
						|
          formattedResponse.success = found;
 | 
						|
        }
 | 
						|
 | 
						|
        if (query.length > 0 && !found_query) {
 | 
						|
          formattedResponse.success = true;
 | 
						|
          formattedResponse.results.unshift({description: query, 'data-value': query});
 | 
						|
        } else if (query.length > 0 && found_query) {
 | 
						|
          formattedResponse.results.sort((a, b) => {
 | 
						|
            if (a.description.toLowerCase() === query.toLowerCase()) return -1;
 | 
						|
            if (b.description.toLowerCase() === query.toLowerCase()) return 1;
 | 
						|
            if (a.description > b.description) return -1;
 | 
						|
            if (a.description < b.description) return 1;
 | 
						|
            return 0;
 | 
						|
          });
 | 
						|
        }
 | 
						|
 | 
						|
        return formattedResponse;
 | 
						|
      },
 | 
						|
    },
 | 
						|
    onLabelCreate(value) {
 | 
						|
      value = value.toLowerCase().trim();
 | 
						|
      this.attr('data-value', value).contents().first().replaceWith(value);
 | 
						|
      return fomanticQuery(this);
 | 
						|
    },
 | 
						|
    onAdd(addedValue, _addedText, $addedChoice) {
 | 
						|
      addedValue = addedValue.toLowerCase().trim();
 | 
						|
      $addedChoice[0].setAttribute('data-value', addedValue);
 | 
						|
      $addedChoice[0].setAttribute('data-text', addedValue);
 | 
						|
    },
 | 
						|
  });
 | 
						|
}
 |