parent
9b85f825e5
commit
a3be3d0131
@ -8,7 +8,7 @@
|
|||||||
<meta name="description" content="Fast nostr web ui" />
|
<meta name="description" content="Fast nostr web ui" />
|
||||||
<meta
|
<meta
|
||||||
http-equiv="Content-Security-Policy"
|
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 https://embed.tidal.com https://w.soundcloud.com https://www.mixcloud.com https://open.spotify.com https://player.twitch.tv https://embed.music.apple.com https://nostrnests.com; style-src 'self' 'unsafe-inline' https://fonts.googleapis.com; connect-src *; img-src * data:; font-src https://fonts.gstatic.com; media-src *; script-src 'self' 'wasm-unsafe-eval' https://static.cloudflareinsights.com https://platform.twitter.com https://embed.tidal.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 https://w.soundcloud.com https://www.mixcloud.com https://open.spotify.com https://player.twitch.tv https://embed.music.apple.com https://nostrnests.com https://player.wavlake.com; style-src 'self' 'unsafe-inline' https://fonts.googleapis.com; connect-src *; img-src * data:; font-src https://fonts.gstatic.com; media-src *; script-src 'self' 'wasm-unsafe-eval' https://static.cloudflareinsights.com https://platform.twitter.com https://embed.tidal.com;" />
|
||||||
<link rel="preconnect" href="https://fonts.googleapis.com" />
|
<link rel="preconnect" href="https://fonts.googleapis.com" />
|
||||||
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
|
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
|
||||||
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap" rel="stylesheet" />
|
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap" rel="stylesheet" />
|
||||||
|
@ -165,3 +165,8 @@ export const NostrNestsRegex = /nostrnests\.com\/[a-zA-Z0-9]+/i;
|
|||||||
* Magnet link parser
|
* Magnet link parser
|
||||||
*/
|
*/
|
||||||
export const MagnetRegex = /(magnet:[\S]+)/i;
|
export const MagnetRegex = /(magnet:[\S]+)/i;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Wavlake embed regex
|
||||||
|
*/
|
||||||
|
export const WavlakeRegex = /player\.wavlake\.com\/(track)\/([.a-zA-Z0-9-]+)/;
|
||||||
|
@ -15,6 +15,7 @@ import {
|
|||||||
TwitchRegex,
|
TwitchRegex,
|
||||||
AppleMusicRegex,
|
AppleMusicRegex,
|
||||||
NostrNestsRegex,
|
NostrNestsRegex,
|
||||||
|
WavlakeRegex,
|
||||||
} from "Const";
|
} from "Const";
|
||||||
import { RootState } from "State/Store";
|
import { RootState } from "State/Store";
|
||||||
import SoundCloudEmbed from "Element/SoundCloudEmded";
|
import SoundCloudEmbed from "Element/SoundCloudEmded";
|
||||||
@ -25,6 +26,7 @@ import { ProxyImg } from "Element/ProxyImg";
|
|||||||
import TwitchEmbed from "Element/TwitchEmbed";
|
import TwitchEmbed from "Element/TwitchEmbed";
|
||||||
import AppleMusicEmbed from "Element/AppleMusicEmbed";
|
import AppleMusicEmbed from "Element/AppleMusicEmbed";
|
||||||
import NostrNestsEmbed from "Element/NostrNestsEmbed";
|
import NostrNestsEmbed from "Element/NostrNestsEmbed";
|
||||||
|
import WavlakeEmbed from "Element/WavlakeEmbed";
|
||||||
|
|
||||||
export default function HyperText({ link, creator }: { link: string; creator: HexKey }) {
|
export default function HyperText({ link, creator }: { link: string; creator: HexKey }) {
|
||||||
const pref = useSelector((s: RootState) => s.login.preferences);
|
const pref = useSelector((s: RootState) => s.login.preferences);
|
||||||
@ -70,6 +72,7 @@ export default function HyperText({ link, creator }: { link: string; creator: He
|
|||||||
const isTwitchLink = TwitchRegex.test(a);
|
const isTwitchLink = TwitchRegex.test(a);
|
||||||
const isAppleMusicLink = AppleMusicRegex.test(a);
|
const isAppleMusicLink = AppleMusicRegex.test(a);
|
||||||
const isNostrNestsLink = NostrNestsRegex.test(a);
|
const isNostrNestsLink = NostrNestsRegex.test(a);
|
||||||
|
const isWavlakeLink = WavlakeRegex.test(a);
|
||||||
const extension = FileExtensionRegex.test(url.pathname.toLowerCase()) && RegExp.$1;
|
const extension = FileExtensionRegex.test(url.pathname.toLowerCase()) && RegExp.$1;
|
||||||
if (extension && !isAppleMusicLink) {
|
if (extension && !isAppleMusicLink) {
|
||||||
switch (extension) {
|
switch (extension) {
|
||||||
@ -144,6 +147,8 @@ export default function HyperText({ link, creator }: { link: string; creator: He
|
|||||||
</a>,
|
</a>,
|
||||||
<NostrNestsEmbed link={a} />,
|
<NostrNestsEmbed link={a} />,
|
||||||
];
|
];
|
||||||
|
} else if (isWavlakeLink) {
|
||||||
|
return <WavlakeEmbed link={a} />;
|
||||||
} else {
|
} else {
|
||||||
return (
|
return (
|
||||||
<a href={a} onClick={e => e.stopPropagation()} target="_blank" rel="noreferrer" className="ext">
|
<a href={a} onClick={e => e.stopPropagation()} target="_blank" rel="noreferrer" className="ext">
|
||||||
|
16
packages/app/src/Element/WavlakeEmbed.tsx
Normal file
16
packages/app/src/Element/WavlakeEmbed.tsx
Normal file
@ -0,0 +1,16 @@
|
|||||||
|
const WavlakeEmbed = ({ link }: { link: string }) => {
|
||||||
|
const convertedUrl = link.replace(/\/(track)\/([a-zA-Z0-9]+)/, "/embed/$1/$2");
|
||||||
|
|
||||||
|
return (
|
||||||
|
<iframe
|
||||||
|
style={{ borderRadius: 12 }}
|
||||||
|
src={convertedUrl}
|
||||||
|
width="100%"
|
||||||
|
height="360"
|
||||||
|
frameBorder="0"
|
||||||
|
allow="autoplay; clipboard-write; encrypted-media; fullscreen; picture-in-picture"
|
||||||
|
loading="lazy"></iframe>
|
||||||
|
);
|
||||||
|
};
|
||||||
|
|
||||||
|
export default WavlakeEmbed;
|
Loading…
x
Reference in New Issue
Block a user