tutu/src/timelines/MediaAttachmentGrid.tsx

94 lines
2.3 KiB
TypeScript
Raw Normal View History

2024-07-14 12:28:44 +00:00
import type { mastodon } from "masto";
import {
type Component,
For,
createSignal,
onCleanup,
onMount,
} from "solid-js";
2024-07-14 12:28:44 +00:00
import { css } from "solid-styled";
import tootStyle from "./toot.module.css";
2024-08-12 13:55:26 +00:00
import MediaViewer from "./MediaViewer";
import { render } from "solid-js/web";
2024-07-14 12:28:44 +00:00
const MediaAttachmentGrid: Component<{
attachments: mastodon.v1.MediaAttachment[];
}> = (props) => {
let rootRef: HTMLElement;
const [viewerIndex, setViewerIndex] = createSignal<number>();
2024-08-05 07:33:00 +00:00
const viewerOpened = () => typeof viewerIndex() !== "undefined";
2024-07-14 12:28:44 +00:00
const gridTemplateColumns = () => {
const l = props.attachments.length;
if (l < 2) {
return "minmax(40px, auto)";
2024-07-14 12:28:44 +00:00
}
if (l < 4) {
return "repeat(2, minmax(40px, auto))";
2024-07-14 12:28:44 +00:00
}
return "repeat(3, minmax(40px, auto))";
2024-07-14 12:28:44 +00:00
};
const openViewerFor = (index: number) => {
setViewerIndex(index);
const container = document.createElement("div");
container.setAttribute("role", "presentation");
document.body.appendChild(container);
let dispose: () => void;
const removeContainer = () => {
setViewerIndex(undefined);
document.body.removeChild(container);
dispose();
};
dispose = render(() => {
return (
<MediaViewer
show={viewerOpened()}
index={viewerIndex() || 0}
onIndexUpdated={setViewerIndex}
media={props.attachments}
onClose={removeContainer}
/>
);
}, container);
2024-07-14 12:28:44 +00:00
};
css`
.attachments {
grid-template-columns: ${gridTemplateColumns()};
}
`;
return (
<section
ref={rootRef!}
class={[tootStyle.tootAttachmentGrp, "attachments"].join(" ")}
onClick={(e) => e.stopImmediatePropagation()}
>
<For each={props.attachments}>
{(item, index) => {
switch (item.type) {
case "image":
return (
<img
src={item.previewUrl}
alt={item.description || undefined}
onClick={[openViewerFor, index()]}
loading="lazy"
></img>
);
case "video":
case "gifv":
case "audio":
case "unknown":
return <div></div>;
}
}}
</For>
</section>
);
};
export default MediaAttachmentGrid;