mirror of
https://github.com/cake-tech/cake_wallet.git
synced 2024-12-22 19:49:22 +00:00
109d9b458e
* add sort function to contact list * fix UI * prevent duplicate contact names * dispose contact source subscription * fix custom order issue * update the address book UI * fix saving custom order * fix merge conflict issue * review fixes [skip ci] * revert to single scroll for entire page * tabBarView address book --------- Co-authored-by: Omar Hatem <omarh.ismail1@gmail.com>
44 lines
1.1 KiB
Dart
44 lines
1.1 KiB
Dart
import 'package:cw_core/crypto_currency.dart';
|
|
import 'package:cw_core/hive_type_ids.dart';
|
|
import 'package:cw_core/keyable.dart';
|
|
import 'package:hive/hive.dart';
|
|
|
|
part 'contact.g.dart';
|
|
|
|
@HiveType(typeId: Contact.typeId)
|
|
class Contact extends HiveObject with Keyable {
|
|
Contact({required this.name, required this.address, CryptoCurrency? type, DateTime? lastChange})
|
|
: lastChange = lastChange ?? DateTime.now() {
|
|
if (type != null) {
|
|
raw = type.raw;
|
|
}
|
|
}
|
|
|
|
static const typeId = CONTACT_TYPE_ID;
|
|
static const boxName = 'Contacts';
|
|
|
|
@HiveField(0, defaultValue: '')
|
|
String name;
|
|
|
|
@HiveField(1, defaultValue: '')
|
|
String address;
|
|
|
|
@HiveField(2, defaultValue: 0)
|
|
late int raw;
|
|
|
|
@HiveField(3)
|
|
DateTime lastChange;
|
|
|
|
CryptoCurrency get type => CryptoCurrency.deserialize(raw: raw);
|
|
|
|
@override
|
|
dynamic get keyIndex => key;
|
|
|
|
@override
|
|
bool operator ==(Object o) => o is Contact && o.key == key;
|
|
|
|
@override
|
|
int get hashCode => key.hashCode;
|
|
|
|
void updateCryptoCurrency({required CryptoCurrency currency}) => raw = currency.raw;
|
|
}
|