feat: tidal embeds

This commit is contained in:
Kieran 2023-01-19 19:51:36 +00:00
parent b583ea5ff0
commit 727bb07f18
Signed by: Kieran
GPG Key ID: DE71CEB3925BE941
4 changed files with 50 additions and 2 deletions

View File

@ -8,7 +8,7 @@
<meta name="theme-color" content="#000000" />
<meta name="description" content="Fast nostr web ui" />
<meta http-equiv="Content-Security-Policy"
content="default-src 'self'; child-src 'none'; worker-src 'self'; frame-src youtube.com www.youtube.com https://platform.twitter.com; style-src 'self' 'unsafe-inline' https://fonts.googleapis.com; connect-src wss://* 'self' https://*; img-src * data:; font-src https://fonts.gstatic.com; media-src *; script-src 'self' https://static.cloudflareinsights.com https://platform.twitter.com;" />
content="default-src 'self'; child-src 'none'; worker-src 'self'; frame-src youtube.com www.youtube.com https://platform.twitter.com https://embed.tidal.com; style-src 'self' 'unsafe-inline' https://fonts.googleapis.com; connect-src wss://* 'self' https://*; img-src * data:; font-src https://fonts.gstatic.com; media-src *; script-src 'self' https://static.cloudflareinsights.com https://platform.twitter.com https://embed.tidal.com;" />
<link rel="apple-touch-icon" href="%PUBLIC_URL%/nostrich_512.png" />
<link rel="manifest" href="%PUBLIC_URL%/manifest.json" />

View File

@ -84,3 +84,8 @@ export const TweetUrlRegex = /https?:\/\/twitter\.com\/(?:#!\/)?(\w+)\/status(?:
* Hashtag regex
*/
export const HashtagRegex = /(#[^\s!@#$%^&*()=+.\/,\[{\]};:'"?><]+)/;
/**
* Tidal share link regex
*/
export const TidalRegex = /tidal\.com\/browse\/(\w+)\/([a-z0-9-]+)/i;

View File

@ -4,7 +4,7 @@ import { Link } from "react-router-dom";
import ReactMarkdown from "react-markdown";
import { TwitterTweetEmbed } from "react-twitter-embed";
import { UrlRegex, FileExtensionRegex, MentionRegex, InvoiceRegex, YoutubeUrlRegex, TweetUrlRegex, HashtagRegex } from "Const";
import { UrlRegex, FileExtensionRegex, MentionRegex, InvoiceRegex, YoutubeUrlRegex, TweetUrlRegex, HashtagRegex, TidalRegex } from "Const";
import { eventLink, hexToBech32 } from "Util";
import Invoice from "Element/Invoice";
import Hashtag from "Element/Hashtag";
@ -12,12 +12,14 @@ import Hashtag from "Element/Hashtag";
import Tag from "Nostr/Tag";
import { MetadataCache } from "Db/User";
import Mention from "Element/Mention";
import TidalEmbed from "Element/TidalEmbed";
function transformHttpLink(a: string) {
try {
const url = new URL(a);
const youtubeId = YoutubeUrlRegex.test(a) && RegExp.$1;
const tweetId = TweetUrlRegex.test(a) && RegExp.$2;
const tidalId = TidalRegex.test(a) && RegExp.$1;
const extension = FileExtensionRegex.test(url.pathname.toLowerCase()) && RegExp.$1;
if (extension) {
switch (extension) {
@ -61,6 +63,8 @@ function transformHttpLink(a: string) {
<br />
</>
)
} else if (tidalId) {
return <TidalEmbed link={a} />
} else {
return <a href={a} onClick={(e) => e.stopPropagation()} target="_blank" rel="noreferrer" className="ext">{a}</a>
}

View File

@ -0,0 +1,39 @@
import { useEffect, useMemo } from "react";
import { TidalRegex } from "../Const";
const TidalEmbed = ({ link }: { link: string }) => {
// https://tidal.com/browse/mix/0029457ec7eed3b340ee2b907fc4d8
// https://tidal.com/browse/track/168295350
// https://tidal.com/browse/album/168295347
// https://tidal.com/browse/playlist/4261748a-4287-4758-aaab-6d5be3e99e52
const data = useMemo(() => {
const match = link.match(TidalRegex);
if (match?.length != 3) {
return null;
}
let type = match[1][0];
let id = match[2];
return { type, id };
}, [link]);
const ScriptSrc = "https://embed.tidal.com/tidal-embed.js";
useEffect(() => {
let head = document.head.querySelector(`script[src="${ScriptSrc}"]`);
console.debug(head);
if (!head) {
let sTag = document.createElement("script");
sTag.src = ScriptSrc;
sTag.async = true;
document.head.appendChild(sTag);
}
}, []);
return (
<>
<div className="tidal-embed" data-type={data?.type} data-id={data?.id}></div>
</>
)
}
export default TidalEmbed;