mirror of
https://github.com/stashapp/stash.git
synced 2025-12-21 15:53:49 +01:00
* Replace movies with groups in the UI * Massage menu items * Change view names * Rename Movie components to Group * Refactor movie to group variable names * Rename movie class names to group
122 lines
3 KiB
TypeScript
122 lines
3 KiB
TypeScript
import React from "react";
|
|
import { useIntl } from "react-intl";
|
|
|
|
import * as GQL from "src/core/generated-graphql";
|
|
import { Button, ButtonGroup } from "react-bootstrap";
|
|
import { FilterSelect, SelectObject } from "./Select";
|
|
import {
|
|
GalleryIDSelect,
|
|
excludeFileBasedGalleries,
|
|
} from "../Galleries/GallerySelect";
|
|
|
|
interface IMultiSetProps {
|
|
type: "performers" | "studios" | "tags" | "groups" | "galleries";
|
|
existingIds?: string[];
|
|
ids?: string[];
|
|
mode: GQL.BulkUpdateIdMode;
|
|
disabled?: boolean;
|
|
onUpdate: (ids: string[]) => void;
|
|
onSetMode: (mode: GQL.BulkUpdateIdMode) => void;
|
|
}
|
|
|
|
const Select: React.FC<IMultiSetProps> = (props) => {
|
|
const { type, disabled } = props;
|
|
|
|
function onUpdate(items: SelectObject[]) {
|
|
props.onUpdate(items.map((i) => i.id));
|
|
}
|
|
|
|
if (type === "galleries") {
|
|
return (
|
|
<GalleryIDSelect
|
|
isDisabled={disabled}
|
|
isMulti
|
|
isClearable={false}
|
|
onSelect={onUpdate}
|
|
ids={props.ids ?? []}
|
|
// exclude file-based galleries when setting galleries
|
|
extraCriteria={excludeFileBasedGalleries}
|
|
/>
|
|
);
|
|
}
|
|
|
|
return (
|
|
<FilterSelect
|
|
type={type}
|
|
isDisabled={disabled}
|
|
isMulti
|
|
isClearable={false}
|
|
onSelect={onUpdate}
|
|
ids={props.ids ?? []}
|
|
/>
|
|
);
|
|
};
|
|
|
|
export const MultiSet: React.FC<IMultiSetProps> = (props) => {
|
|
const intl = useIntl();
|
|
const modes = [
|
|
GQL.BulkUpdateIdMode.Set,
|
|
GQL.BulkUpdateIdMode.Add,
|
|
GQL.BulkUpdateIdMode.Remove,
|
|
];
|
|
|
|
function getModeText(mode: GQL.BulkUpdateIdMode) {
|
|
switch (mode) {
|
|
case GQL.BulkUpdateIdMode.Set:
|
|
return intl.formatMessage({
|
|
id: "actions.overwrite",
|
|
defaultMessage: "Overwrite",
|
|
});
|
|
case GQL.BulkUpdateIdMode.Add:
|
|
return intl.formatMessage({ id: "actions.add", defaultMessage: "Add" });
|
|
case GQL.BulkUpdateIdMode.Remove:
|
|
return intl.formatMessage({
|
|
id: "actions.remove",
|
|
defaultMessage: "Remove",
|
|
});
|
|
}
|
|
}
|
|
|
|
function onSetMode(mode: GQL.BulkUpdateIdMode) {
|
|
if (mode === props.mode) {
|
|
return;
|
|
}
|
|
|
|
// if going to Set, set the existing ids
|
|
if (mode === GQL.BulkUpdateIdMode.Set && props.existingIds) {
|
|
props.onUpdate(props.existingIds);
|
|
// if going from Set, wipe the ids
|
|
} else if (
|
|
mode !== GQL.BulkUpdateIdMode.Set &&
|
|
props.mode === GQL.BulkUpdateIdMode.Set
|
|
) {
|
|
props.onUpdate([]);
|
|
}
|
|
|
|
props.onSetMode(mode);
|
|
}
|
|
|
|
function renderModeButton(mode: GQL.BulkUpdateIdMode) {
|
|
return (
|
|
<Button
|
|
key={mode}
|
|
variant="primary"
|
|
active={props.mode === mode}
|
|
size="sm"
|
|
onClick={() => onSetMode(mode)}
|
|
disabled={props.disabled}
|
|
>
|
|
{getModeText(mode)}
|
|
</Button>
|
|
);
|
|
}
|
|
|
|
return (
|
|
<div className="multi-set">
|
|
<ButtonGroup className="button-group-above">
|
|
{modes.map((m) => renderModeButton(m))}
|
|
</ButtonGroup>
|
|
<Select {...props} />
|
|
</div>
|
|
);
|
|
};
|