Skip to content

Commit

Permalink
Improve cluster view (#171)
Browse files Browse the repository at this point in the history
* Refactor FileSummaryHeader

* Refactor linear list item

* Extract match file id from URL

* Navigate to comparison page on edge click

* Navigate to compare from single match preview

* Improve cluster tooltips

* Implement node highlighting

* Improve link popover

* Fix linting issues
  • Loading branch information
stepan-anokhin authored Nov 3, 2020
1 parent f481629 commit 36e5bc5
Show file tree
Hide file tree
Showing 18 changed files with 721 additions and 413 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -3,162 +3,91 @@ import clsx from "clsx";
import PropTypes from "prop-types";
import { makeStyles } from "@material-ui/styles";
import { FileType } from "../FileType";
import VideocamOutlinedIcon from "@material-ui/icons/VideocamOutlined";
import ScheduleOutlinedIcon from "@material-ui/icons/ScheduleOutlined";
import EventAvailableOutlinedIcon from "@material-ui/icons/EventAvailableOutlined";
import VolumeOffOutlinedIcon from "@material-ui/icons/VolumeOffOutlined";
import MoreHorizOutlinedIcon from "@material-ui/icons/MoreHorizOutlined";
import AttributeText from "../../../../common/components/AttributeText";
import IconButton from "@material-ui/core/IconButton";
import {
formatBool,
formatDate,
formatDuration,
} from "../../../../common/helpers/format";
import { useIntl } from "react-intl";
import ExifIcon from "../../../../common/components/icons/ExifIcon";
import FileSummary from "../../FileSummary";
import { useMediaQuery } from "@material-ui/core";
import useTheme from "@material-ui/styles/useTheme";

const useStyles = makeStyles((theme) => ({
decor: {
container: {
marginBottom: theme.spacing(2),
backgroundColor: theme.palette.background.paper,
borderRadius: 4,
borderStyle: "solid",
borderWidth: 1,
borderColor: theme.palette.border.light,
},
layout: {
display: "flex",
alignItems: "center",
padding: theme.spacing(3),
},
buttonStyle: {
button: {
cursor: "pointer",
"&:hover": {
borderColor: theme.palette.primary.light,
},
},
icon: {
color: theme.palette.primary.contrastText,
width: theme.spacing(3),
height: theme.spacing(3),
},
iconContainer: {
backgroundColor: theme.palette.primary.main,
width: theme.spacing(4),
height: theme.spacing(4),
display: "flex",
alignItems: "center",
justifyContent: "center",
},
fileName: {
summary: {
flexGrow: 1,
minWidth: 0,
marginLeft: theme.spacing(3),
},
volume: {
color: theme.palette.action.textInactive,
},
attr: {
marginLeft: theme.spacing(3),
marginRight: theme.spacing(3),
},
divider: {
borderLeftStyle: "solid",
borderLeftColor: theme.palette.border.light,
borderLeftWidth: 1,
height: theme.spacing(4),
},
md: {
[theme.breakpoints.down("md")]: {
display: "none",
},
},
sm: {
[theme.breakpoints.down("sm")]: {
display: "none",
},
},
}));

function useMessages(intl) {
/**
* Get i18n text.
*/
function useMessages() {
const intl = useIntl();
return {
attr: {
filename: intl.formatMessage({ id: "file.attr.name" }),
fingerprint: intl.formatMessage({ id: "file.attr.fingerprint" }),
quality: intl.formatMessage({ id: "file.attr.quality" }),
},
containerLabel: intl.formatMessage({ id: "actions.showFileDetails" }),
moreLabel: intl.formatMessage({ id: "actions.showMoreOptions" }),
};
}

/**
* Get screen size.
*/
function useScreenSize() {
const theme = useTheme();
const medium = useMediaQuery(theme.breakpoints.up("md"));
const large = useMediaQuery(theme.breakpoints.up("lg"));
return { medium, large };
}

const FileLinearListItem = React.memo(function FpLinearListItem(props) {
const { file, button = false, highlight, onClick, className } = props;
const intl = useIntl();
const messages = useMessages(intl);
const {
file,
button = false,
highlight,
onClick,
className,
...other
} = props;
const messages = useMessages();
const { large, medium } = useScreenSize();

const handleClick = useCallback(() => onClick(file), [file, onClick]);

const classes = useStyles();
return (
<div
className={clsx(
classes.decor,
classes.layout,
button && classes.buttonStyle,
className
)}
onClick={handleClick}
aria-label={intl.formatMessage({ id: "actions.showFileDetails" })}
className={clsx(classes.container, button && classes.button, className)}
aria-label={messages.containerLabel}
{...other}
>
<div className={classes.iconContainer}>
<VideocamOutlinedIcon className={classes.icon} />
</div>
<AttributeText
name={messages.attr.filename}
value={file.filename}
variant="title"
highlighted={highlight}
ellipsis
className={classes.fileName}
/>
<AttributeText
name={messages.attr.fingerprint}
value={file.fingerprint && file.fingerprint.slice(0, 7)}
variant="primary"
className={clsx(classes.attr, classes.sm)}
/>
<div className={clsx(classes.divider, classes.sm)} />
<AttributeText
value={formatDuration(file.metadata.length, intl)}
icon={ScheduleOutlinedIcon}
variant="normal"
className={classes.attr}
/>
<div className={classes.divider} />
<AttributeText
value={formatDate(file.metadata.uploadDate, intl)}
icon={EventAvailableOutlinedIcon}
variant="normal"
defaultValue="Unknown"
className={clsx(classes.attr, classes.md)}
/>
<div className={clsx(classes.divider, classes.md)} />
<AttributeText
value={formatBool(file.metadata.hasEXIF, intl)}
icon={ExifIcon}
variant="primary"
className={clsx(classes.attr, classes.md)}
/>
<div className={clsx(classes.divider, classes.md)} />
<VolumeOffOutlinedIcon
className={clsx(classes.attr, classes.volume, classes.md)}
/>
<div className={clsx(classes.divider, classes.md)} />
<IconButton
aria-label={intl.formatMessage({ id: "actions.showMoreOptions" })}
>
<MoreHorizOutlinedIcon />
</IconButton>
<FileSummary file={file} divider className={classes.summary}>
<FileSummary.Name highlight={highlight} />
{medium && <FileSummary.Fingerprint />}
<FileSummary.Duration />
{large && <FileSummary.CreationDate />}
{large && <FileSummary.HasExif />}
{large && <FileSummary.HasAudio />}
<IconButton aria-label={messages.moreLabel}>
<MoreHorizOutlinedIcon />
</IconButton>
</FileSummary>
</div>
);
});
Expand Down
Original file line number Diff line number Diff line change
@@ -1,11 +1,12 @@
import React from "react";
import React, { useCallback } from "react";
import clsx from "clsx";
import PropTypes from "prop-types";
import { makeStyles } from "@material-ui/styles";
import Grid from "@material-ui/core/Grid";
import MotherFile from "./MotherFile/MotherFile";
import MatchFiles from "./MatchFiles/MatchFiles";
import { useParams } from "react-router-dom";
import { useHistory, useParams } from "react-router-dom";
import { routes } from "../../../routing/routes";

const useStyles = makeStyles((theme) => ({
root: {
Expand All @@ -16,17 +17,28 @@ const useStyles = makeStyles((theme) => ({
function FileComparisonPage(props) {
const { className } = props;
const classes = useStyles();
const { id: rawId } = useParams();
const history = useHistory();
const { id: rawId, matchFileId } = useParams();
const id = Number(rawId);

const handleMatchFileChange = useCallback(
(newMatchFileId) =>
history.push(routes.collection.fileComparisonURL(id, newMatchFileId)),
[id]
);

return (
<div className={clsx(classes.root, className)}>
<Grid container spacing={0}>
<Grid item xs={12} lg={6}>
<MotherFile motherFileId={id} />
</Grid>
<Grid item xs={12} lg={6}>
<MatchFiles motherFileId={id} />
<MatchFiles
motherFileId={id}
matchFileId={matchFileId != null ? Number(matchFileId) : null}
onMatchFileChange={handleMatchFileChange}
/>
</Grid>
</Grid>
</div>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import React, { useState } from "react";
import React, { useCallback, useEffect } from "react";
import clsx from "clsx";
import PropTypes from "prop-types";
import { makeStyles } from "@material-ui/styles";
Expand Down Expand Up @@ -29,6 +29,14 @@ const useStyles = makeStyles((theme) => ({
marginTop: 0,
margin: theme.spacing(2),
},
errorMessage: {
minHeight: 150,
...theme.mixins.title2,
color: theme.palette.action.textInactive,
display: "flex",
alignItems: "center",
justifyContent: "center",
},
}));

/**
Expand All @@ -39,14 +47,21 @@ function useMessages() {
return {
title: intl.formatMessage({ id: "file.match" }),
loadError: intl.formatMessage({ id: "match.load.error" }),
notMatch: intl.formatMessage({ id: "match.notMatch" }),
noMatches: intl.formatMessage({ id: "match.noMatches" }),
};
}

function MatchFiles(props) {
const { motherFileId, className, ...other } = props;
const {
motherFileId,
matchFileId,
onMatchFileChange,
className,
...other
} = props;
const classes = useStyles();
const messages = useMessages();
const [selected, setSelected] = useState(0);

const {
matches,
Expand All @@ -56,6 +71,23 @@ function MatchFiles(props) {
progress,
} = useDirectMatches(motherFileId);

// Move to the first element when matches are loaded
useEffect(() => {
if (!hasMore && matches.length > 0 && matchFileId == null) {
onMatchFileChange(matches[0].file.id);
}
}, [hasMore, onMatchFileChange, motherFileId]);

// Get index of the selected match file
const selected = matches.findIndex((match) => match.file.id === matchFileId);

const handleSelectionChange = useCallback(
(index) => {
onMatchFileChange(matches[index].file.id);
},
[hasMore, onMatchFileChange, motherFileId]
);

let content;
if (hasMore) {
content = (
Expand All @@ -67,7 +99,7 @@ function MatchFiles(props) {
progress={progress}
/>
);
} else if (matches.length > 0) {
} else if (matches.length > 0 && selected >= 0) {
content = (
<div>
<FileMatchHeader
Expand All @@ -79,7 +111,9 @@ function MatchFiles(props) {
</div>
);
} else {
content = null;
const errorMessage =
matches.length === 0 ? messages.noMatches : messages.notMatch;
content = <div className={classes.errorMessage}>{errorMessage}</div>;
}

return (
Expand All @@ -90,7 +124,7 @@ function MatchFiles(props) {
<MatchSelector
matches={matches}
selected={selected}
onChange={setSelected}
onChange={handleSelectionChange}
/>
)}
</div>
Expand All @@ -104,6 +138,14 @@ MatchFiles.propTypes = {
* Mother file id.
*/
motherFileId: PropTypes.number.isRequired,
/**
* Match file id.
*/
matchFileId: PropTypes.number,
/**
* Handle match file change.
*/
onMatchFileChange: PropTypes.func.isRequired,
className: PropTypes.string,
};

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ function MatchSelector(props) {
<InputLabel id={labelId}>{messages.label}</InputLabel>
<Select
labelId={labelId}
value={matches.length > 0 ? selected : ""}
value={matches.length > 0 && selected >= 0 ? selected : ""}
onChange={handleSelect}
label={messages.label}
disabled={matches.length === 0}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ function FileMatchesPage(props) {
const history = useHistory();

const handleCompare = useCallback(
() => history.push(routes.collection.fileComparisonURL(id)),
(file) => history.push(routes.collection.fileComparisonURL(id, file?.id)),
[id]
);

Expand Down Expand Up @@ -157,6 +157,7 @@ function FileMatchesPage(props) {
<MatchPreview
distance={match.distance}
file={getMatchedFile(match, files, id)}
onCompare={handleCompare}
/>
</Grid>
))}
Expand Down
Loading

0 comments on commit 36e5bc5

Please sign in to comment.