19 lines
888 B
TypeScript
19 lines
888 B
TypeScript
import {attachSearchBox} from '../../modules/search.ts';
|
|
|
|
const {appSubUrl} = window.config;
|
|
|
|
type RepoSearchResponse = {data: Array<{repository: {full_name: string}}>};
|
|
|
|
export function initCompSearchRepoBox(el: HTMLElement) {
|
|
const uid = el.getAttribute('data-uid');
|
|
const exclusive = el.getAttribute('data-exclusive');
|
|
// when set, the selected value is the full "owner/name" rather than the bare repo name, so a cross-owner search can be resolved unambiguously
|
|
const fullName = el.getAttribute('data-full-name') === 'true';
|
|
let url = `${appSubUrl}/repo/search?q={query}&uid=${uid}`;
|
|
if (exclusive === 'true') url += `&exclusive=true`;
|
|
attachSearchBox(el, url, (response: RepoSearchResponse) => response.data.map((item) => ({
|
|
title: fullName ? item.repository.full_name : item.repository.full_name.split('/')[1],
|
|
description: item.repository.full_name,
|
|
})));
|
|
}
|