mirror of
https://github.com/usememos/memos.git
synced 2025-06-05 22:09:59 +02:00
fix: order list starts
This commit is contained in:
@@ -1,4 +1,5 @@
|
|||||||
import clsx from "clsx";
|
import clsx from "clsx";
|
||||||
|
import { head } from "lodash-es";
|
||||||
import React from "react";
|
import React from "react";
|
||||||
import { ListNode_Kind, Node, NodeType } from "@/types/proto/api/v1/markdown_service";
|
import { ListNode_Kind, Node, NodeType } from "@/types/proto/api/v1/markdown_service";
|
||||||
import Renderer from "./Renderer";
|
import Renderer from "./Renderer";
|
||||||
@@ -14,7 +15,7 @@ const List: React.FC<Props> = ({ kind, indent, children }: Props) => {
|
|||||||
let prevNode: Node | null = null;
|
let prevNode: Node | null = null;
|
||||||
let skipNextLineBreakFlag = false;
|
let skipNextLineBreakFlag = false;
|
||||||
|
|
||||||
const getListContainer = (kind: ListNode_Kind) => {
|
const getListContainer = () => {
|
||||||
switch (kind) {
|
switch (kind) {
|
||||||
case ListNode_Kind.ORDERED:
|
case ListNode_Kind.ORDERED:
|
||||||
return "ol";
|
return "ol";
|
||||||
@@ -27,13 +28,26 @@ const List: React.FC<Props> = ({ kind, indent, children }: Props) => {
|
|||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
|
const getAttributes = () => {
|
||||||
|
if (kind === ListNode_Kind.ORDERED) {
|
||||||
|
const firstChild = head(children);
|
||||||
|
if (firstChild?.type === NodeType.ORDERED_LIST_ITEM) {
|
||||||
|
return {
|
||||||
|
start: firstChild.orderedListItemNode?.number,
|
||||||
|
};
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return {};
|
||||||
|
};
|
||||||
|
|
||||||
return React.createElement(
|
return React.createElement(
|
||||||
getListContainer(kind),
|
getListContainer(),
|
||||||
{
|
{
|
||||||
className: clsx(
|
className: clsx(
|
||||||
`list-inside ${kind === ListNode_Kind.ORDERED ? "list-decimal" : kind === ListNode_Kind.UNORDERED ? "list-disc" : "list-none"}`,
|
`list-inside ${kind === ListNode_Kind.ORDERED ? "list-decimal" : kind === ListNode_Kind.UNORDERED ? "list-disc" : "list-none"}`,
|
||||||
indent > 0 ? `pl-${2 * indent}` : "",
|
indent > 0 ? `pl-${2 * indent}` : "",
|
||||||
),
|
),
|
||||||
|
...getAttributes(),
|
||||||
},
|
},
|
||||||
children.map((child, index) => {
|
children.map((child, index) => {
|
||||||
if (prevNode?.type !== NodeType.LINE_BREAK && child.type === NodeType.LINE_BREAK && skipNextLineBreakFlag) {
|
if (prevNode?.type !== NodeType.LINE_BREAK && child.type === NodeType.LINE_BREAK && skipNextLineBreakFlag) {
|
||||||
|
Reference in New Issue
Block a user