File tree 2 files changed +16
-1
lines changed
2 files changed +16
-1
lines changed Original file line number Diff line number Diff line change
1
+ import { substituteRepoOpenWithUrl } from './repo-common.ts' ;
2
+
3
+ test ( 'substituteRepoOpenWithUrl' , ( ) => {
4
+ // For example: "x-github-client://openRepo/https://github.com/go-gitea/gitea"
5
+ expect ( substituteRepoOpenWithUrl ( 'proto://a/{url}' , 'https://gitea' ) ) . toEqual ( 'proto://a/https://gitea' ) ;
6
+ expect ( substituteRepoOpenWithUrl ( 'proto://a?link={url}' , 'https://gitea' ) ) . toEqual ( 'proto://a?link=https%3A%2F%2Fgitea' ) ;
7
+ } ) ;
Original file line number Diff line number Diff line change @@ -42,6 +42,14 @@ export function initRepoActivityTopAuthorsChart() {
42
42
}
43
43
}
44
44
45
+ export function substituteRepoOpenWithUrl ( tmpl : string , url : string ) : string {
46
+ const pos = tmpl . indexOf ( '{url}' ) ;
47
+ if ( pos === - 1 ) return tmpl ;
48
+ const posQuestionMark = tmpl . indexOf ( '?' ) ;
49
+ const needEncode = posQuestionMark >= 0 && posQuestionMark < pos ;
50
+ return tmpl . replace ( '{url}' , needEncode ? encodeURIComponent ( url ) : url ) ;
51
+ }
52
+
45
53
function initCloneSchemeUrlSelection ( parent : Element ) {
46
54
const elCloneUrlInput = parent . querySelector < HTMLInputElement > ( '.repo-clone-url' ) ;
47
55
@@ -70,7 +78,7 @@ function initCloneSchemeUrlSelection(parent: Element) {
70
78
}
71
79
}
72
80
for ( const el of parent . querySelectorAll < HTMLAnchorElement > ( '.js-clone-url-editor' ) ) {
73
- el . href = el . getAttribute ( 'data-href-template' ) . replace ( '{url}' , encodeURIComponent ( link ) ) ;
81
+ el . href = substituteRepoOpenWithUrl ( el . getAttribute ( 'data-href-template' ) , link ) ;
74
82
}
75
83
} ;
76
84
You can’t perform that action at this time.
0 commit comments