chore: simplify validUrl fn

This commit is contained in:
zacanger 2019-10-17 19:54:01 -06:00
parent 4e3998c64c
commit 96a2f0d92d
1 changed files with 14 additions and 16 deletions

12
ui/src/utils.ts vendored
View File

@ -116,13 +116,11 @@ export function isVideo(url: string) {
}
export function validURL(str: string) {
var pattern = new RegExp('^(https?:\\/\\/)?'+ // protocol
'((([a-z\\d]([a-z\\d-]*[a-z\\d])*)\\.)+[a-z]{2,}|'+ // domain name
'((\\d{1,3}\\.){3}\\d{1,3}))'+ // OR ip (v4) address
'(\\:\\d+)?(\\/[-a-z\\d%_.~+]*)*'+ // port and path
'(\\?[;&a-z\\d%_.~+=-]*)?'+ // query string
'(\\#[-a-z\\d_]*)?$','i'); // fragment locator
return !!pattern.test(str);
try {
return !!new URL(str);
} catch {
return false;
}
}
export function capitalizeFirstLetter(str: string): string {