mirror of
https://github.com/stashapp/stash.git
synced 2025-12-17 20:34:37 +03:00
* Add ids to findMovies input * Use ids for other find interfaces * Update client side * Fix gallery select function * Replace movie select * Re-add creatable * Overhaul movie table * Remove and deprecated unused code
230 lines
6.3 KiB
TypeScript
230 lines
6.3 KiB
TypeScript
import React, { useEffect, useMemo, useState } from "react";
|
|
import {
|
|
OptionProps,
|
|
components as reactSelectComponents,
|
|
MultiValueGenericProps,
|
|
SingleValueProps,
|
|
} from "react-select";
|
|
import cx from "classnames";
|
|
|
|
import * as GQL from "src/core/generated-graphql";
|
|
import {
|
|
queryFindGalleriesForSelect,
|
|
queryFindGalleriesByIDForSelect,
|
|
} from "src/core/StashService";
|
|
import { ConfigurationContext } from "src/hooks/Config";
|
|
import { useIntl } from "react-intl";
|
|
import { defaultMaxOptionsShown } from "src/core/config";
|
|
import { ListFilterModel } from "src/models/list-filter/filter";
|
|
import {
|
|
FilterSelectComponent,
|
|
IFilterIDProps,
|
|
IFilterProps,
|
|
IFilterValueProps,
|
|
Option as SelectOption,
|
|
} from "../Shared/FilterSelect";
|
|
import { useCompare } from "src/hooks/state";
|
|
import { Placement } from "react-bootstrap/esm/Overlay";
|
|
import { sortByRelevance } from "src/utils/query";
|
|
import { galleryTitle } from "src/core/galleries";
|
|
import { PatchComponent } from "src/patch";
|
|
|
|
export type Gallery = Pick<GQL.Gallery, "id" | "title"> & {
|
|
files: Pick<GQL.GalleryFile, "path">[];
|
|
folder?: Pick<GQL.Folder, "path"> | null;
|
|
};
|
|
type Option = SelectOption<Gallery>;
|
|
|
|
const _GallerySelect: React.FC<
|
|
IFilterProps &
|
|
IFilterValueProps<Gallery> & {
|
|
hoverPlacement?: Placement;
|
|
excludeIds?: string[];
|
|
}
|
|
> = (props) => {
|
|
const { configuration } = React.useContext(ConfigurationContext);
|
|
const intl = useIntl();
|
|
const maxOptionsShown =
|
|
configuration?.ui.maxOptionsShown ?? defaultMaxOptionsShown;
|
|
|
|
const exclude = useMemo(() => props.excludeIds ?? [], [props.excludeIds]);
|
|
|
|
async function loadGalleries(input: string): Promise<Option[]> {
|
|
const filter = new ListFilterModel(GQL.FilterMode.Galleries);
|
|
filter.searchTerm = input;
|
|
filter.currentPage = 1;
|
|
filter.itemsPerPage = maxOptionsShown;
|
|
filter.sortBy = "title";
|
|
filter.sortDirection = GQL.SortDirectionEnum.Asc;
|
|
const query = await queryFindGalleriesForSelect(filter);
|
|
let ret = query.data.findGalleries.galleries.filter((gallery) => {
|
|
// HACK - we should probably exclude these in the backend query, but
|
|
// this will do in the short-term
|
|
return !exclude.includes(gallery.id.toString());
|
|
});
|
|
|
|
return sortByRelevance(input, ret, galleryTitle, (g) => {
|
|
return g.files.map((f) => f.path).concat(g.folder?.path ?? []);
|
|
}).map((gallery) => ({
|
|
value: gallery.id,
|
|
object: gallery,
|
|
}));
|
|
}
|
|
|
|
const GalleryOption: React.FC<OptionProps<Option, boolean>> = (
|
|
optionProps
|
|
) => {
|
|
let thisOptionProps = optionProps;
|
|
|
|
const { object } = optionProps.data;
|
|
|
|
const title = galleryTitle(object);
|
|
|
|
// if title does not match the input value but the path does, show the path
|
|
const { inputValue } = optionProps.selectProps;
|
|
let matchedPath: string | undefined = "";
|
|
if (!title.toLowerCase().includes(inputValue.toLowerCase())) {
|
|
matchedPath = object.files?.find((a) =>
|
|
a.path.toLowerCase().includes(inputValue.toLowerCase())
|
|
)?.path;
|
|
|
|
if (
|
|
!matchedPath &&
|
|
object.folder?.path.toLowerCase().includes(inputValue.toLowerCase())
|
|
) {
|
|
matchedPath = object.folder?.path;
|
|
}
|
|
}
|
|
|
|
thisOptionProps = {
|
|
...optionProps,
|
|
children: (
|
|
<span>
|
|
<span>{title}</span>
|
|
{matchedPath && (
|
|
<span className="gallery-select-alias">{` (${matchedPath})`}</span>
|
|
)}
|
|
</span>
|
|
),
|
|
};
|
|
|
|
return <reactSelectComponents.Option {...thisOptionProps} />;
|
|
};
|
|
|
|
const GalleryMultiValueLabel: React.FC<
|
|
MultiValueGenericProps<Option, boolean>
|
|
> = (optionProps) => {
|
|
let thisOptionProps = optionProps;
|
|
|
|
const { object } = optionProps.data;
|
|
|
|
thisOptionProps = {
|
|
...optionProps,
|
|
children: galleryTitle(object),
|
|
};
|
|
|
|
return <reactSelectComponents.MultiValueLabel {...thisOptionProps} />;
|
|
};
|
|
|
|
const GalleryValueLabel: React.FC<SingleValueProps<Option, boolean>> = (
|
|
optionProps
|
|
) => {
|
|
let thisOptionProps = optionProps;
|
|
|
|
const { object } = optionProps.data;
|
|
|
|
thisOptionProps = {
|
|
...optionProps,
|
|
children: <>{galleryTitle(object)}</>,
|
|
};
|
|
|
|
return <reactSelectComponents.SingleValue {...thisOptionProps} />;
|
|
};
|
|
|
|
return (
|
|
<FilterSelectComponent<Gallery, boolean>
|
|
{...props}
|
|
className={cx(
|
|
"gallery-select",
|
|
{
|
|
"gallery-select-active": props.active,
|
|
},
|
|
props.className
|
|
)}
|
|
loadOptions={loadGalleries}
|
|
components={{
|
|
Option: GalleryOption,
|
|
MultiValueLabel: GalleryMultiValueLabel,
|
|
SingleValue: GalleryValueLabel,
|
|
}}
|
|
isMulti={props.isMulti ?? false}
|
|
placeholder={
|
|
props.noSelectionString ??
|
|
intl.formatMessage(
|
|
{ id: "actions.select_entity" },
|
|
{
|
|
entityType: intl.formatMessage({
|
|
id: props.isMulti ? "galleries" : "gallery",
|
|
}),
|
|
}
|
|
)
|
|
}
|
|
closeMenuOnSelect={!props.isMulti}
|
|
/>
|
|
);
|
|
};
|
|
|
|
export const GallerySelect = PatchComponent("GallerySelect", _GallerySelect);
|
|
|
|
const _GalleryIDSelect: React.FC<IFilterProps & IFilterIDProps<Gallery>> = (
|
|
props
|
|
) => {
|
|
const { ids, onSelect: onSelectValues } = props;
|
|
|
|
const [values, setValues] = useState<Gallery[]>([]);
|
|
const idsChanged = useCompare(ids);
|
|
|
|
function onSelect(items: Gallery[]) {
|
|
setValues(items);
|
|
onSelectValues?.(items);
|
|
}
|
|
|
|
async function loadObjectsByID(idsToLoad: string[]): Promise<Gallery[]> {
|
|
const query = await queryFindGalleriesByIDForSelect(idsToLoad);
|
|
const { galleries: loadedGalleries } = query.data.findGalleries;
|
|
|
|
return loadedGalleries;
|
|
}
|
|
|
|
useEffect(() => {
|
|
if (!idsChanged) {
|
|
return;
|
|
}
|
|
|
|
if (!ids || ids?.length === 0) {
|
|
setValues([]);
|
|
return;
|
|
}
|
|
|
|
// load the values if we have ids and they haven't been loaded yet
|
|
const filteredValues = values.filter((v) => ids.includes(v.id.toString()));
|
|
if (filteredValues.length === ids.length) {
|
|
return;
|
|
}
|
|
|
|
const load = async () => {
|
|
const items = await loadObjectsByID(ids);
|
|
setValues(items);
|
|
};
|
|
|
|
load();
|
|
}, [ids, idsChanged, values]);
|
|
|
|
return <GallerySelect {...props} values={values} onSelect={onSelect} />;
|
|
};
|
|
|
|
export const GalleryIDSelect = PatchComponent(
|
|
"GalleryIDSelect",
|
|
_GalleryIDSelect
|
|
);
|