mirror of
https://github.com/scm-manager/scm-manager.git
synced 2025-11-09 15:05:44 +01:00
render markdown files in sourcesView
This commit is contained in:
@@ -0,0 +1,38 @@
|
|||||||
|
import React, { FC, useEffect, useState } from "react";
|
||||||
|
import { getContent } from "./SourcecodeViewer";
|
||||||
|
import { Link, File } from "@scm-manager/ui-types";
|
||||||
|
import { Loading, ErrorNotification, MarkdownView, Button, Level } from "@scm-manager/ui-components";
|
||||||
|
|
||||||
|
type Props = {
|
||||||
|
file: File;
|
||||||
|
};
|
||||||
|
|
||||||
|
const MarkdownViewer: FC<Props> = ({ file }) => {
|
||||||
|
const [loading, setLoading] = useState<boolean>(true);
|
||||||
|
const [error, setError] = useState<Error | undefined>(undefined);
|
||||||
|
const [content, setContent] = useState<string>("");
|
||||||
|
|
||||||
|
useEffect(() => {
|
||||||
|
getContent((file._links.self as Link).href)
|
||||||
|
.then(content => {
|
||||||
|
setLoading(false);
|
||||||
|
setContent(content);
|
||||||
|
})
|
||||||
|
.catch(error => {
|
||||||
|
setLoading(false);
|
||||||
|
setError(error);
|
||||||
|
});
|
||||||
|
}, [file]);
|
||||||
|
|
||||||
|
if (loading) {
|
||||||
|
return <Loading />;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (error) {
|
||||||
|
return <ErrorNotification error={error} />;
|
||||||
|
}
|
||||||
|
|
||||||
|
return <MarkdownView content={content} />;
|
||||||
|
};
|
||||||
|
|
||||||
|
export default MarkdownViewer;
|
||||||
@@ -1,14 +1,16 @@
|
|||||||
import React from "react";
|
import React from "react";
|
||||||
|
import { WithTranslation, withTranslation } from "react-i18next";
|
||||||
import SourcecodeViewer from "../components/content/SourcecodeViewer";
|
import SourcecodeViewer from "../components/content/SourcecodeViewer";
|
||||||
import ImageViewer from "../components/content/ImageViewer";
|
import ImageViewer from "../components/content/ImageViewer";
|
||||||
|
import MarkdownViewer from "../components/content/MarkdownViewer";
|
||||||
import DownloadViewer from "../components/content/DownloadViewer";
|
import DownloadViewer from "../components/content/DownloadViewer";
|
||||||
import { ExtensionPoint } from "@scm-manager/ui-extensions";
|
import { ExtensionPoint } from "@scm-manager/ui-extensions";
|
||||||
import { getContentType } from "./contentType";
|
import { getContentType } from "./contentType";
|
||||||
import { File, Repository } from "@scm-manager/ui-types";
|
import { File, Repository } from "@scm-manager/ui-types";
|
||||||
import { ErrorNotification, Loading } from "@scm-manager/ui-components";
|
import { ErrorNotification, Loading, Button, Level } from "@scm-manager/ui-components";
|
||||||
|
import { Icon } from "@scm-manager/ui-components/src";
|
||||||
|
|
||||||
type Props = {
|
type Props = WithTranslation & {
|
||||||
repository: Repository;
|
repository: Repository;
|
||||||
file: File;
|
file: File;
|
||||||
revision: string;
|
revision: string;
|
||||||
@@ -18,6 +20,7 @@ type Props = {
|
|||||||
type State = {
|
type State = {
|
||||||
contentType: string;
|
contentType: string;
|
||||||
language: string;
|
language: string;
|
||||||
|
renderMarkdown: boolean;
|
||||||
loaded: boolean;
|
loaded: boolean;
|
||||||
error?: Error;
|
error?: Error;
|
||||||
};
|
};
|
||||||
@@ -29,7 +32,8 @@ class SourcesView extends React.Component<Props, State> {
|
|||||||
this.state = {
|
this.state = {
|
||||||
contentType: "",
|
contentType: "",
|
||||||
language: "",
|
language: "",
|
||||||
loaded: false
|
loaded: false,
|
||||||
|
renderMarkdown: true
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -53,11 +57,32 @@ class SourcesView extends React.Component<Props, State> {
|
|||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
|
toggleMarkdown = () => {
|
||||||
|
this.setState({ renderMarkdown: !this.state.renderMarkdown });
|
||||||
|
};
|
||||||
|
|
||||||
showSources() {
|
showSources() {
|
||||||
const { file, revision } = this.props;
|
const { file, revision } = this.props;
|
||||||
const { contentType, language } = this.state;
|
const { contentType, language, renderMarkdown } = this.state;
|
||||||
if (contentType.startsWith("image/")) {
|
if (contentType.startsWith("image/")) {
|
||||||
return <ImageViewer file={file} />;
|
return <ImageViewer file={file} />;
|
||||||
|
} else if (contentType.includes("markdown")) {
|
||||||
|
return (
|
||||||
|
<>
|
||||||
|
<Level
|
||||||
|
right={
|
||||||
|
<Button
|
||||||
|
color={renderMarkdown ? "" : "primary"}
|
||||||
|
action={this.toggleMarkdown}
|
||||||
|
title={renderMarkdown ? "render sources" : "render markdown"}
|
||||||
|
icon="markdown"
|
||||||
|
>
|
||||||
|
</Button>
|
||||||
|
}
|
||||||
|
/>
|
||||||
|
{renderMarkdown ? <MarkdownViewer file={file} /> : <SourcecodeViewer file={file} language={language} />}
|
||||||
|
</>
|
||||||
|
);
|
||||||
} else if (language) {
|
} else if (language) {
|
||||||
return <SourcecodeViewer file={file} language={language} />;
|
return <SourcecodeViewer file={file} language={language} />;
|
||||||
} else if (contentType.startsWith("text/")) {
|
} else if (contentType.startsWith("text/")) {
|
||||||
@@ -95,4 +120,4 @@ class SourcesView extends React.Component<Props, State> {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
export default SourcesView;
|
export default withTranslation("repos")(SourcesView);
|
||||||
|
|||||||
Reference in New Issue
Block a user