64 lines
1.4 KiB
TypeScript
64 lines
1.4 KiB
TypeScript
import useCollectionStore from "@/store/collections";
|
|
import { useRouter } from "next/router";
|
|
import { useEffect, useState } from "react";
|
|
import { styles } from "./styles";
|
|
import { Options } from "./types";
|
|
import CreatableSelect from "react-select/creatable";
|
|
|
|
type Props = {
|
|
onChange: any;
|
|
defaultValue:
|
|
| {
|
|
label: string;
|
|
value?: number;
|
|
}
|
|
| undefined;
|
|
id?: string;
|
|
};
|
|
|
|
export default function CollectionSelection({
|
|
onChange,
|
|
defaultValue,
|
|
id,
|
|
}: Props) {
|
|
const { collections } = useCollectionStore();
|
|
const router = useRouter();
|
|
|
|
const [options, setOptions] = useState<Options[]>([]);
|
|
|
|
const collectionId = Number(router.query.id);
|
|
|
|
const activeCollection = collections.find((e) => {
|
|
return e.id === collectionId;
|
|
});
|
|
|
|
if (activeCollection && !defaultValue) {
|
|
defaultValue = {
|
|
value: activeCollection?.id,
|
|
label: activeCollection?.name,
|
|
};
|
|
}
|
|
|
|
useEffect(() => {
|
|
const formatedCollections = collections.map((e) => {
|
|
return { value: e.id, label: e.name, ownerId: e.ownerId };
|
|
});
|
|
|
|
setOptions(formatedCollections);
|
|
}, [collections]);
|
|
|
|
return (
|
|
<CreatableSelect
|
|
key={id || "key"}
|
|
isClearable={false}
|
|
className="react-select-container"
|
|
classNamePrefix="react-select"
|
|
onChange={onChange}
|
|
options={options}
|
|
styles={styles}
|
|
defaultValue={defaultValue}
|
|
// menuPosition="fixed"
|
|
/>
|
|
);
|
|
}
|