* Port over linkifyJS to shared-components. * Drop rubbish * update lock * quickfix test * drop group id * Modernize tests * Remove stories that aren't in use. * Complete working version * Add copyright * tidy up * update lock * Update snaps * update snap * undo change * remove unused * More test updates * fix typo * fix margin on preview * move margin block * snapupdate * prettier * cleanup a test mistake * Fixup sonar issues * Don't expose linkifyjs to applications, just provide helper functions. * Add story for documentation. * remove $ * Use a const * typo * cleanup var name * remove console line * Changes checkpoint * Convert to context * Revert unrelated change. * more cleanup * Add a test to cover ignoring incoming data elements * Make tests happy * Update tests for LinkedText * Underlines! * fix lock * remove unused linkify packages * import move * Remove mod to remove underline * undo * fix snap * another snapshot fix * Tidy up based on review. * fix story * Pass in args
52 lines
1.3 KiB
TypeScript
52 lines
1.3 KiB
TypeScript
/*
|
|
Copyright 2024 New Vector Ltd.
|
|
Copyright 2019-2021 The Matrix.org Foundation C.I.C.
|
|
|
|
SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial
|
|
Please see LICENSE files in the repository root for full details.
|
|
*/
|
|
|
|
/**
|
|
* If a url has no path component, etc. abbreviate it to just the hostname
|
|
*
|
|
* @param {string} u The url to be abbreviated
|
|
* @returns {string} The abbreviated url
|
|
*/
|
|
export function abbreviateUrl(u?: string): string {
|
|
if (!u) return "";
|
|
|
|
let parsedUrl: URL;
|
|
try {
|
|
parsedUrl = parseUrl(u);
|
|
} catch (e) {
|
|
console.error(e);
|
|
// if it's something we can't parse as a url then just return it
|
|
return u;
|
|
}
|
|
|
|
if (parsedUrl.pathname === "/") {
|
|
// we ignore query / hash parts: these aren't relevant for IS server URLs
|
|
return parsedUrl.host || "";
|
|
}
|
|
|
|
return u;
|
|
}
|
|
|
|
export function unabbreviateUrl(u?: string): string {
|
|
if (!u) return "";
|
|
|
|
let longUrl = u;
|
|
if (!u.startsWith("https://")) longUrl = "https://" + u;
|
|
const parsed = parseUrl(longUrl);
|
|
if (!parsed.hostname) return u;
|
|
|
|
return longUrl;
|
|
}
|
|
|
|
export function parseUrl(u: string): URL {
|
|
if (!u.includes(":")) {
|
|
u = window.location.protocol + u;
|
|
}
|
|
return new URL(u);
|
|
}
|