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 { constructor(props: Props) { super(props); this.state = { contentType: '', language: '', loaded: false, }; } componentDidMount() { const { file } = this.props; getContentType(file._links.self.href) .then(result => { if (result.error) { this.setState({ ...this.state, error: result.error, loaded: true, }); } else { this.setState({ ...this.state, contentType: result.type, language: result.language, loaded: true, }); } }) .catch(err => {}); } showSources() { const { file, revision } = this.props; const { contentType, language } = this.state; if (contentType.startsWith('image/')) { 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;