-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1216 from webkom/internal-links-no-new-tab
Only open links in new tab if they're targeting another host
- Loading branch information
Showing
4 changed files
with
25 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
/** | ||
* Check if a link url is an internal link or an external one by comparing the host with the current host. | ||
* [protocol]//[hostname]:[port]/[pathname] - [host] = [hostname]:[port] | ||
* | ||
* @param linkUrlString The URL of the link | ||
* @returns boolean | ||
*/ | ||
const isInternalLink = (linkUrlString: string): boolean => { | ||
try { | ||
const linkUrl = new URL(linkUrlString); | ||
const currentUrl = new URL(window.location.href); | ||
return linkUrl.host === currentUrl.host; | ||
} catch (e) { | ||
// Handle invalid URLs as if they are not internal | ||
return false; | ||
} | ||
}; | ||
|
||
export default isInternalLink; |