From e891482a9783947dabfae5f3fd54d2b2cc827c49 Mon Sep 17 00:00:00 2001 From: Vihar Kurama Date: Mon, 29 Sep 2025 10:03:25 +0100 Subject: [PATCH] [WEB-4881] feat(utils): add URL display formatter #7770 --- packages/utils/src/url.ts | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/packages/utils/src/url.ts b/packages/utils/src/url.ts index 738d935d5..0321cec4d 100644 --- a/packages/utils/src/url.ts +++ b/packages/utils/src/url.ts @@ -97,6 +97,24 @@ export function extractHostname(url: string): string { return hostname; } +/** + * Returns a readable representation of a URL by stripping the protocol + * and any trailing slash. For valid URLs, only the host is returned. + * Invalid URLs are sanitized by removing the protocol and trailing slash. + * + * @param url - The URL string to format + * @returns The formatted domain for display + */ +export function formatURLForDisplay(url: string): string { + if (!url) return ""; + + try { + return new URL(url).host; + } catch (_error) { + return extractHostname(url); + } +} + /** * Extracts and validates the TLD (Top Level Domain) from a URL string. *