|
|
|
@ -72,6 +72,10 @@ export function filterRepoFilesWeighted(files, filter) {
|
|
|
|
|
return filterResult;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
export function escapePath(s) {
|
|
|
|
|
return s.split('/').map(encodeURIComponent).join('/');
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function filterRepoFiles(filter) {
|
|
|
|
|
const treeLink = $repoFindFileInput.attr('data-url-tree-link');
|
|
|
|
|
$repoFindFileTableBody.empty();
|
|
|
|
@ -83,7 +87,7 @@ function filterRepoFiles(filter) {
|
|
|
|
|
for (const r of filterResult) {
|
|
|
|
|
const $row = $(tmplRow);
|
|
|
|
|
const $a = $row.find('a');
|
|
|
|
|
$a.attr('href', `${treeLink}/${r.matchResult.join('')}`);
|
|
|
|
|
$a.attr('href', `${treeLink}/${escapePath(r.matchResult.join(''))}`);
|
|
|
|
|
const $octiconFile = $(svg('octicon-file')).addClass('mr-3');
|
|
|
|
|
$a.append($octiconFile);
|
|
|
|
|
// if the target file path is "abc/xyz", to search "bx", then the matchResult is ['a', 'b', 'c/', 'x', 'yz']
|
|
|
|
|