Files
SCM-Manager/scm-ui/ui-webapp/src/repos/sources/components/FileTreeLeaf.tsx

96 lines
2.4 KiB
TypeScript
Raw Normal View History

import * as React from 'react';
import { Link } from 'react-router-dom';
import classNames from 'classnames';
import styled from 'styled-components';
import { binder, ExtensionPoint } from '@scm-manager/ui-extensions';
import { File } from '@scm-manager/ui-types';
import { DateFromNow, FileSize } from '@scm-manager/ui-components';
import FileIcon from './FileIcon';
2018-09-27 16:32:37 +02:00
type Props = {
file: File;
baseUrl: string;
2018-09-27 16:32:37 +02:00
};
const MinWidthTd = styled.td`
min-width: 10em;
`;
export function createLink(base: string, file: File) {
let link = base;
if (file.path) {
let path = file.path;
if (path.startsWith('/')) {
path = path.substring(1);
}
link += '/' + path;
}
if (!link.endsWith('/')) {
link += '/';
}
return link;
}
export default class FileTreeLeaf extends React.Component<Props> {
createLink = (file: File) => {
return createLink(this.props.baseUrl, file);
};
createFileIcon = (file: File) => {
if (file.directory) {
return (
<Link to={this.createLink(file)}>
<FileIcon file={file} />
</Link>
);
}
return (
<Link to={this.createLink(file)}>
<FileIcon file={file} />
</Link>
);
};
createFileName = (file: File) => {
if (file.directory) {
return <Link to={this.createLink(file)}>{file.name}</Link>;
}
return <Link to={this.createLink(file)}>{file.name}</Link>;
};
2018-09-27 16:32:37 +02:00
render() {
const { file } = this.props;
2018-09-27 16:32:37 +02:00
const fileSize = file.directory ? '' : <FileSize bytes={file.length} />;
2018-09-27 16:32:37 +02:00
return (
<tr>
<td>{this.createFileIcon(file)}</td>
<MinWidthTd className="is-word-break">
{this.createFileName(file)}
</MinWidthTd>
<td className="is-hidden-mobile">{fileSize}</td>
<td className="is-hidden-mobile">
2018-09-27 16:32:37 +02:00
<DateFromNow date={file.lastModified} />
</td>
<MinWidthTd className={classNames('is-word-break', 'is-hidden-mobile')}>
{file.description}
</MinWidthTd>
{binder.hasExtension('repos.sources.tree.row.right') && (
<td className="is-hidden-mobile">
{!file.directory && (
<ExtensionPoint
2019-08-29 16:27:40 +02:00
name="repos.sources.tree.row.right"
props={{
file,
}}
renderAll={true}
/>
)}
</td>
)}
2018-09-27 16:32:37 +02:00
</tr>
);
}
}