mirror of
https://github.com/usememos/memos.git
synced 2025-06-05 22:09:59 +02:00
69 lines
1.9 KiB
TypeScript
69 lines
1.9 KiB
TypeScript
import { Checkbox } from "@mui/joy";
|
|
import classNames from "classnames";
|
|
import { repeat } from "lodash-es";
|
|
import { useContext } from "react";
|
|
import { useMemoStore } from "@/store/v1";
|
|
import { Node, NodeType } from "@/types/proto/api/v2/markdown_service";
|
|
import Renderer from "./Renderer";
|
|
import { RendererContext } from "./types";
|
|
|
|
interface Props {
|
|
index: string;
|
|
symbol: string;
|
|
indent: number;
|
|
complete: boolean;
|
|
children: Node[];
|
|
}
|
|
|
|
const TaskList: React.FC<Props> = ({ index, indent, complete, children }: Props) => {
|
|
const context = useContext(RendererContext);
|
|
const memoStore = useMemoStore();
|
|
|
|
const handleCheckboxChange = async (on: boolean) => {
|
|
if (context.readonly || !context.memoId) {
|
|
return;
|
|
}
|
|
|
|
const nodeIndex = Number(index);
|
|
if (isNaN(nodeIndex)) {
|
|
return;
|
|
}
|
|
|
|
const node = context.nodes[nodeIndex];
|
|
if (node.type !== NodeType.TASK_LIST || !node.taskListNode) {
|
|
return;
|
|
}
|
|
|
|
node.taskListNode!.complete = on;
|
|
await memoStore.updateMemo(
|
|
{
|
|
id: context.memoId,
|
|
nodes: context.nodes,
|
|
},
|
|
["nodes"]
|
|
);
|
|
};
|
|
|
|
return (
|
|
<ul>
|
|
<li className="w-full flex flex-row">
|
|
<div className="block font-mono shrink-0">
|
|
<span>{repeat(" ", indent)}</span>
|
|
</div>
|
|
<div className="w-auto grid grid-cols-[24px_1fr] gap-1">
|
|
<div className="w-7 h-6 flex justify-center items-center">
|
|
<Checkbox size="sm" checked={complete} disabled={context.readonly} onChange={(e) => handleCheckboxChange(e.target.checked)} />
|
|
</div>
|
|
<div className={classNames(complete && "line-through opacity-80")}>
|
|
{children.map((child, index) => (
|
|
<Renderer key={`${child.type}-${index}`} index={String(index)} node={child} />
|
|
))}
|
|
</div>
|
|
</div>
|
|
</li>
|
|
</ul>
|
|
);
|
|
};
|
|
|
|
export default TaskList;
|