2021-06-20 17:09:18 -04:00
|
|
|
import { Embed } from "revolt.js/dist/api/objects";
|
2021-07-05 06:23:23 -04:00
|
|
|
|
|
|
|
import styles from "./Embed.module.scss";
|
|
|
|
|
|
|
|
import { useIntermediate } from "../../../../context/intermediate/Intermediate";
|
2021-06-20 17:09:18 -04:00
|
|
|
|
|
|
|
interface Props {
|
2021-07-05 06:23:23 -04:00
|
|
|
embed: Embed;
|
|
|
|
width?: number;
|
|
|
|
height: number;
|
2021-06-20 17:09:18 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
export default function EmbedMedia({ embed, width, height }: Props) {
|
2021-07-05 06:23:23 -04:00
|
|
|
// ! FIXME: temp code
|
|
|
|
// ! add proxy function to client
|
|
|
|
function proxyImage(url: string) {
|
|
|
|
return "https://jan.revolt.chat/proxy?url=" + encodeURIComponent(url);
|
|
|
|
}
|
2021-06-20 17:09:18 -04:00
|
|
|
|
2021-07-05 06:23:23 -04:00
|
|
|
if (embed.type !== "Website") return null;
|
|
|
|
const { openScreen } = useIntermediate();
|
2021-06-20 17:09:18 -04:00
|
|
|
|
2021-07-05 06:23:23 -04:00
|
|
|
switch (embed.special?.type) {
|
|
|
|
case "YouTube":
|
|
|
|
return (
|
|
|
|
<iframe
|
|
|
|
src={`https://www.youtube-nocookie.com/embed/${embed.special.id}?modestbranding=1`}
|
|
|
|
allowFullScreen
|
|
|
|
style={{ height }}
|
|
|
|
/>
|
|
|
|
);
|
|
|
|
case "Twitch":
|
|
|
|
return (
|
|
|
|
<iframe
|
|
|
|
src={`https://player.twitch.tv/?${embed.special.content_type.toLowerCase()}=${
|
|
|
|
embed.special.id
|
|
|
|
}&parent=${window.location.hostname}&autoplay=false`}
|
|
|
|
frameBorder="0"
|
|
|
|
allowFullScreen
|
|
|
|
scrolling="no"
|
|
|
|
style={{ height }}
|
|
|
|
/>
|
|
|
|
);
|
|
|
|
case "Spotify":
|
|
|
|
return (
|
|
|
|
<iframe
|
|
|
|
src={`https://open.spotify.com/embed/${embed.special.content_type}/${embed.special.id}`}
|
|
|
|
frameBorder="0"
|
|
|
|
allowFullScreen
|
|
|
|
allowTransparency
|
|
|
|
style={{ height }}
|
|
|
|
/>
|
|
|
|
);
|
|
|
|
case "Soundcloud":
|
|
|
|
return (
|
|
|
|
<iframe
|
|
|
|
src={`https://w.soundcloud.com/player/?url=${encodeURIComponent(
|
|
|
|
embed.url!,
|
|
|
|
)}&color=%23FF7F50&auto_play=false&hide_related=false&show_comments=true&show_user=true&show_reposts=false&show_teaser=true&visual=true`}
|
|
|
|
frameBorder="0"
|
|
|
|
scrolling="no"
|
|
|
|
style={{ height }}
|
|
|
|
/>
|
|
|
|
);
|
|
|
|
case "Bandcamp": {
|
|
|
|
return (
|
|
|
|
<iframe
|
|
|
|
src={`https://bandcamp.com/EmbeddedPlayer/${embed.special.content_type.toLowerCase()}=${
|
|
|
|
embed.special.id
|
|
|
|
}/size=large/bgcol=181a1b/linkcol=056cc4/tracklist=false/transparent=true/`}
|
|
|
|
seamless
|
|
|
|
style={{ height }}
|
|
|
|
/>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
default: {
|
|
|
|
if (embed.image) {
|
|
|
|
let url = embed.image.url;
|
|
|
|
return (
|
|
|
|
<img
|
|
|
|
className={styles.image}
|
|
|
|
src={proxyImage(url)}
|
|
|
|
style={{ width, height }}
|
|
|
|
onClick={() =>
|
|
|
|
openScreen({
|
|
|
|
id: "image_viewer",
|
|
|
|
embed: embed.image,
|
|
|
|
})
|
|
|
|
}
|
|
|
|
onMouseDown={(ev) =>
|
|
|
|
ev.button === 1 && window.open(url, "_blank")
|
|
|
|
}
|
|
|
|
/>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2021-06-20 17:09:18 -04:00
|
|
|
|
2021-07-05 06:23:23 -04:00
|
|
|
return null;
|
2021-06-20 17:09:18 -04:00
|
|
|
}
|