mirror of
https://github.com/docmost/docmost
synced 2025-03-28 21:13:28 +00:00

* * multi-file paste support * allow media files (image/videos) to be attachments * insert trailing node if file placeholder is at the end of the editor * fix video align
30 lines
830 B
TypeScript
30 lines
830 B
TypeScript
import { NodeViewProps, NodeViewWrapper } from "@tiptap/react";
|
|
import { useMemo } from "react";
|
|
import { getFileUrl } from "@/lib/config.ts";
|
|
import clsx from "clsx";
|
|
|
|
export default function VideoView(props: NodeViewProps) {
|
|
const { node, selected } = props;
|
|
const { src, width, align } = node.attrs;
|
|
|
|
const alignClass = useMemo(() => {
|
|
if (align === "left") return "alignLeft";
|
|
if (align === "right") return "alignRight";
|
|
if (align === "center") return "alignCenter";
|
|
return "alignCenter";
|
|
}, [align]);
|
|
|
|
return (
|
|
<NodeViewWrapper>
|
|
<video
|
|
preload="metadata"
|
|
width={width}
|
|
controls
|
|
src={getFileUrl(src)}
|
|
className={clsx(selected ? "ProseMirror-selectednode" : "", alignClass)}
|
|
style={{ display: "block" }}
|
|
/>
|
|
</NodeViewWrapper>
|
|
);
|
|
}
|