2022-01-28 21:00:11 +00:00
|
|
|
import $ from 'jquery';
|
|
|
|
|
2021-10-21 07:37:43 +00:00
|
|
|
const {appSubUrl} = window.config;
|
2021-10-16 17:28:04 +00:00
|
|
|
|
|
|
|
export function initOrgTeamSearchRepoBox() {
|
|
|
|
const $searchRepoBox = $('#search-repo-box');
|
|
|
|
$searchRepoBox.search({
|
|
|
|
minCharacters: 2,
|
|
|
|
apiSettings: {
|
2022-04-07 18:59:56 +00:00
|
|
|
url: `${appSubUrl}/repo/search?q={query}&uid=${$searchRepoBox.data('uid')}`,
|
2021-10-16 17:28:04 +00:00
|
|
|
onResponse(response) {
|
|
|
|
const items = [];
|
|
|
|
$.each(response.data, (_i, item) => {
|
|
|
|
items.push({
|
2023-05-13 21:59:01 +00:00
|
|
|
title: item.repository.full_name.split('/')[1],
|
2024-03-22 14:06:53 +00:00
|
|
|
description: item.repository.full_name,
|
2021-10-16 17:28:04 +00:00
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
return {results: items};
|
2024-03-22 14:06:53 +00:00
|
|
|
},
|
2021-10-16 17:28:04 +00:00
|
|
|
},
|
|
|
|
searchFields: ['full_name'],
|
2024-03-22 14:06:53 +00:00
|
|
|
showNoResults: false,
|
2021-10-16 17:28:04 +00:00
|
|
|
});
|
|
|
|
}
|