diff --git a/lib/models/documents/attribute.dart b/lib/models/documents/attribute.dart index b5c73eb2..896eb3a2 100644 --- a/lib/models/documents/attribute.dart +++ b/lib/models/documents/attribute.dart @@ -25,33 +25,35 @@ class Attribute { Attribute.blockQuote.key: Attribute.blockQuote, }; - static BoldAttribute bold = BoldAttribute(); + static final BoldAttribute bold = BoldAttribute(); - static ItalicAttribute italic = ItalicAttribute(); + static final ItalicAttribute italic = ItalicAttribute(); - static UnderlineAttribute underline = UnderlineAttribute(); + static final UnderlineAttribute underline = UnderlineAttribute(); - static StrikeThroughAttribute strikeThrough = StrikeThroughAttribute(); + static final StrikeThroughAttribute strikeThrough = StrikeThroughAttribute(); - static LinkAttribute link = LinkAttribute(''); + static final LinkAttribute link = LinkAttribute(null); - static HeaderAttribute header = HeaderAttribute(1); + static final HeaderAttribute header = HeaderAttribute(); - static ListAttribute list = ListAttribute('ordered'); + static final ListAttribute list = ListAttribute(null); - static CodeBlockAttribute codeBlock = CodeBlockAttribute(); + static final CodeBlockAttribute codeBlock = CodeBlockAttribute(); - static BlockQuoteAttribute blockQuote = BlockQuoteAttribute(); + static final BlockQuoteAttribute blockQuote = BlockQuoteAttribute(); - static Attribute get h1 => header.level1; + static Attribute get h1 => HeaderAttribute(level: 1); - static Attribute get h2 => header.level2; + static Attribute get h2 => HeaderAttribute(level: 2); - static Attribute get h3 => header.level3; + static Attribute get h3 => HeaderAttribute(level: 3); - static Attribute get ul => list.bullet; + // "attributes":{"list":"ordered"} + static Attribute get ul => ListAttribute('bullet'); - static Attribute get ol => list.ordered; + // "attributes":{"list":"bullet"} + static Attribute get ol => ListAttribute('ordered'); bool get isInline => scope == AttributeScope.INLINE; @@ -64,12 +66,17 @@ class Attribute { if (!_registry.containsKey(key)) { throw ArgumentError.value(key, 'key "$key" not found.'); } - Attribute attribute = _registry[key]; + Attribute origin = _registry[key]; + Attribute attribute = clone(origin); if (value != null) { attribute.value = value; } return attribute; } + + static Attribute clone(Attribute origin) { + return Attribute(origin.key, origin.scope, origin.value); + } @override bool operator ==(Object other) { @@ -111,26 +118,11 @@ class LinkAttribute extends Attribute { } class HeaderAttribute extends Attribute { - HeaderAttribute(int level) : super('header', AttributeScope.BLOCK, level); - - // H1 in HTML - Attribute get level1 => Attribute(key, scope, 1); - - // H2 in HTML - Attribute get level2 => Attribute(key, scope, 2); - - // H3 in HTML - Attribute get level3 => Attribute(key, scope, 3); + HeaderAttribute({int level = null}) : super('header', AttributeScope.BLOCK, level); } class ListAttribute extends Attribute { ListAttribute(String val) : super('list', AttributeScope.BLOCK, val); - - // "attributes":{"list":"ordered"} - Attribute get ordered => Attribute(key, scope, 'ordered'); - - // "attributes":{"list":"bullet"} - Attribute get bullet => Attribute(key, scope, 'bullet'); } class CodeBlockAttribute extends Attribute { diff --git a/lib/models/rules/insert.dart b/lib/models/rules/insert.dart index bf1f65cb..529dd8da 100644 --- a/lib/models/rules/insert.dart +++ b/lib/models/rules/insert.dart @@ -84,7 +84,7 @@ class PreserveBlockStyleOnInsertRule extends InsertRule { Map resetStyle; if (lineStyle.containsKey(Attribute.header.key)) { - resetStyle = HeaderAttribute(null).toJson(); + resetStyle = Attribute.header.toJson(); } List lines = (data as String).split('\n'); @@ -180,7 +180,7 @@ class ResetLineFormatOnNewLineRule extends InsertRule { Map resetStyle; if (cur.attributes != null && cur.attributes.containsKey(Attribute.header.key)) { - resetStyle = HeaderAttribute(null).toJson(); + resetStyle = Attribute.header.toJson(); } return Delta() ..retain(index)