mirror of
https://github.com/stashapp/stash.git
synced 2025-12-17 04:14:39 +03:00
* Refactor performer relationships * Remove checksum from performer * Add disambiguation, overhaul aliases * Add disambiguation filter criterion * Improve name matching during import * Add disambiguation filtering in UI * Include aliases in performer select
64 lines
1.9 KiB
TypeScript
64 lines
1.9 KiB
TypeScript
import { faMinus } from "@fortawesome/free-solid-svg-icons";
|
|
import React from "react";
|
|
import { Button, Form, InputGroup } from "react-bootstrap";
|
|
import Icon from "src/components/Shared/Icon";
|
|
|
|
interface IStringListInputProps {
|
|
value: string[];
|
|
setValue: (value: string[]) => void;
|
|
defaultNewValue?: string;
|
|
className?: string;
|
|
errors?: string;
|
|
}
|
|
|
|
export const StringListInput: React.FC<IStringListInputProps> = (props) => {
|
|
const values = props.value.concat(props.defaultNewValue || "");
|
|
|
|
function valueChanged(idx: number, value: string) {
|
|
const newValues = values
|
|
.map((v, i) => {
|
|
const ret = idx !== i ? v : value;
|
|
return ret;
|
|
})
|
|
.filter((v, i) => i < values.length - 2 || v);
|
|
props.setValue(newValues);
|
|
}
|
|
|
|
function removeValue(idx: number) {
|
|
const newValues = props.value.filter((_v, i) => i !== idx);
|
|
|
|
props.setValue(newValues);
|
|
}
|
|
|
|
return (
|
|
<>
|
|
<div className={`string-list-input ${props.errors ? "is-invalid" : ""}`}>
|
|
<Form.Group>
|
|
{values.map((v, i) => (
|
|
// eslint-disable-next-line react/no-array-index-key
|
|
<InputGroup className={props.className} key={i}>
|
|
<Form.Control
|
|
className="text-input"
|
|
value={v}
|
|
onChange={(e: React.ChangeEvent<HTMLInputElement>) =>
|
|
valueChanged(i, e.currentTarget.value)
|
|
}
|
|
/>
|
|
<InputGroup.Append>
|
|
<Button
|
|
variant="danger"
|
|
onClick={() => removeValue(i)}
|
|
disabled={i === values.length - 1}
|
|
>
|
|
<Icon icon={faMinus} />
|
|
</Button>
|
|
</InputGroup.Append>
|
|
</InputGroup>
|
|
))}
|
|
</Form.Group>
|
|
</div>
|
|
<div className="invalid-feedback">{props.errors}</div>
|
|
</>
|
|
);
|
|
};
|