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

@ -1,5 +1,8 @@
import 'dart:collection';
import 'package:collection/collection.dart';
import 'package:quiver_hashcode/hashcode.dart';
class Embeddable {
static const TYPE_KEY = '_type';
static const INLINE_KEY = '_inline';
@ -36,16 +39,30 @@ class Embeddable {
}
@override
bool operator ==(Object other) =>
identical(this, other) ||
other is Embeddable &&
runtimeType == other.runtimeType &&
type == other.type &&
inline == other.inline &&
_data == other._data;
bool operator ==(dynamic other) {
if (identical(this, other)) {
return true;
}
if (other is! Embeddable) {
return false;
}
final typedOther = other;
return typedOther.type == type &&
typedOther.inline == inline &&
DeepCollectionEquality().equals(typedOther._data, _data);
}
@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 {

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

Loading…
Cancel
Save