0
Fork 0
mirror of https://github.com/stonith404/pingvin-share.git synced 2025-01-15 01:14:27 -05:00

fix: show line breaks in txt preview

This commit is contained in:
Elias Schneider 2023-03-14 16:08:57 +01:00
parent a91c531642
commit 37e765ddc7
No known key found for this signature in database
GPG key ID: 07E623B294202B6C
2 changed files with 10 additions and 6 deletions

View file

@ -2,6 +2,7 @@ import { Button, Center, Stack, Text, Title } from "@mantine/core";
import { modals } from "@mantine/modals";
import Link from "next/link";
import React, { Dispatch, SetStateAction, useEffect, useState } from "react";
import api from "../../services/api.service";
const FilePreviewContext = React.createContext<{
shareId: string;
@ -58,7 +59,7 @@ const FileDecider = () => {
return <ImagePreview />;
} else if (mimeType.startsWith("audio/")) {
return <AudioPreview />;
} else if (mimeType == "text/plain") {
} else if (mimeType.startsWith("text/")) {
return <TextPreview />;
} else {
setIsNotSupported(true);
@ -115,15 +116,18 @@ const TextPreview = () => {
const [text, setText] = useState<string | null>(null);
useEffect(() => {
fetch(`/api/shares/${shareId}/files/${fileId}?download=false`)
.then((res) => res.text())
.then((text) => setText(text));
api.get(`/shares/${shareId}/files/${fileId}?download=false`).then((res) => {
console.log(res.data);
setText(res.data);
});
}, [shareId, fileId]);
return (
<Center style={{ minHeight: 200 }}>
<Stack align="center" spacing={10} style={{ width: "100%" }}>
<Text size="sm">{text}</Text>
<Text sx={{ whiteSpace: "pre-wrap" }} size="sm">
{text}
</Text>
</Stack>
</Center>
);

View file

@ -61,7 +61,7 @@ const doesFileSupportPreview = (fileName: string) => {
mimeType.startsWith("video/"),
mimeType.startsWith("image/"),
mimeType.startsWith("audio/"),
mimeType == "text/plain",
mimeType.startsWith("text/"),
mimeType == "application/pdf",
];