book_manage/apps/web/src/components/models/term/term-select.tsx

177 lines
4.3 KiB
TypeScript
Raw Normal View History

2024-09-10 10:31:24 +08:00
import { TreeSelect, TreeSelectProps } from "antd";
2025-01-03 09:24:46 +08:00
import React, { useEffect, useState, useCallback, useRef } from "react";
2025-01-06 08:45:23 +08:00
import { getUniqueItems } from "@nice/common";
import { api } from "@nice/client";
2024-12-30 08:26:40 +08:00
import { DefaultOptionType } from "antd/es/select";
2024-09-10 10:31:24 +08:00
interface TermSelectProps {
2024-12-30 08:26:40 +08:00
defaultValue?: string | string[];
value?: string | string[];
onChange?: (value: string | string[]) => void;
placeholder?: string;
multiple?: boolean;
taxonomyId?: string;
disabled?: boolean;
className?: string;
2025-01-03 09:24:46 +08:00
domainId?: string;
2024-09-10 10:31:24 +08:00
}
export default function TermSelect({
2024-12-30 08:26:40 +08:00
defaultValue,
value,
onChange,
className,
2025-02-25 12:31:37 +08:00
placeholder = "选择分类",
2024-12-30 08:26:40 +08:00
multiple = false,
taxonomyId,
2025-01-03 09:24:46 +08:00
domainId,
2024-12-30 08:26:40 +08:00
disabled = false,
2024-09-10 10:31:24 +08:00
}: TermSelectProps) {
2024-12-30 08:26:40 +08:00
const utils = api.useUtils();
const [listTreeData, setListTreeData] = useState<
Omit<DefaultOptionType, "label">[]
>([]);
2024-09-10 10:31:24 +08:00
2024-12-30 08:26:40 +08:00
const fetchParentTerms = useCallback(
async (termIds: string | string[], taxonomyId?: string) => {
const idsArray = Array.isArray(termIds)
? termIds
: [termIds].filter(Boolean);
try {
return await utils.term.getParentSimpleTree.fetch({
termIds: idsArray,
taxonomyId,
2025-01-03 09:24:46 +08:00
domainId,
2024-12-30 08:26:40 +08:00
});
} catch (error) {
console.error(
"Error fetching parent departments for deptIds",
idsArray,
":",
error
);
throw error;
}
},
[utils]
);
2024-09-10 10:31:24 +08:00
2024-12-30 08:26:40 +08:00
const fetchTerms = useCallback(async () => {
try {
const rootDepts = await utils.term.getChildSimpleTree.fetch({
taxonomyId,
2025-01-03 09:24:46 +08:00
domainId,
2024-12-30 08:26:40 +08:00
});
let combinedDepts = [...rootDepts];
if (defaultValue) {
const defaultDepts = await fetchParentTerms(
defaultValue,
taxonomyId
);
combinedDepts = getUniqueItems(
[...listTreeData, ...combinedDepts, ...defaultDepts] as any,
"id"
);
}
if (value) {
const valueDepts = await fetchParentTerms(value, taxonomyId);
combinedDepts = getUniqueItems(
[...listTreeData, ...combinedDepts, ...valueDepts] as any,
"id"
);
}
2024-09-10 10:31:24 +08:00
2024-12-30 08:26:40 +08:00
setListTreeData(combinedDepts);
} catch (error) {
console.error("Error fetching departments:", error);
}
}, [defaultValue, value, taxonomyId, utils, fetchParentTerms]);
2024-09-10 10:31:24 +08:00
2024-12-30 08:26:40 +08:00
useEffect(() => {
fetchTerms();
}, [defaultValue, value, taxonomyId, fetchTerms]);
2024-09-10 10:31:24 +08:00
2024-12-30 08:26:40 +08:00
const handleChange = (newValue: any) => {
if (onChange) {
const processedValue =
multiple && Array.isArray(newValue)
? newValue.map((item) => item.value)
: newValue;
onChange(processedValue);
}
};
2024-09-10 10:31:24 +08:00
2024-12-30 08:26:40 +08:00
const onLoadData: TreeSelectProps["loadData"] = async ({ id }) => {
try {
const result = await utils.term.getChildSimpleTree.fetch({
termIds: [id],
taxonomyId,
2025-01-03 09:24:46 +08:00
domainId,
2024-12-30 08:26:40 +08:00
});
const newItems = getUniqueItems([...listTreeData, ...result], "id");
setListTreeData(newItems);
} catch (error) {
console.error(
"Error loading data for node with id",
id,
":",
error
);
}
};
2024-09-10 10:31:24 +08:00
2024-12-30 08:26:40 +08:00
const handleExpand = async (keys: React.Key[]) => {
try {
const allKeyIds =
keys.map((key) => key.toString()).filter(Boolean) || [];
const expandedNodes = await utils.term.getChildSimpleTree.fetch({
termIds: allKeyIds,
taxonomyId,
2025-01-03 09:24:46 +08:00
domainId,
2024-12-30 08:26:40 +08:00
});
const flattenedNodes = expandedNodes.flat();
const newItems = getUniqueItems(
[...listTreeData, ...flattenedNodes],
"id"
);
setListTreeData(newItems);
} catch (error) {
console.error("Error expanding nodes with keys", keys, ":", error);
}
};
const handleDropdownVisibleChange = async (open: boolean) => {
if (open) {
// This will attempt to expand all nodes and fetch their children when the dropdown opens
const allKeys = listTreeData.map((item) => item.id);
await handleExpand(allKeys);
}
};
return (
<TreeSelect
treeDataSimpleMode
disabled={disabled}
showSearch
allowClear
2025-01-03 09:24:46 +08:00
// ref={selectRef}
dropdownStyle={{
width: "300px", // 固定宽度
minWidth: "200px", // 最小宽度
maxWidth: "600px", // 最大宽度
}}
2024-12-30 08:26:40 +08:00
defaultValue={defaultValue}
value={value}
className={className}
placeholder={placeholder}
onChange={handleChange}
loadData={onLoadData}
treeData={listTreeData}
treeCheckable={multiple}
showCheckedStrategy={TreeSelect.SHOW_ALL}
treeCheckStrictly={multiple}
onClear={() => handleChange(multiple ? [] : undefined)}
onTreeExpand={handleExpand}
onDropdownVisibleChange={handleDropdownVisibleChange}
/>
);
2025-02-25 12:31:37 +08:00
}