Fix equals method

pull/13/head
singerdmx 4 years ago
parent 3b9e6581a6
commit fc2e5d19b2
  1. 20
      lib/models/documents/attribute.dart
  2. 33
      lib/models/documents/nodes/embed.dart
  3. 8
      lib/models/documents/style.dart

@ -1,3 +1,5 @@
import 'package:quiver_hashcode/hashcode.dart';
enum AttributeScope { enum AttributeScope {
INLINE, // refer to https://quilljs.com/docs/formats/#inline INLINE, // refer to https://quilljs.com/docs/formats/#inline
BLOCK, // refer to https://quilljs.com/docs/formats/#block BLOCK, // refer to https://quilljs.com/docs/formats/#block
@ -69,18 +71,18 @@ class Attribute<T> {
return attribute; return attribute;
} }
@override @override
bool operator ==(Object other) => bool operator ==(Object other) {
identical(this, other) || if (identical(this, other)) return true;
other is Attribute && if (other is! Attribute<T>) return false;
runtimeType == other.runtimeType && Attribute<T> typedOther = other;
key == other.key && return key == typedOther.key &&
scope == other.scope && scope == typedOther.scope &&
value == other.value; value == typedOther.value;
}
@override @override
int get hashCode => key.hashCode ^ scope.hashCode; int get hashCode => hash3(key, scope, value);
@override @override
String toString() { String toString() {

@ -1,5 +1,8 @@
import 'dart:collection'; import 'dart:collection';
import 'package:collection/collection.dart';
import 'package:quiver_hashcode/hashcode.dart';
class Embeddable { class Embeddable {
static const TYPE_KEY = '_type'; static const TYPE_KEY = '_type';
static const INLINE_KEY = '_inline'; static const INLINE_KEY = '_inline';
@ -36,16 +39,30 @@ class Embeddable {
} }
@override @override
bool operator ==(Object other) => bool operator ==(dynamic other) {
identical(this, other) || if (identical(this, other)) {
other is Embeddable && return true;
runtimeType == other.runtimeType && }
type == other.type && if (other is! Embeddable) {
inline == other.inline && return false;
_data == other._data; }
final typedOther = other;
return typedOther.type == type &&
typedOther.inline == inline &&
DeepCollectionEquality().equals(typedOther._data, _data);
}
@override @override
int get hashCode => type.hashCode ^ inline.hashCode ^ _data.hashCode; int get hashCode {
if (_data.isEmpty) {
return hash2(type, inline);
}
final dataHash = hashObjects(
_data.entries.map((e) => hash2(e.key, e.value)),
);
return hash3(type, inline, dataHash);
}
} }
class Span extends Embeddable { class Span extends Embeddable {

@ -84,8 +84,12 @@ class Style {
@override @override
bool operator ==(Object other) { bool operator ==(Object other) {
if (identical(this, other)) return true; if (identical(this, other)) {
if (other is! Style) return false; return true;
}
if (other is! Style) {
return false;
}
Style typedOther = other; Style typedOther = other;
final eq = const MapEquality<String, Attribute>(); final eq = const MapEquality<String, Attribute>();
return eq.equals(_attributes, typedOther._attributes); return eq.equals(_attributes, typedOther._attributes);

Loading…
Cancel
Save