mirror of
https://github.com/ragestudio/comty.git
synced 2025-06-10 02:54:15 +00:00
improve attachment render behavior
This commit is contained in:
parent
330b1b9cec
commit
15214cff3f
@ -1,4 +1,5 @@
|
||||
import React from "react"
|
||||
import { Skeleton } from "antd"
|
||||
import loadable from "@loadable/component"
|
||||
import { Carousel } from "react-responsive-carousel"
|
||||
import Plyr from "plyr-react"
|
||||
@ -28,96 +29,139 @@ import "react-responsive-carousel/lib/styles/carousel.min.css"
|
||||
import "plyr-react/dist/plyr.css"
|
||||
import "./index.less"
|
||||
|
||||
export default class PostAttachments extends React.PureComponent {
|
||||
getAttachments = (data) => {
|
||||
return data.map((addition, index) => {
|
||||
if (typeof addition === "string") {
|
||||
addition = {
|
||||
url: addition,
|
||||
}
|
||||
}
|
||||
const Attachment = React.memo((props) => {
|
||||
const { url, id, name } = props.attachment
|
||||
|
||||
const { url, id, name } = addition
|
||||
const [loaded, setLoaded] = React.useState(false)
|
||||
|
||||
const MediaRender = loadable(async () => {
|
||||
let extension = null
|
||||
const [mediaType, setMediaType] = React.useState(null)
|
||||
const [mimeType, setMimeType] = React.useState(null)
|
||||
|
||||
try {
|
||||
// get media type by parsing the url
|
||||
const mediaTypeExt = /\.([a-zA-Z0-9]+)$/.exec(url)
|
||||
const getMediaType = async () => {
|
||||
let extension = null
|
||||
|
||||
if (mediaTypeExt) {
|
||||
extension = mediaTypeExt[1]
|
||||
} else {
|
||||
// try to get media by creating requesting the url
|
||||
const response = await fetch(url, {
|
||||
method: "HEAD",
|
||||
})
|
||||
// get media type by parsing the url
|
||||
const mediaTypeExt = /\.([a-zA-Z0-9]+)$/.exec(url)
|
||||
|
||||
extension = response.headers.get("content-type").split("/")[1]
|
||||
}
|
||||
|
||||
extension = extension.toLowerCase()
|
||||
|
||||
const mediaType = mediaTypes[extension]
|
||||
const mimeType = `${mediaType}/${extension}`
|
||||
|
||||
if (!mediaType) {
|
||||
return () => <ContentFailed />
|
||||
}
|
||||
|
||||
switch (mediaType.split("/")[0]) {
|
||||
case "image": {
|
||||
return () => <img src={url} />
|
||||
}
|
||||
case "video": {
|
||||
return () => <Plyr
|
||||
source={{
|
||||
type: "video",
|
||||
sources: [{
|
||||
src: url,
|
||||
}],
|
||||
}}
|
||||
options={{
|
||||
controls: ["play", "progress", "current-time", "mute", "volume"],
|
||||
}}
|
||||
/>
|
||||
}
|
||||
case "audio": {
|
||||
return () => <audio controls>
|
||||
<source src={url} type={mimeType} />
|
||||
</audio>
|
||||
}
|
||||
default: {
|
||||
return () => <h4>
|
||||
Unsupported media type [{mediaType}/{mediaTypeExt}]
|
||||
</h4>
|
||||
}
|
||||
}
|
||||
} catch (error) {
|
||||
console.error(error)
|
||||
return () => <ContentFailed />
|
||||
}
|
||||
if (mediaTypeExt) {
|
||||
extension = mediaTypeExt[1]
|
||||
} else {
|
||||
// try to get media by creating requesting the url
|
||||
const response = await fetch(url, {
|
||||
method: "HEAD",
|
||||
})
|
||||
|
||||
return <div key={index} className="addition">
|
||||
<React.Suspense fallback={<div>Loading</div>} >
|
||||
<MediaRender />
|
||||
</React.Suspense>
|
||||
</div>
|
||||
})
|
||||
extension = response.headers.get("content-type").split("/")[1]
|
||||
}
|
||||
|
||||
extension = extension.toLowerCase()
|
||||
|
||||
const mediaType = mediaTypes[extension]
|
||||
const mimeType = `${mediaType}/${extension}`
|
||||
|
||||
setMediaType(mediaType)
|
||||
setMimeType(mimeType)
|
||||
|
||||
setLoaded(true)
|
||||
}
|
||||
|
||||
render() {
|
||||
return <div className="post_attachments">
|
||||
<Carousel
|
||||
showArrows={true}
|
||||
showStatus={false}
|
||||
showThumbs={false}
|
||||
showIndicators={this.props.attachments?.length > 1 ?? false}
|
||||
>
|
||||
{this.getAttachments(this.props.attachments)}
|
||||
</Carousel>
|
||||
</div>
|
||||
const renderMedia = () => {
|
||||
switch (mediaType.split("/")[0]) {
|
||||
case "image": {
|
||||
return <img src={url} />
|
||||
}
|
||||
case "video": {
|
||||
return <Plyr
|
||||
source={{
|
||||
type: "video",
|
||||
sources: [{
|
||||
src: url,
|
||||
}],
|
||||
}}
|
||||
options={{
|
||||
controls: ["play", "progress", "current-time", "mute", "volume"],
|
||||
}}
|
||||
/>
|
||||
}
|
||||
case "audio": {
|
||||
return <audio controls>
|
||||
<source src={url} type={mimeType} />
|
||||
</audio>
|
||||
}
|
||||
default: {
|
||||
return <h4>
|
||||
Unsupported media type [{mediaType}/{mediaTypeExt}]
|
||||
</h4>
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
React.useEffect(() => {
|
||||
getMediaType()
|
||||
}, [])
|
||||
|
||||
if (!loaded) {
|
||||
return <Skeleton active />
|
||||
}
|
||||
|
||||
if (loaded && !mediaType && !mimeType) {
|
||||
return <ContentFailed />
|
||||
}
|
||||
|
||||
return <div className="attachment" id={id}>
|
||||
{renderMedia()}
|
||||
</div>
|
||||
})
|
||||
|
||||
export default (props) => {
|
||||
const carouselRef = React.useRef(null)
|
||||
const [attachmentIndex, setAttachmentIndex] = React.useState(0)
|
||||
|
||||
const handleAttachmentChange = (index) => {
|
||||
const currentAttachmentIndex = carouselRef.current.state.selectedItem
|
||||
const currentAttachment = carouselRef.current.itemsRef[currentAttachmentIndex].querySelector("video, audio")
|
||||
|
||||
if (currentAttachmentIndex !== index) {
|
||||
// if the attachment is a video, pause it
|
||||
if (currentAttachment) {
|
||||
currentAttachment.pause()
|
||||
}
|
||||
} else {
|
||||
// else if the attachment is a video, play it
|
||||
if (currentAttachment) {
|
||||
currentAttachment.play()
|
||||
}
|
||||
}
|
||||
|
||||
setAttachmentIndex(index)
|
||||
}
|
||||
|
||||
React.useEffect(() => {
|
||||
// get attachment index from query string
|
||||
const attachmentIndex = parseInt(new URLSearchParams(window.location.search).get("attachment"))
|
||||
|
||||
if (attachmentIndex) {
|
||||
setAttachmentIndex(attachmentIndex)
|
||||
}
|
||||
}, [])
|
||||
|
||||
return <div className="post_attachments">
|
||||
<Carousel
|
||||
ref={carouselRef}
|
||||
showArrows={true}
|
||||
showStatus={false}
|
||||
showThumbs={false}
|
||||
showIndicators={props.attachments?.length > 1 ?? false}
|
||||
selectedItem={attachmentIndex}
|
||||
onChange={handleAttachmentChange}
|
||||
transitionTime={150}
|
||||
stopOnHover={true}
|
||||
>
|
||||
{
|
||||
props.attachments.map((attachment, index) => {
|
||||
return <Attachment key={index} attachment={attachment} />
|
||||
})
|
||||
}
|
||||
</Carousel>
|
||||
</div>
|
||||
}
|
@ -19,8 +19,13 @@
|
||||
width: 100%;
|
||||
|
||||
.carousel {
|
||||
display: flex;
|
||||
background-color: black;
|
||||
border-radius: 8px;
|
||||
|
||||
.slider-wrapper {
|
||||
align-self: center;
|
||||
}
|
||||
}
|
||||
|
||||
.control-prev,
|
||||
@ -82,7 +87,7 @@
|
||||
}
|
||||
}
|
||||
|
||||
.addition {
|
||||
.attachment {
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
|
||||
|
@ -5,19 +5,13 @@ import classnames from "classnames"
|
||||
|
||||
import { processString } from "utils"
|
||||
|
||||
import { Icons } from "components/Icons"
|
||||
|
||||
import PostAttachments from "../attachments"
|
||||
|
||||
import "./index.less"
|
||||
|
||||
export default React.memo((props) => {
|
||||
let { message, attachments, type, data, flags } = props.data
|
||||
export default (props) => {
|
||||
let { message, data } = props.data
|
||||
|
||||
const [nsfwAccepted, setNsfwAccepted] = React.useState(false)
|
||||
|
||||
const isNSFW = flags?.includes("nsfw")
|
||||
|
||||
if (typeof data === "string") {
|
||||
try {
|
||||
data = JSON.parse(data)
|
||||
@ -27,12 +21,6 @@ export default React.memo((props) => {
|
||||
}
|
||||
}
|
||||
|
||||
const onClickPlaylist = () => {
|
||||
if (data.playlist) {
|
||||
app.AudioPlayer.startPlaylist(data.playlist)
|
||||
}
|
||||
}
|
||||
|
||||
// parse message
|
||||
const regexs = [
|
||||
{
|
||||
@ -63,57 +51,17 @@ export default React.memo((props) => {
|
||||
|
||||
message = processString(regexs)(message)
|
||||
|
||||
const renderContent = () => {
|
||||
switch (type) {
|
||||
case "playlist": {
|
||||
return <>
|
||||
<div
|
||||
className="playlistCover"
|
||||
onClick={onClickPlaylist}
|
||||
style={{
|
||||
backgroundImage: `url(${data?.cover ?? "/assets/no_song.png"})`,
|
||||
}}
|
||||
/>
|
||||
|
||||
<div className="playlistTitle">
|
||||
<div>
|
||||
<h1>
|
||||
{data.title ?? "Untitled Playlist"}
|
||||
</h1>
|
||||
<h3>
|
||||
{data.artist}
|
||||
</h3>
|
||||
</div>
|
||||
|
||||
<h4>
|
||||
{message}
|
||||
</h4>
|
||||
|
||||
<div className="actions">
|
||||
<antd.Button onClick={onClickPlaylist}>
|
||||
<Icons.PlayCircle />
|
||||
Play
|
||||
</antd.Button>
|
||||
</div>
|
||||
</div>
|
||||
</>
|
||||
}
|
||||
default: {
|
||||
return <>
|
||||
<div className="message">
|
||||
{message}
|
||||
</div>
|
||||
|
||||
{attachments.length > 0 && <PostAttachments attachments={attachments} />}
|
||||
</>
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
return <div
|
||||
className={classnames("post_content", { ["nsfw"]: isNSFW && !nsfwAccepted })}
|
||||
className={
|
||||
classnames(
|
||||
"post_content",
|
||||
{
|
||||
["nsfw"]: props.nsfw && !nsfwAccepted
|
||||
}
|
||||
)
|
||||
}
|
||||
>
|
||||
{isNSFW && !nsfwAccepted &&
|
||||
{props.nsfw && !nsfwAccepted &&
|
||||
<div className="nsfw_alert">
|
||||
<h2>
|
||||
This post may contain sensitive content.
|
||||
@ -125,6 +73,12 @@ export default React.memo((props) => {
|
||||
</div>
|
||||
}
|
||||
|
||||
{renderContent()}
|
||||
<div className="message">
|
||||
{message}
|
||||
</div>
|
||||
|
||||
{
|
||||
props.children
|
||||
}
|
||||
</div>
|
||||
})
|
||||
}
|
@ -7,10 +7,11 @@ import { Icons } from "components/Icons"
|
||||
import PostHeader from "./components/header"
|
||||
import PostContent from "./components/content"
|
||||
import PostActions from "./components/actions"
|
||||
import PostAttachments from "./components/attachments"
|
||||
|
||||
import "./index.less"
|
||||
|
||||
export default React.memo(({
|
||||
export default ({
|
||||
expansibleActions = window.app.settings.get("postCard_expansible_actions"),
|
||||
autoCarrousel = window.app.settings.get("postCard_carrusel_auto"),
|
||||
data = {},
|
||||
@ -160,7 +161,12 @@ export default React.memo(({
|
||||
autoCarrousel={autoCarrousel}
|
||||
fullmode={fullmode}
|
||||
onDoubleClick={onDoubleClick}
|
||||
/>
|
||||
nsfw={data.flags && data.flags.includes("nsfw")}
|
||||
>
|
||||
{data.attachments && data.attachments.length > 0 && <PostAttachments
|
||||
attachments={data.attachments}
|
||||
/>}
|
||||
</PostContent>
|
||||
</div>
|
||||
{!fullmode &&
|
||||
<div className="post_actionsIndicator">
|
||||
@ -181,4 +187,4 @@ export default React.memo(({
|
||||
/>
|
||||
}
|
||||
</div>
|
||||
})
|
||||
}
|
Loading…
x
Reference in New Issue
Block a user