From 799ceb432fba7cf7067006208ca388a518b8951f Mon Sep 17 00:00:00 2001 From: "Lucas.Xu" Date: Wed, 26 Oct 2022 20:14:35 +0800 Subject: [PATCH] fix: copy link and code style --- .../lib/src/infra/html_converter.dart | 25 +++++++++++++++---- 1 file changed, 20 insertions(+), 5 deletions(-) diff --git a/frontend/app_flowy/packages/appflowy_editor/lib/src/infra/html_converter.dart b/frontend/app_flowy/packages/appflowy_editor/lib/src/infra/html_converter.dart index b433657d4e..f20d3d8a9a 100644 --- a/frontend/app_flowy/packages/appflowy_editor/lib/src/infra/html_converter.dart +++ b/frontend/app_flowy/packages/appflowy_editor/lib/src/infra/html_converter.dart @@ -241,6 +241,8 @@ class HTMLToNodesConverter { } else if (element.localName == HTMLTag.del) { delta.insert(element.text, attributes: {BuiltInAttributeKey.strikethrough: true}); + } else if (element.localName == HTMLTag.code) { + delta.insert(element.text, attributes: {BuiltInAttributeKey.code: true}); } else { delta.insert(element.text); } @@ -276,11 +278,13 @@ class HTMLToNodesConverter { } } - final textNode = TextNode(delta: delta, attributes: attributes); - if (isCheckbox) { - textNode.attributes["subtype"] = BuiltInAttributeKey.checkbox; - textNode.attributes["checkbox"] = checked; - } + final textNode = TextNode(delta: delta, attributes: { + if (attributes != null) ...attributes, + if (isCheckbox) ...{ + BuiltInAttributeKey.subtype: BuiltInAttributeKey.checkbox, + BuiltInAttributeKey.checkbox: checked, + } + }); return textNode; } @@ -557,6 +561,17 @@ class NodesToHTMLConverter { final strong = html.Element.tag(HTMLTag.del); strong.append(html.Text(op.text)); childNodes.add(strong); + } else if (attributes.length == 1 && + attributes[BuiltInAttributeKey.code] == true) { + final code = html.Element.tag(HTMLTag.code); + code.append(html.Text(op.text)); + childNodes.add(code); + } else if (attributes.length == 1 && + attributes[BuiltInAttributeKey.href] != null) { + final anchor = html.Element.tag(HTMLTag.anchor); + anchor.attributes["href"] = attributes[BuiltInAttributeKey.href]; + anchor.append(html.Text(op.text)); + childNodes.add(anchor); } else { final span = html.Element.tag(HTMLTag.span); final cssString = _attributesToCssStyle(attributes);