import React from "react"; import SourcecodeViewer from "../components/content/SourcecodeViewer"; import ImageViewer from "../components/content/ImageViewer"; import DownloadViewer from "../components/content/DownloadViewer"; import { ExtensionPoint } from "@scm-manager/ui-extensions"; import { getContentType } from "./contentType"; import { File, Repository } from "@scm-manager/ui-types"; import { ErrorNotification, Loading } from "@scm-manager/ui-components"; import SwitchableMarkdownViewer from "../components/content/SwitchableMarkdownViewer"; type Props = { repository: Repository; file: File; revision: string; path: string; }; type State = { contentType: string; language: string; loaded: boolean; error?: Error; }; class SourcesView extends React.Component { constructor(props: Props) { super(props); this.state = { contentType: "", language: "", loaded: false }; } componentDidMount() { const { file } = this.props; getContentType(file._links.self.href) .then(result => { this.setState({ ...this.state, contentType: result.type, language: result.language, loaded: true }); }) .catch(error => { this.setState({ ...this.state, error, loaded: true }); }); } showSources() { const { file, revision } = this.props; const { contentType, language } = this.state; if (contentType.startsWith("image/")) { return ; } else if (contentType.includes("markdown")) { return ; } else if (language) { return ; } else if (contentType.startsWith("text/")) { return ; } else { return ( ); } } render() { const { file } = this.props; const { loaded, error } = this.state; if (!file || !loaded) { return ; } if (error) { return ; } const sources = this.showSources(); return
{sources}
; } } export default SourcesView;