Files
SCM-Manager/scm-ui/ui-webapp/src/repos/sources/containers/SourcesView.tsx

99 lines
2.3 KiB
TypeScript
Raw Normal View History

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";
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<Props, State> {
constructor(props: Props) {
super(props);
this.state = {
contentType: "",
language: "",
loaded: false
};
}
componentDidMount() {
const { file } = this.props;
getContentType(file._links.self.href)
.then(result => {
2020-01-15 08:25:59 +01:00
this.setState({
...this.state,
contentType: result.type,
language: result.language,
loaded: true
});
})
2020-01-15 08:25:59 +01:00
.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 <ImageViewer file={file} />;
} else if (language) {
return <SourcecodeViewer file={file} language={language} />;
} else if (contentType.startsWith("text/")) {
return <SourcecodeViewer file={file} language="none" />;
} else {
return (
<ExtensionPoint
name="repos.sources.view"
props={{
file,
contentType,
revision
}}
>
<DownloadViewer file={file} />
</ExtensionPoint>
);
}
}
render() {
2019-02-01 10:12:45 +01:00
const { file } = this.props;
const { loaded, error } = this.state;
if (!file || !loaded) {
return <Loading />;
}
if (error) {
return <ErrorNotification error={error} />;
}
const sources = this.showSources();
2019-02-01 10:12:45 +01:00
return <div className="panel-block">{sources}</div>;
}
}
2019-02-01 10:12:45 +01:00
export default SourcesView;