blob: adce329559636ba2a26bff627114a972381ea800 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
|
import React from "react";
import ScrollContainer from "react-indiana-drag-scroll";
import { connect } from "react-redux";
import Table from "@material-ui/core/Table";
import TableBody from "@material-ui/core/TableBody";
import TableCell from "@material-ui/core/TableCell";
import Paper from "@material-ui/core/Paper";
import TableRow from "@material-ui/core/TableRow";
import List from "@material-ui/core/List";
import ListItem from "@material-ui/core/ListItem";
import TextField from "@material-ui/core/TextField";
import SocketConnection from "./connect";
import { getGraphFiles } from "./redux/store";
import GitHashButton from "./GitHashButton";
const flexContainer = {
display: "flex",
flexDirection: "row",
padding: 0,
width: "50%",
height: "50%",
};
const textFields = [
"Scroll to commit",
"Commit Range Begin",
"Commit Range End",
];
const GraphCommitDisplay = ({ graphFiles }) => {
return (
<Paper style={{ height: "100%", width: "100%" }}>
<List style={flexContainer}>
{textFields.map((text) => (
<ListItem key={text}>
<TextField size="small" label={text} />
</ListItem>
))}
</List>
<ScrollContainer
vertical={false}
style={{ height: "50%" }}
className="scroll-container"
hideScrollbars={true}
>
<Table style={{ height: "100%" }}>
<TableBody>
<TableRow>
{graphFiles.map((file) => (
<TableCell key={file.id}>
<GitHashButton text={file.git} />
</TableCell>
))}
</TableRow>
</TableBody>
</Table>
<SocketConnection />
</ScrollContainer>
</Paper>
);
};
export default connect(getGraphFiles)(GraphCommitDisplay);
|