refactor youtube link handling

This commit is contained in:
Alejandro Gomez 2023-01-06 21:38:51 +01:00
parent 9dfbb52768
commit 11c5dc0cf6
No known key found for this signature in database
GPG Key ID: 4DF39E566658C817
4 changed files with 61 additions and 43 deletions

View File

@ -56,4 +56,9 @@ export const MentionRegex = /(#\[\d+\])/gi;
/**
* Simple lightning invoice regex
*/
export const InvoiceRegex = /(lnbc\w+)/i;
export const InvoiceRegex = /(lnbc\w+)/i;
/**
* YouTube URL regex
*/
export const YoutubeUrlRegex = /^(?:https?:\/\/)?(?:www\.)?(?:youtu\.be\/|youtube\.com\/(?:embed\/|v\/|watch\?v=|watch\?.+&v=))((\w|-){11})(?:\S+)?$/

View File

@ -1,53 +1,63 @@
import { Link } from "react-router-dom";
import Invoice from "./element/Invoice";
import { UrlRegex, FileExtensionRegex, MentionRegex, InvoiceRegex } from "./Const";
import { UrlRegex, FileExtensionRegex, MentionRegex, InvoiceRegex, YoutubeUrlRegex } from "./Const";
import { eventLink, profileLink } from "./Util";
function transformHttpLink(a) {
try {
const url = new URL(a);
const vParam = url.searchParams.get('v')
const youtubeId = YoutubeUrlRegex.test(a) && RegExp.$1
const extension = FileExtensionRegex.test(url.pathname.toLowerCase()) && RegExp.$1
if (extension) {
switch (extension) {
case "gif":
case "jpg":
case "jpeg":
case "png":
case "bmp":
case "webp": {
return <img key={url} src={url} />;
}
case "mp4":
case "mov":
case "mkv":
case "avi":
case "m4v": {
return <video key={url} src={url} controls />
}
default:
return <a key={url} href={url}>{url.toString()}</a>
}
} else if (youtubeId) {
return (
<>
<br />
<iframe
src={`https://www.youtube.com/embed/${youtubeId}`}
title="YouTube video player"
frameborder="0"
allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share"
allowfullscreen=""
/>
<br />
</>
)
} else {
return <a key={url} href={url}>{url.toString()}</a>
}
} catch (e) {
console.warn(`Not a valid url: ${a}`);
}
}
export function extractLinks(fragments) {
return fragments.map(f => {
if (typeof f === "string") {
return f.split(UrlRegex).map(a => {
if (a.startsWith("http")) {
try {
const url = new URL(a);
const vParam = url.searchParams.get('v')
const isYoutube = (url.host === "www.youtube.com" || url.host === "youtube.com" ) && vParam
const ext = url.pathname.toLowerCase().match(FileExtensionRegex);
if (ext) {
switch (ext[1]) {
case "gif":
case "jpg":
case "jpeg":
case "png":
case "bmp":
case "webp": {
return <img key={url} src={url} />;
}
case "mp4":
case "mov":
case "mkv":
case "avi":
case "m4v": {
return <video key={url} src={url} controls />
}
}
} else if (isYoutube) {
return (
<iframe
src={`https://www.youtube.com/embed/${vParam}`}
title="YouTube video player"
frameborder="0"
allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share"
allowfullscreen=""
/>
)
} else {
return <a key={url} href={url}>{url.toString()}</a>
}
} catch (e) {
console.warn(`Not a valid url: ${a}`);
}
return transformHttpLink(a)
}
return a;
});

View File

@ -22,11 +22,15 @@
word-break: normal;
}
.note > .body > img, .note > .body > video {
.note > .body > img, .note > .body > video, .note > .body > iframe {
max-width: 100%;
max-height: 500px;
}
.note > .body > iframe {
margin: 10px 0;
}
.note > .header > img:hover, .note > .header > .name > .reply:hover, .note > .body:hover {
cursor: pointer;
}

View File

@ -2,7 +2,6 @@ import { useEffect, useState } from "react";
import { useDispatch, useSelector } from "react-redux";
import { useNavigate } from "react-router-dom";
import * as secp from '@noble/secp256k1';
import { bech32 } from "bech32";
import { setPrivateKey, setPublicKey } from "../state/Login";
import { EmailRegex } from "../Const";