Merge branch 'main' of http://113.45.157.195:3003/insiinc/re-mooc
This commit is contained in:
commit
ec049f01bc
|
@ -36,7 +36,7 @@ export class AppConfigRouter {
|
|||
.mutation(async ({ input }) => {
|
||||
return await this.appConfigService.deleteMany(input);
|
||||
}),
|
||||
findFirst: this.trpc.protectProcedure
|
||||
findFirst: this.trpc.procedure
|
||||
.input(AppConfigFindFirstArgsSchema)
|
||||
.query(async ({ input }) => {
|
||||
return await this.appConfigService.findFirst(input);
|
||||
|
|
|
@ -1,31 +1,37 @@
|
|||
import { Menu } from 'antd';
|
||||
import { useNavigate, useLocation } from 'react-router-dom';
|
||||
import { Menu } from "antd";
|
||||
import { useNavigate, useLocation } from "react-router-dom";
|
||||
|
||||
const menuItems = [
|
||||
{ key: 'home', path: '/', label: '首页' },
|
||||
{ key: 'courses', path: '/courses', label: '全部课程' },
|
||||
{ key: 'paths', path: '/paths', label: '学习路径' }
|
||||
{ key: "home", path: "/", label: "首页" },
|
||||
{ key: "courses", path: "/courses", label: "全部课程" },
|
||||
{ key: "paths", path: "/paths", label: "学习路径" },
|
||||
];
|
||||
|
||||
export const NavigationMenu = () => {
|
||||
const navigate = useNavigate();
|
||||
const { pathname } = useLocation();
|
||||
const selectedKey = menuItems.find(item => item.path === pathname)?.key || '';
|
||||
return (
|
||||
<Menu
|
||||
mode="horizontal"
|
||||
className="border-none font-medium"
|
||||
selectedKeys={[selectedKey]}
|
||||
onClick={({ key }) => {
|
||||
const selectedItem = menuItems.find(item => item.key === key);
|
||||
if (selectedItem) navigate(selectedItem.path);
|
||||
}}
|
||||
>
|
||||
{menuItems.map(({ key, label }) => (
|
||||
<Menu.Item key={key} className="text-gray-600 hover:text-blue-600">
|
||||
{label}
|
||||
</Menu.Item>
|
||||
))}
|
||||
</Menu>
|
||||
);
|
||||
};
|
||||
const navigate = useNavigate();
|
||||
const { pathname } = useLocation();
|
||||
const selectedKey =
|
||||
menuItems.find((item) => item.path === pathname)?.key || "";
|
||||
return (
|
||||
<Menu
|
||||
mode="horizontal"
|
||||
className="border-none font-medium"
|
||||
selectedKeys={[selectedKey]}
|
||||
onClick={({ key }) => {
|
||||
const selectedItem = menuItems.find((item) => item.key === key);
|
||||
if (selectedItem) navigate(selectedItem.path);
|
||||
window.scrollTo({
|
||||
top: 0,
|
||||
behavior: "smooth",
|
||||
});
|
||||
}}>
|
||||
{menuItems.map(({ key, label }) => (
|
||||
<Menu.Item
|
||||
key={key}
|
||||
className="text-gray-600 hover:text-blue-600">
|
||||
{label}
|
||||
</Menu.Item>
|
||||
))}
|
||||
</Menu>
|
||||
);
|
||||
};
|
||||
|
|
|
@ -72,7 +72,7 @@ export default function TermSelect({
|
|||
throw error;
|
||||
}
|
||||
},
|
||||
[utils]
|
||||
[utils, value]
|
||||
);
|
||||
|
||||
const fetchTerms = useCallback(async () => {
|
||||
|
@ -139,25 +139,35 @@ export default function TermSelect({
|
|||
}
|
||||
};
|
||||
|
||||
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,
|
||||
domainId,
|
||||
});
|
||||
const flattenedNodes = expandedNodes.flat();
|
||||
const newItems = getUniqueItems(
|
||||
[...listTreeData, ...flattenedNodes],
|
||||
"id"
|
||||
);
|
||||
setListTreeData(newItems);
|
||||
} catch (error) {
|
||||
console.error("Error expanding nodes with keys", keys, ":", error);
|
||||
}
|
||||
};
|
||||
const handleExpand = useCallback(
|
||||
async (keys: React.Key[]) => {
|
||||
try {
|
||||
const allKeyIds =
|
||||
keys.map((key) => key.toString()).filter(Boolean) || [];
|
||||
const expandedNodes = await utils.term.getChildSimpleTree.fetch(
|
||||
{
|
||||
termIds: allKeyIds,
|
||||
taxonomyId,
|
||||
domainId,
|
||||
}
|
||||
);
|
||||
const flattenedNodes = expandedNodes.flat();
|
||||
const newItems = getUniqueItems(
|
||||
[...listTreeData, ...flattenedNodes],
|
||||
"id"
|
||||
);
|
||||
setListTreeData(newItems);
|
||||
} catch (error) {
|
||||
console.error(
|
||||
"Error expanding nodes with keys",
|
||||
keys,
|
||||
":",
|
||||
error
|
||||
);
|
||||
}
|
||||
},
|
||||
[value]
|
||||
);
|
||||
const handleDropdownVisibleChange = async (open: boolean) => {
|
||||
if (open) {
|
||||
// This will attempt to expand all nodes and fetch their children when the dropdown opens
|
||||
|
|
Loading…
Reference in New Issue