Rich text editor for Flutter
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

68 lines
1.8 KiB

import 'package:flutter_quill/models/documents/attribute.dart';
/* Collection of style attributes */
class Style {
final Map<String, Attribute> _attributes;
Style.attr(this._attributes);
Style() : _attributes = <String, Attribute>{};
static Style fromJson(Map<String, dynamic> attributes) {
if (attributes == null) {
return Style();
}
Map<String, Attribute> result = attributes.map((String key, dynamic value) {
Attribute attr = Attribute.fromKeyValue(key, value);
return MapEntry<String, Attribute>(key, attr);
});
return Style.attr(result);
}
Map<String, dynamic> toJson() => _attributes.isEmpty
? null
: _attributes.map<String, dynamic>((String _, Attribute value) =>
MapEntry<String, dynamic>(value.key, value.value));
Iterable<String> get keys => _attributes.keys;
Iterable<Attribute> get values => _attributes.values;
bool get isEmpty => _attributes.isEmpty;
bool get isNotEmpty => _attributes.isNotEmpty;
bool get isInline => isNotEmpty && values.every((item) => item.isInline);
Attribute get single => _attributes.values.single;
bool containsKey(String key) => _attributes.containsKey(key);
Attribute getBlockExceptHeader() {
for (Attribute val in values) {
if (val.isBlockExceptHeader) {
return val;
}
}
return null;
}
Style merge(Attribute attribute) {
Map<String, Attribute> merged = Map<String, Attribute>.from(_attributes);
if (attribute.value == null) {
merged.remove(attribute.key);
} else {
merged[attribute.key] = attribute;
}
return Style.attr(merged);
}
Style mergeAll(Style other) {
Style result = Style.attr(_attributes);
for (Attribute attribute in other.values) {
result = result.merge(attribute);
}
return result;
}
}