Support indent

pull/13/head
singerdmx 4 years ago
parent cd88b9d04e
commit 3ab793c310
  1. 48
      app/assets/sample_data.json
  2. 9
      lib/models/documents/attribute.dart
  3. 10
      lib/widgets/default_styles.dart
  4. 2
      lib/widgets/raw_editor.dart
  5. 13
      lib/widgets/text_block.dart

@ -151,5 +151,53 @@
"code-block":true "code-block":true
}, },
"insert":"\n" "insert":"\n"
},
{
"insert":"\nStart tracking in your browser"
},
{
"attributes":{
"indent":1
},
"insert":"\n"
},
{
"insert":"Stop the timer on your phone"
},
{
"attributes":{
"indent":1
},
"insert":"\n"
},
{
"insert":"All your time entries are synced"
},
{
"attributes":{
"indent":2
},
"insert":"\n"
},
{
"insert":"between the phone apps"
},
{
"attributes":{
"indent":2
},
"insert":"\n"
},
{
"insert":"and the website."
},
{
"attributes":{
"indent":3
},
"insert":"\n"
},
{
"insert":"\n"
} }
] ]

@ -22,6 +22,7 @@ class Attribute<T> {
Attribute.color.key: Attribute.color, Attribute.color.key: Attribute.color,
Attribute.background.key: Attribute.background, Attribute.background.key: Attribute.background,
Attribute.header.key: Attribute.header, Attribute.header.key: Attribute.header,
Attribute.indent.key: Attribute.indent,
Attribute.list.key: Attribute.list, Attribute.list.key: Attribute.list,
Attribute.codeBlock.key: Attribute.codeBlock, Attribute.codeBlock.key: Attribute.codeBlock,
Attribute.blockQuote.key: Attribute.blockQuote, Attribute.blockQuote.key: Attribute.blockQuote,
@ -43,6 +44,8 @@ class Attribute<T> {
static final HeaderAttribute header = HeaderAttribute(); static final HeaderAttribute header = HeaderAttribute();
static final IndentAttribute indent = IndentAttribute();
static final ListAttribute list = ListAttribute(null); static final ListAttribute list = ListAttribute(null);
static final CodeBlockAttribute codeBlock = CodeBlockAttribute(); static final CodeBlockAttribute codeBlock = CodeBlockAttribute();
@ -61,6 +64,7 @@ class Attribute<T> {
static final Set<String> blockKeys = { static final Set<String> blockKeys = {
Attribute.header.key, Attribute.header.key,
Attribute.indent.key,
Attribute.list.key, Attribute.list.key,
Attribute.codeBlock.key, Attribute.codeBlock.key,
Attribute.blockQuote.key, Attribute.blockQuote.key,
@ -68,6 +72,7 @@ class Attribute<T> {
static final Set<String> blockKeysExceptHeader = { static final Set<String> blockKeysExceptHeader = {
Attribute.list.key, Attribute.list.key,
Attribute.indent.key,
Attribute.codeBlock.key, Attribute.codeBlock.key,
Attribute.blockQuote.key, Attribute.blockQuote.key,
}; };
@ -155,6 +160,10 @@ class HeaderAttribute extends Attribute<int> {
HeaderAttribute({int level}) : super('header', AttributeScope.BLOCK, level); HeaderAttribute({int level}) : super('header', AttributeScope.BLOCK, level);
} }
class IndentAttribute extends Attribute<int> {
IndentAttribute({int level}) : super('indent', AttributeScope.BLOCK, level);
}
class ListAttribute extends Attribute<String> { class ListAttribute extends Attribute<String> {
ListAttribute(String val) : super('list', AttributeScope.BLOCK, val); ListAttribute(String val) : super('list', AttributeScope.BLOCK, val);
} }

@ -54,6 +54,7 @@ class DefaultStyles {
final DefaultTextBlockStyle lists; final DefaultTextBlockStyle lists;
final DefaultTextBlockStyle quote; final DefaultTextBlockStyle quote;
final DefaultTextBlockStyle code; final DefaultTextBlockStyle code;
final DefaultTextBlockStyle indent;
DefaultStyles( DefaultStyles(
this.h1, this.h1,
@ -67,7 +68,8 @@ class DefaultStyles {
this.link, this.link,
this.lists, this.lists,
this.quote, this.quote,
this.code); this.code,
this.indent);
static DefaultStyles getInstance(BuildContext context) { static DefaultStyles getInstance(BuildContext context) {
ThemeData themeData = Theme.of(context); ThemeData themeData = Theme.of(context);
@ -155,7 +157,8 @@ class DefaultStyles {
BoxDecoration( BoxDecoration(
color: Colors.grey.shade50, color: Colors.grey.shade50,
borderRadius: BorderRadius.circular(2), borderRadius: BorderRadius.circular(2),
))); )),
DefaultTextBlockStyle(baseStyle, Tuple2(0.0, 0.0), Tuple2(0.0, 0.0), null));
} }
DefaultStyles merge(DefaultStyles other) { DefaultStyles merge(DefaultStyles other) {
@ -171,6 +174,7 @@ class DefaultStyles {
other.link ?? this.link, other.link ?? this.link,
other.lists ?? this.lists, other.lists ?? this.lists,
other.quote ?? this.quote, other.quote ?? this.quote,
other.code ?? this.code); other.code ?? this.code,
other.indent ?? this.indent);
} }
} }

@ -633,6 +633,8 @@ class RawEditorState extends EditorState
return defaultStyles.quote.verticalSpacing; return defaultStyles.quote.verticalSpacing;
} else if (attrs.containsKey(Attribute.codeBlock.key)) { } else if (attrs.containsKey(Attribute.codeBlock.key)) {
return defaultStyles.code.verticalSpacing; return defaultStyles.code.verticalSpacing;
} else if (attrs.containsKey(Attribute.indent.key)) {
return defaultStyles.indent.verticalSpacing;
} }
return defaultStyles.lists.verticalSpacing; return defaultStyles.lists.verticalSpacing;
} }

@ -133,11 +133,18 @@ class EditableTextBlock extends StatelessWidget {
double _getIndentWidth() { double _getIndentWidth() {
Map<String, Attribute> attrs = block.style.attributes; Map<String, Attribute> attrs = block.style.attributes;
Attribute indent = attrs[Attribute.indent.key];
double extraIndent = 0.0;
if (indent != null && indent.value != null) {
extraIndent = 16.0 * indent.value;
}
if (attrs.containsKey(Attribute.blockQuote.key)) { if (attrs.containsKey(Attribute.blockQuote.key)) {
return 16.0; return 16.0 + extraIndent;
} }
return 32.0; return 32.0 + extraIndent;
} }
Tuple2 _getSpacingForLine( Tuple2 _getSpacingForLine(
@ -171,6 +178,8 @@ class EditableTextBlock extends StatelessWidget {
lineSpacing = defaultStyles.lists.lineSpacing; lineSpacing = defaultStyles.lists.lineSpacing;
} else if (attrs.containsKey(Attribute.codeBlock.key)) { } else if (attrs.containsKey(Attribute.codeBlock.key)) {
lineSpacing = defaultStyles.code.lineSpacing; lineSpacing = defaultStyles.code.lineSpacing;
} else if (attrs.containsKey(Attribute.indent.key)) {
lineSpacing = defaultStyles.indent.lineSpacing;
} }
top = lineSpacing.item1; top = lineSpacing.item1;
bottom = lineSpacing.item2; bottom = lineSpacing.item2;

Loading…
Cancel
Save