[UBER-169] Allow to click and open links in contact information (#3337)

Signed-off-by: Ruslan Bayandinov <wazsone@ya.ru>
This commit is contained in:
Ruslan Bayandinov 2023-06-05 12:12:51 +07:00 committed by GitHub
parent 2aff844540
commit ce34a7e6d7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 20 additions and 3 deletions

View File

@ -173,6 +173,22 @@ export function replaceURLs (text: string): string {
})
}
/**
* Parse first URL from the given text or html
*
* @example
* replaceURLs("github.com")
* returns: "http://github.com"
*
* @export
* @param {string} text
* @returns {string} string with parsed URL
*/
export function parseURL (text: string): string {
const matches = autolinker.parse(text, { urls: true })
return matches.length > 0 ? matches[0].getAnchorHref() : ''
}
/**
* @public
*/

View File

@ -19,7 +19,7 @@ import { Class, Client, DocumentQuery, Ref, RelatedDocument, WithLookup } from '
import login from '@hcengineering/login'
import { IntlString, Resources, getResource } from '@hcengineering/platform'
import { MessageBox, ObjectSearchResult, getClient, getFileUrl } from '@hcengineering/presentation'
import { AnyComponent, AnySvelteComponent, TooltipAlignment, showPopup } from '@hcengineering/ui'
import { AnyComponent, AnySvelteComponent, TooltipAlignment, parseURL, showPopup } from '@hcengineering/ui'
import AccountArrayEditor from './components/AccountArrayEditor.svelte'
import AccountBox from './components/AccountBox.svelte'
import AssigneeBox from './components/AssigneeBox.svelte'
@ -240,8 +240,9 @@ async function kickEmployee (doc: Employee): Promise<void> {
}
}
async function openChannelURL (doc: Channel): Promise<void> {
if (doc.value.startsWith('http://') || doc.value.startsWith('https://')) {
window.open(doc.value)
const url = parseURL(doc.value)
if (url.startsWith('http://') || url.startsWith('https://')) {
window.open(url)
}
}