mirror of
https://github.com/rzmk/learnhouse.git
synced 2025-12-19 04:19:25 +00:00
88 lines
2.4 KiB
TypeScript
88 lines
2.4 KiB
TypeScript
import { NodeViewWrapper } from "@tiptap/react";
|
|
import React from "react";
|
|
import styled from "styled-components";
|
|
import { AlertCircle, AlertTriangle, FileText, Image, ImagePlus, Info } from "lucide-react";
|
|
import { getPDFFile, uploadNewPDFFile } from "../../../../services/files/documents";
|
|
import { getBackendUrl } from "../../../../services/config";
|
|
|
|
function PDFBlockComponent(props: any) {
|
|
const [pdf, setPDF] = React.useState(null);
|
|
const [isLoading, setIsLoading] = React.useState(false);
|
|
const [fileObject, setfileObject] = React.useState(props.node.attrs.fileObject);
|
|
|
|
const handlePDFChange = (event: React.ChangeEvent<any>) => {
|
|
setPDF(event.target.files[0]);
|
|
};
|
|
|
|
const handleSubmit = async (e: any) => {
|
|
e.preventDefault();
|
|
setIsLoading(true);
|
|
let object = await uploadNewPDFFile(pdf, props.extension.options.lecture.lecture_id);
|
|
setIsLoading(false);
|
|
setfileObject(object);
|
|
props.updateAttributes({
|
|
fileObject: object,
|
|
});
|
|
};
|
|
|
|
return (
|
|
<NodeViewWrapper className="block-pdf">
|
|
{!fileObject && (
|
|
<BlockPDFWrapper contentEditable={props.extension.options.editable}>
|
|
<div>
|
|
<FileText color="#e1e0e0" size={50} />
|
|
<br />
|
|
</div>
|
|
<input onChange={handlePDFChange} type="file" name="" id="" />
|
|
<br />
|
|
<button onClick={handleSubmit}>Submit</button>
|
|
</BlockPDFWrapper>
|
|
)}
|
|
{fileObject && (
|
|
<BlockPDF>
|
|
<iframe
|
|
src={`${getBackendUrl()}content/uploads/files/documents/${props.extension.options.lecture.lecture_id}/${fileObject.file_id}.${
|
|
fileObject.file_format
|
|
}`}
|
|
/>
|
|
</BlockPDF>
|
|
)}
|
|
{isLoading && (
|
|
<div>
|
|
<AlertTriangle color="#e1e0e0" size={50} />
|
|
</div>
|
|
)}
|
|
</NodeViewWrapper>
|
|
);
|
|
}
|
|
|
|
export default PDFBlockComponent;
|
|
|
|
const BlockPDFWrapper = styled.div`
|
|
display: flex;
|
|
flex-direction: column;
|
|
background: #f9f9f9;
|
|
border-radius: 3px;
|
|
padding: 30px;
|
|
min-height: 74px;
|
|
border: ${(props) => (props.contentEditable ? "2px dashed #713f1117" : "none")};
|
|
|
|
// center
|
|
align-items: center;
|
|
justify-content: center;
|
|
text-align: center;
|
|
font-size: 14px;
|
|
`;
|
|
|
|
const BlockPDF = styled.div`
|
|
display: flex;
|
|
flex-direction: column;
|
|
img {
|
|
width: 100%;
|
|
border-radius: 6px;
|
|
height: 300px;
|
|
// cover
|
|
object-fit: cover;
|
|
}
|
|
`;
|
|
const PDFNotFound = styled.div``;
|