mirror of
https://github.com/stashapp/stash.git
synced 2025-12-06 08:26:00 +01:00
* Don't set image title to filename in graphql * Remove deprecated files field from image fragments
404 lines
11 KiB
TypeScript
404 lines
11 KiB
TypeScript
import { Tab, Nav, Dropdown } from "react-bootstrap";
|
|
import React, { useContext, useEffect, useMemo, useState } from "react";
|
|
import { FormattedDate, FormattedMessage, useIntl } from "react-intl";
|
|
import { useHistory, Link, RouteComponentProps } from "react-router-dom";
|
|
import { Helmet } from "react-helmet";
|
|
import {
|
|
useFindImage,
|
|
useImageIncrementO,
|
|
useImageUpdate,
|
|
mutateMetadataScan,
|
|
useImageDecrementO,
|
|
useImageResetO,
|
|
} from "src/core/StashService";
|
|
import { ErrorMessage } from "src/components/Shared/ErrorMessage";
|
|
import { LoadingIndicator } from "src/components/Shared/LoadingIndicator";
|
|
import { Icon } from "src/components/Shared/Icon";
|
|
import { Counter } from "src/components/Shared/Counter";
|
|
import { useToast } from "src/hooks/Toast";
|
|
import * as Mousetrap from "mousetrap";
|
|
import * as GQL from "src/core/generated-graphql";
|
|
import { OCounterButton } from "src/components/Scenes/SceneDetails/OCounterButton";
|
|
import { OrganizedButton } from "src/components/Scenes/SceneDetails/OrganizedButton";
|
|
import { ImageFileInfoPanel } from "./ImageFileInfoPanel";
|
|
import { ImageEditPanel } from "./ImageEditPanel";
|
|
import { ImageDetailPanel } from "./ImageDetailPanel";
|
|
import { DeleteImagesDialog } from "../DeleteImagesDialog";
|
|
import { faEllipsisV } from "@fortawesome/free-solid-svg-icons";
|
|
import { imagePath, imageTitle } from "src/core/files";
|
|
import { isVideo } from "src/utils/visualFile";
|
|
import { useScrollToTopOnMount } from "src/hooks/scrollToTop";
|
|
import { useRatingKeybinds } from "src/hooks/keybinds";
|
|
import { ConfigurationContext } from "src/hooks/Config";
|
|
import TextUtils from "src/utils/text";
|
|
import { RatingSystem } from "src/components/Shared/Rating/RatingSystem";
|
|
import cx from "classnames";
|
|
import { TruncatedText } from "src/components/Shared/TruncatedText";
|
|
|
|
interface IProps {
|
|
image: GQL.ImageDataFragment;
|
|
}
|
|
|
|
interface IImageParams {
|
|
id: string;
|
|
}
|
|
|
|
const ImagePage: React.FC<IProps> = ({ image }) => {
|
|
const history = useHistory();
|
|
const Toast = useToast();
|
|
const intl = useIntl();
|
|
const { configuration } = useContext(ConfigurationContext);
|
|
|
|
const [incrementO] = useImageIncrementO(image.id);
|
|
const [decrementO] = useImageDecrementO(image.id);
|
|
const [resetO] = useImageResetO(image.id);
|
|
|
|
const [updateImage] = useImageUpdate();
|
|
|
|
const [organizedLoading, setOrganizedLoading] = useState(false);
|
|
|
|
const [activeTabKey, setActiveTabKey] = useState("image-details-panel");
|
|
|
|
const [isDeleteAlertOpen, setIsDeleteAlertOpen] = useState<boolean>(false);
|
|
|
|
async function onSave(input: GQL.ImageUpdateInput) {
|
|
await updateImage({
|
|
variables: { input },
|
|
});
|
|
Toast.success(
|
|
intl.formatMessage(
|
|
{ id: "toast.updated_entity" },
|
|
{ entity: intl.formatMessage({ id: "image" }).toLocaleLowerCase() }
|
|
)
|
|
);
|
|
}
|
|
|
|
async function onRescan() {
|
|
if (!image || !image.visual_files.length) {
|
|
return;
|
|
}
|
|
|
|
await mutateMetadataScan({
|
|
paths: [imagePath(image)],
|
|
rescan: true,
|
|
});
|
|
|
|
Toast.success(
|
|
intl.formatMessage(
|
|
{ id: "toast.rescanning_entity" },
|
|
{
|
|
count: 1,
|
|
singularEntity: intl.formatMessage({ id: "image" }),
|
|
}
|
|
)
|
|
);
|
|
}
|
|
|
|
const onOrganizedClick = async () => {
|
|
try {
|
|
setOrganizedLoading(true);
|
|
await updateImage({
|
|
variables: {
|
|
input: {
|
|
id: image.id,
|
|
organized: !image.organized,
|
|
},
|
|
},
|
|
});
|
|
} catch (e) {
|
|
Toast.error(e);
|
|
} finally {
|
|
setOrganizedLoading(false);
|
|
}
|
|
};
|
|
|
|
const onIncrementClick = async () => {
|
|
try {
|
|
await incrementO();
|
|
} catch (e) {
|
|
Toast.error(e);
|
|
}
|
|
};
|
|
|
|
const onDecrementClick = async () => {
|
|
try {
|
|
await decrementO();
|
|
} catch (e) {
|
|
Toast.error(e);
|
|
}
|
|
};
|
|
|
|
const onResetClick = async () => {
|
|
try {
|
|
await resetO();
|
|
} catch (e) {
|
|
Toast.error(e);
|
|
}
|
|
};
|
|
|
|
function setRating(v: number | null) {
|
|
updateImage({
|
|
variables: {
|
|
input: {
|
|
id: image.id,
|
|
rating100: v,
|
|
},
|
|
},
|
|
});
|
|
}
|
|
|
|
useRatingKeybinds(
|
|
true,
|
|
configuration?.ui.ratingSystemOptions?.type,
|
|
setRating
|
|
);
|
|
|
|
function onDeleteDialogClosed(deleted: boolean) {
|
|
setIsDeleteAlertOpen(false);
|
|
if (deleted) {
|
|
history.push("/images");
|
|
}
|
|
}
|
|
|
|
function maybeRenderDeleteDialog() {
|
|
if (isDeleteAlertOpen && image) {
|
|
return (
|
|
<DeleteImagesDialog selected={[image]} onClose={onDeleteDialogClosed} />
|
|
);
|
|
}
|
|
}
|
|
|
|
function renderOperations() {
|
|
return (
|
|
<Dropdown>
|
|
<Dropdown.Toggle
|
|
variant="secondary"
|
|
id="operation-menu"
|
|
className="minimal"
|
|
title="Operations"
|
|
>
|
|
<Icon icon={faEllipsisV} />
|
|
</Dropdown.Toggle>
|
|
<Dropdown.Menu className="bg-secondary text-white">
|
|
<Dropdown.Item
|
|
key="rescan"
|
|
className="bg-secondary text-white"
|
|
onClick={() => onRescan()}
|
|
>
|
|
<FormattedMessage id="actions.rescan" />
|
|
</Dropdown.Item>
|
|
<Dropdown.Item
|
|
key="delete-image"
|
|
className="bg-secondary text-white"
|
|
onClick={() => setIsDeleteAlertOpen(true)}
|
|
>
|
|
<FormattedMessage
|
|
id="actions.delete"
|
|
values={{ entityType: intl.formatMessage({ id: "image" }) }}
|
|
/>
|
|
</Dropdown.Item>
|
|
</Dropdown.Menu>
|
|
</Dropdown>
|
|
);
|
|
}
|
|
|
|
function renderTabs() {
|
|
if (!image) {
|
|
return;
|
|
}
|
|
|
|
return (
|
|
<Tab.Container
|
|
activeKey={activeTabKey}
|
|
onSelect={(k) => k && setActiveTabKey(k)}
|
|
>
|
|
<div>
|
|
<Nav variant="tabs" className="mr-auto">
|
|
<Nav.Item>
|
|
<Nav.Link eventKey="image-details-panel">
|
|
<FormattedMessage id="details" />
|
|
</Nav.Link>
|
|
</Nav.Item>
|
|
<Nav.Item>
|
|
<Nav.Link eventKey="image-file-info-panel">
|
|
<FormattedMessage id="file_info" />
|
|
<Counter count={image.visual_files.length} hideZero hideOne />
|
|
</Nav.Link>
|
|
</Nav.Item>
|
|
<Nav.Item>
|
|
<Nav.Link eventKey="image-edit-panel">
|
|
<FormattedMessage id="actions.edit" />
|
|
</Nav.Link>
|
|
</Nav.Item>
|
|
</Nav>
|
|
</div>
|
|
|
|
<Tab.Content>
|
|
<Tab.Pane eventKey="image-details-panel">
|
|
<ImageDetailPanel image={image} />
|
|
</Tab.Pane>
|
|
<Tab.Pane
|
|
className="file-info-panel"
|
|
eventKey="image-file-info-panel"
|
|
>
|
|
<ImageFileInfoPanel image={image} />
|
|
</Tab.Pane>
|
|
<Tab.Pane eventKey="image-edit-panel" mountOnEnter>
|
|
<ImageEditPanel
|
|
isVisible={activeTabKey === "image-edit-panel"}
|
|
image={image}
|
|
onSubmit={onSave}
|
|
onDelete={() => setIsDeleteAlertOpen(true)}
|
|
/>
|
|
</Tab.Pane>
|
|
</Tab.Content>
|
|
</Tab.Container>
|
|
);
|
|
}
|
|
|
|
// set up hotkeys
|
|
useEffect(() => {
|
|
Mousetrap.bind("a", () => setActiveTabKey("image-details-panel"));
|
|
Mousetrap.bind("e", () => setActiveTabKey("image-edit-panel"));
|
|
Mousetrap.bind("f", () => setActiveTabKey("image-file-info-panel"));
|
|
Mousetrap.bind("o", () => {
|
|
onIncrementClick();
|
|
});
|
|
|
|
return () => {
|
|
Mousetrap.unbind("a");
|
|
Mousetrap.unbind("e");
|
|
Mousetrap.unbind("f");
|
|
Mousetrap.unbind("o");
|
|
};
|
|
});
|
|
|
|
const file = useMemo(
|
|
() => (image.visual_files.length > 0 ? image.visual_files[0] : undefined),
|
|
[image]
|
|
);
|
|
|
|
const title = imageTitle(image);
|
|
const ImageView =
|
|
image.visual_files.length > 0 && isVideo(image.visual_files[0])
|
|
? "video"
|
|
: "img";
|
|
|
|
const resolution = useMemo(() => {
|
|
return file?.width && file?.height
|
|
? TextUtils.resolution(file?.width, file?.height)
|
|
: undefined;
|
|
}, [file?.width, file?.height]);
|
|
|
|
return (
|
|
<div className="row">
|
|
<Helmet>
|
|
<title>{title}</title>
|
|
</Helmet>
|
|
|
|
{maybeRenderDeleteDialog()}
|
|
<div className="image-tabs order-xl-first order-last">
|
|
<div>
|
|
<div className="image-header-container">
|
|
{image.studio && (
|
|
<h1 className="text-center image-studio-image">
|
|
<Link to={`/studios/${image.studio.id}`}>
|
|
<img
|
|
src={image.studio.image_path ?? ""}
|
|
alt={`${image.studio.name} logo`}
|
|
className="studio-logo"
|
|
/>
|
|
</Link>
|
|
</h1>
|
|
)}
|
|
<h3 className={cx("image-header", { "no-studio": !image.studio })}>
|
|
<TruncatedText lineCount={2} text={title} />
|
|
</h3>
|
|
</div>
|
|
|
|
<div className="image-subheader">
|
|
<span className="date" data-value={image.date}>
|
|
{!!image.date && (
|
|
<FormattedDate
|
|
value={image.date}
|
|
format="long"
|
|
timeZone="utc"
|
|
/>
|
|
)}
|
|
</span>
|
|
{resolution ? (
|
|
<span className="resolution" data-value={resolution}>
|
|
{resolution}
|
|
</span>
|
|
) : undefined}
|
|
</div>
|
|
</div>
|
|
|
|
<div className="image-toolbar">
|
|
<span className="image-toolbar-group">
|
|
<RatingSystem
|
|
value={image.rating100}
|
|
onSetRating={setRating}
|
|
clickToRate
|
|
withoutContext
|
|
/>
|
|
</span>
|
|
<span className="image-toolbar-group">
|
|
<span>
|
|
<OCounterButton
|
|
value={image.o_counter || 0}
|
|
onIncrement={onIncrementClick}
|
|
onDecrement={onDecrementClick}
|
|
onReset={onResetClick}
|
|
/>
|
|
</span>
|
|
<span>
|
|
<OrganizedButton
|
|
loading={organizedLoading}
|
|
organized={image.organized}
|
|
onClick={onOrganizedClick}
|
|
/>
|
|
</span>
|
|
<span>{renderOperations()}</span>
|
|
</span>
|
|
</div>
|
|
{renderTabs()}
|
|
</div>
|
|
<div className="image-container">
|
|
{image.visual_files.length > 0 && (
|
|
<ImageView
|
|
loop={image.visual_files[0].__typename == "VideoFile"}
|
|
autoPlay={image.visual_files[0].__typename == "VideoFile"}
|
|
controls={image.visual_files[0].__typename == "VideoFile"}
|
|
className="m-sm-auto no-gutter image-image"
|
|
style={
|
|
image.visual_files[0].__typename == "VideoFile"
|
|
? { width: "100%", height: "100%" }
|
|
: {}
|
|
}
|
|
alt={title}
|
|
src={image.paths.image ?? ""}
|
|
/>
|
|
)}
|
|
</div>
|
|
</div>
|
|
);
|
|
};
|
|
|
|
const ImageLoader: React.FC<RouteComponentProps<IImageParams>> = ({
|
|
match,
|
|
}) => {
|
|
const { id } = match.params;
|
|
const { data, loading, error } = useFindImage(id);
|
|
|
|
useScrollToTopOnMount();
|
|
|
|
if (loading) return <LoadingIndicator />;
|
|
if (error) return <ErrorMessage error={error.message} />;
|
|
if (!data?.findImage)
|
|
return <ErrorMessage error={`No image found with id ${id}.`} />;
|
|
|
|
return <ImagePage image={data.findImage} />;
|
|
};
|
|
|
|
export default ImageLoader;
|