veilidchat/lib/chat/models/message_state.dart

43 lines
1.3 KiB
Dart
Raw Normal View History

2024-04-17 21:31:26 -04:00
import 'package:change_case/change_case.dart';
import 'package:flutter/foundation.dart';
import 'package:freezed_annotation/freezed_annotation.dart';
import 'package:veilid_support/veilid_support.dart';
2024-05-25 22:46:43 -04:00
import '../../proto/proto.dart' as proto;
2024-05-31 18:55:44 -04:00
import '../../proto/proto.dart' show messageFromJson, messageToJson;
2024-05-25 22:46:43 -04:00
2024-04-17 21:31:26 -04:00
part 'message_state.freezed.dart';
part 'message_state.g.dart';
// Whether or not a message has been fully sent
enum MessageSendState {
// message is still being sent
sending,
// message issued has not reached the network
sent,
// message was sent and has reached the network
delivered;
factory MessageSendState.fromJson(dynamic j) =>
MessageSendState.values.byName((j as String).toCamelCase());
String toJson() => name.toPascalCase();
}
@freezed
class MessageState with _$MessageState {
const factory MessageState({
2024-05-25 22:46:43 -04:00
// Content of the message
2024-05-31 18:55:44 -04:00
@JsonKey(fromJson: messageFromJson, toJson: messageToJson)
2024-05-25 22:46:43 -04:00
required proto.Message content,
2024-05-29 10:47:43 -04:00
// Sent timestamp
required Timestamp sentTimestamp,
// Reconciled timestamp
required Timestamp? reconciledTimestamp,
2024-05-27 18:04:00 -04:00
// The state of the message
2024-04-17 21:31:26 -04:00
required MessageSendState? sendState,
}) = _MessageState;
factory MessageState.fromJson(dynamic json) =>
_$MessageStateFromJson(json as Map<String, dynamic>);
}