Merge pull request #271 from GetStream/feat/pin-message

Feat -> Pin Message
This commit is contained in:
Salvatore Giordano
2021-02-19 16:52:33 +01:00
committed by GitHub
12 changed files with 640 additions and 106 deletions
+57 -2
View File
@@ -330,7 +330,7 @@ class Channel {
state?.addMessage(message); state?.addMessage(message);
try { try {
if (message.attachments?.isNotEmpty == true) { if (message.attachments?.any((it) => !it.uploadState.isSuccess) == true) {
final attachmentsUploadCompleter = Completer<Message>(); final attachmentsUploadCompleter = Completer<Message>();
_messageAttachmentsUploadCompleter[message.id] = _messageAttachmentsUploadCompleter[message.id] =
attachmentsUploadCompleter; attachmentsUploadCompleter;
@@ -383,7 +383,7 @@ class Channel {
state?.addMessage(message); state?.addMessage(message);
try { try {
if (message.attachments?.isNotEmpty == true) { if (message.attachments?.any((it) => !it.uploadState.isSuccess) == true) {
final attachmentsUploadCompleter = Completer<Message>(); final attachmentsUploadCompleter = Completer<Message>();
_messageAttachmentsUploadCompleter[message.id] = _messageAttachmentsUploadCompleter[message.id] =
attachmentsUploadCompleter; attachmentsUploadCompleter;
@@ -449,6 +449,41 @@ class Channel {
} }
} }
/// Pins provided message
Future<UpdateMessageResponse> pinMessage(
Message message,
Object timeoutOrExpirationDate,
) {
assert(() {
if (timeoutOrExpirationDate is! DateTime &&
timeoutOrExpirationDate is! num &&
timeoutOrExpirationDate != null) {
throw ArgumentError('Invalid timeout or Expiration date');
}
return true;
}());
DateTime pinExpires;
if (timeoutOrExpirationDate is DateTime) {
pinExpires = timeoutOrExpirationDate;
} else if (timeoutOrExpirationDate is num) {
pinExpires = DateTime.now().add(
Duration(seconds: timeoutOrExpirationDate.toInt()),
);
}
return updateMessage(
message.copyWith(
pinned: true,
pinExpires: pinExpires,
),
);
}
/// Unpins provided message
Future<UpdateMessageResponse> unpinMessage(Message message) {
return updateMessage(message.copyWith(pinned: false));
}
/// Send a file to this channel /// Send a file to this channel
Future<SendFileResponse> sendFile( Future<SendFileResponse> sendFile(
AttachmentFile file, { AttachmentFile file, {
@@ -479,6 +514,26 @@ class Channel {
); );
} }
/// A message search.
Future<SearchMessagesResponse> search({
String query,
Map<String, dynamic> messageFilters,
List<SortOption> sort,
PaginationParams paginationParams,
}) {
return _client.search(
{
'cid': {
r'$in': [cid],
},
},
sort: sort,
query: query,
paginationParams: paginationParams,
messageFilters: messageFilters,
);
}
/// Delete a file from this channel /// Delete a file from this channel
Future<EmptyResponse> deleteFile( Future<EmptyResponse> deleteFile(
String url, { String url, {
+58 -13
View File
@@ -24,6 +24,7 @@ import 'exceptions.dart';
import 'models/event.dart'; import 'models/event.dart';
import 'models/message.dart'; import 'models/message.dart';
import 'models/user.dart'; import 'models/user.dart';
import 'extensions/map_extension.dart';
/// Handler function used for logging records. Function requires a single [LogRecord] /// Handler function used for logging records. Function requires a single [LogRecord]
/// as the only parameter. /// as the only parameter.
@@ -1021,27 +1022,39 @@ class StreamChatClient {
/// A message search. /// A message search.
Future<SearchMessagesResponse> search( Future<SearchMessagesResponse> search(
Map<String, dynamic> filters, Map<String, dynamic> filters, {
List<SortOption> sort,
String query, String query,
PaginationParams paginationParams, { List<SortOption> sort,
PaginationParams paginationParams,
Map<String, dynamic> messageFilters, Map<String, dynamic> messageFilters,
}) async { }) async {
assert(() {
if (filters == null || filters.isEmpty) {
throw ArgumentError('`filters` cannot be set as null or empty');
}
if (query == null && messageFilters == null) {
throw ArgumentError('Provide at least `query` or `messageFilters`');
}
if (query != null && messageFilters != null) {
throw ArgumentError(
"Can't provide both `query` and `messageFilters` at the same time",
);
}
return true;
}());
final payload = { final payload = {
'filter_conditions': filters, 'filter_conditions': filters,
if (messageFilters != null) ...{ 'message_filter_conditions': messageFilters,
'message_filter_conditions': messageFilters,
},
'query': query, 'query': query,
'sort': sort, 'sort': sort,
}; if (paginationParams != null) ...paginationParams.toJson(),
}.nullProtected;
if (paginationParams != null) { final response = await get('/search', queryParameters: {
payload.addAll(paginationParams.toJson()); 'payload': json.encode(payload),
} });
final response = await get('/search',
queryParameters: {'payload': json.encode(payload)});
return decode<SearchMessagesResponse>( return decode<SearchMessagesResponse>(
response.data, SearchMessagesResponse.fromJson); response.data, SearchMessagesResponse.fromJson);
} }
@@ -1295,7 +1308,7 @@ class StreamChatClient {
Future<UpdateMessageResponse> updateMessage(Message message) async { Future<UpdateMessageResponse> updateMessage(Message message) async {
final response = await post( final response = await post(
'/messages/${message.id}', '/messages/${message.id}',
data: {'message': message}, data: {'message': message.toJson()},
); );
return decode(response.data, UpdateMessageResponse.fromJson); return decode(response.data, UpdateMessageResponse.fromJson);
} }
@@ -1311,6 +1324,38 @@ class StreamChatClient {
final response = await get('/messages/$messageId'); final response = await get('/messages/$messageId');
return decode(response.data, GetMessageResponse.fromJson); return decode(response.data, GetMessageResponse.fromJson);
} }
/// Pins provided message
Future<UpdateMessageResponse> pinMessage(
Message message,
Object timeoutOrExpirationDate,
) {
assert(() {
if (timeoutOrExpirationDate is! DateTime &&
timeoutOrExpirationDate is! num &&
timeoutOrExpirationDate != null) {
throw ArgumentError('Invalid timeout or Expiration date');
}
return true;
}());
DateTime pinExpires;
if (timeoutOrExpirationDate is DateTime) {
pinExpires = timeoutOrExpirationDate.toUtc();
} else if (timeoutOrExpirationDate is num) {
pinExpires = DateTime.now().add(
Duration(seconds: timeoutOrExpirationDate.toInt()),
);
}
return updateMessage(
message.copyWith(pinned: true, pinExpires: pinExpires),
);
}
/// Unpins provided message
Future<UpdateMessageResponse> unpinMessage(Message message) {
return updateMessage(message.copyWith(pinned: false));
}
} }
/// The class that handles the state of the channel listening to the events /// The class that handles the state of the channel listening to the events
@@ -0,0 +1,7 @@
/// Useful extension functions for [Map]
extension MapX on Map {
/// Returns a new map with null keys or values removed
Map<String, dynamic> get nullProtected {
return {...this}..removeWhere((key, value) => key == null || value == null);
}
}
@@ -20,6 +20,9 @@ class ChannelState {
/// A paginated list of channel members /// A paginated list of channel members
final List<Member> members; final List<Member> members;
/// A paginated list of pinned messages
final List<Message> pinnedMessages;
/// The count of users watching the channel /// The count of users watching the channel
final int watcherCount; final int watcherCount;
@@ -34,6 +37,7 @@ class ChannelState {
this.channel, this.channel,
this.messages = const [], this.messages = const [],
this.members = const [], this.members = const [],
this.pinnedMessages = const [],
this.watcherCount, this.watcherCount,
this.watchers = const [], this.watchers = const [],
this.read = const [], this.read = const [],
@@ -51,6 +55,7 @@ class ChannelState {
ChannelModel channel, ChannelModel channel,
List<Message> messages, List<Message> messages,
List<Member> members, List<Member> members,
List<Message> pinnedMessages,
int watcherCount, int watcherCount,
List<User> watchers, List<User> watchers,
List<Read> read, List<Read> read,
@@ -59,6 +64,7 @@ class ChannelState {
channel: channel ?? this.channel, channel: channel ?? this.channel,
messages: messages ?? this.messages, messages: messages ?? this.messages,
members: members ?? this.members, members: members ?? this.members,
pinnedMessages: pinnedMessages ?? this.pinnedMessages,
watcherCount: watcherCount ?? this.watcherCount, watcherCount: watcherCount ?? this.watcherCount,
watchers: watchers ?? this.watchers, watchers: watchers ?? this.watchers,
read: read ?? this.read, read: read ?? this.read,
@@ -27,6 +27,13 @@ ChannelState _$ChannelStateFromJson(Map json) {
(k, e) => MapEntry(k as String, e), (k, e) => MapEntry(k as String, e),
))) )))
?.toList(), ?.toList(),
pinnedMessages: (json['pinned_messages'] as List)
?.map((e) => e == null
? null
: Message.fromJson((e as Map)?.map(
(k, e) => MapEntry(k as String, e),
)))
?.toList(),
watcherCount: json['watcher_count'] as int, watcherCount: json['watcher_count'] as int,
watchers: (json['watchers'] as List) watchers: (json['watchers'] as List)
?.map((e) => e == null ?.map((e) => e == null
@@ -50,6 +57,8 @@ Map<String, dynamic> _$ChannelStateToJson(ChannelState instance) =>
'channel': instance.channel?.toJson(), 'channel': instance.channel?.toJson(),
'messages': instance.messages?.map((e) => e?.toJson())?.toList(), 'messages': instance.messages?.map((e) => e?.toJson())?.toList(),
'members': instance.members?.map((e) => e?.toJson())?.toList(), 'members': instance.members?.map((e) => e?.toJson())?.toList(),
'pinned_messages':
instance.pinnedMessages?.map((e) => e?.toJson())?.toList(),
'watcher_count': instance.watcherCount, 'watcher_count': instance.watcherCount,
'watchers': instance.watchers?.map((e) => e?.toJson())?.toList(), 'watchers': instance.watchers?.map((e) => e?.toJson())?.toList(),
'read': instance.read?.map((e) => e?.toJson())?.toList(), 'read': instance.read?.map((e) => e?.toJson())?.toList(),
@@ -8,6 +8,12 @@ import 'user.dart';
part 'message.g.dart'; part 'message.g.dart';
class _PinExpires {
const _PinExpires();
}
const _pinExpires = _PinExpires();
/// Enum defining the status of a sending message /// Enum defining the status of a sending message
enum MessageSendingStatus { enum MessageSendingStatus {
/// Message is being sent /// Message is being sent
@@ -117,6 +123,22 @@ class Message {
@JsonKey(includeIfNull: false, toJson: Serialization.readOnly) @JsonKey(includeIfNull: false, toJson: Serialization.readOnly)
final User user; final User user;
/// If true the message is pinned
final bool pinned;
/// Reserved field indicating when the message was pinned
@JsonKey(toJson: Serialization.readOnly)
final DateTime pinnedAt;
/// Reserved field indicating when the message will expire
///
/// if `null` message has no expiry
final DateTime pinExpires;
/// Reserved field indicating who pinned the message
@JsonKey(toJson: Serialization.readOnly)
final User pinnedBy;
/// Message custom extraData /// Message custom extraData
@JsonKey(includeIfNull: false) @JsonKey(includeIfNull: false)
final Map<String, dynamic> extraData; final Map<String, dynamic> extraData;
@@ -160,6 +182,10 @@ class Message {
'updated_at', 'updated_at',
'deleted_at', 'deleted_at',
'user', 'user',
'pinned',
'pinned_at',
'pin_expires',
'pinned_by',
]; ];
/// Constructor used for json serialization /// Constructor used for json serialization
@@ -185,10 +211,15 @@ class Message {
this.createdAt, this.createdAt,
this.updatedAt, this.updatedAt,
this.user, this.user,
this.pinned = false,
this.pinnedAt,
DateTime pinExpires,
this.pinnedBy,
this.extraData, this.extraData,
this.deletedAt, this.deletedAt,
this.status = MessageSendingStatus.sent, this.status = MessageSendingStatus.sent,
}) : id = id ?? Uuid().v4(); }) : id = id ?? Uuid().v4(),
pinExpires = pinExpires?.toUtc();
/// Create a new instance from a json /// Create a new instance from a json
factory Message.fromJson(Map<String, dynamic> json) => _$MessageFromJson( factory Message.fromJson(Map<String, dynamic> json) => _$MessageFromJson(
@@ -222,35 +253,52 @@ class Message {
DateTime updatedAt, DateTime updatedAt,
DateTime deletedAt, DateTime deletedAt,
User user, User user,
bool pinned,
DateTime pinnedAt,
Object pinExpires = _pinExpires,
User pinnedBy,
Map<String, dynamic> extraData, Map<String, dynamic> extraData,
MessageSendingStatus status, MessageSendingStatus status,
}) => }) {
Message( assert(() {
id: id ?? this.id, if (pinExpires is! DateTime &&
text: text ?? this.text, pinExpires != null &&
type: type ?? this.type, pinExpires is! _PinExpires) {
attachments: attachments ?? this.attachments, throw ArgumentError('`pinExpires` can only be set as DateTime or null');
mentionedUsers: mentionedUsers ?? this.mentionedUsers, }
reactionCounts: reactionCounts ?? this.reactionCounts, return true;
reactionScores: reactionScores ?? this.reactionScores, }());
latestReactions: latestReactions ?? this.latestReactions, return Message(
ownReactions: ownReactions ?? this.ownReactions, id: id ?? this.id,
parentId: parentId ?? this.parentId, text: text ?? this.text,
quotedMessage: quotedMessage ?? this.quotedMessage, type: type ?? this.type,
quotedMessageId: quotedMessageId ?? this.quotedMessageId, attachments: attachments ?? this.attachments,
replyCount: replyCount ?? this.replyCount, mentionedUsers: mentionedUsers ?? this.mentionedUsers,
threadParticipants: threadParticipants ?? this.threadParticipants, reactionCounts: reactionCounts ?? this.reactionCounts,
showInChannel: showInChannel ?? this.showInChannel, reactionScores: reactionScores ?? this.reactionScores,
command: command ?? this.command, latestReactions: latestReactions ?? this.latestReactions,
createdAt: createdAt ?? this.createdAt, ownReactions: ownReactions ?? this.ownReactions,
silent: silent ?? this.silent, parentId: parentId ?? this.parentId,
extraData: extraData ?? this.extraData, quotedMessage: quotedMessage ?? this.quotedMessage,
user: user ?? this.user, quotedMessageId: quotedMessageId ?? this.quotedMessageId,
shadowed: shadowed ?? this.shadowed, replyCount: replyCount ?? this.replyCount,
updatedAt: updatedAt ?? this.updatedAt, threadParticipants: threadParticipants ?? this.threadParticipants,
deletedAt: deletedAt ?? this.deletedAt, showInChannel: showInChannel ?? this.showInChannel,
status: status ?? this.status, command: command ?? this.command,
); createdAt: createdAt ?? this.createdAt,
silent: silent ?? this.silent,
extraData: extraData ?? this.extraData,
user: user ?? this.user,
shadowed: shadowed ?? this.shadowed,
updatedAt: updatedAt ?? this.updatedAt,
deletedAt: deletedAt ?? this.deletedAt,
status: status ?? this.status,
pinned: pinned ?? this.pinned,
pinnedAt: pinnedAt ?? this.pinnedAt,
pinnedBy: pinnedBy ?? this.pinnedBy,
pinExpires: pinExpires == _pinExpires ? this.pinExpires : pinExpires,
);
}
/// Returns a new [Message] that is a combination of this message and the given /// Returns a new [Message] that is a combination of this message and the given
/// [other] message. /// [other] message.
@@ -281,6 +329,10 @@ class Message {
updatedAt: other.updatedAt, updatedAt: other.updatedAt,
deletedAt: other.deletedAt, deletedAt: other.deletedAt,
status: other.status, status: other.status,
pinned: other.pinned,
pinnedAt: other.pinnedAt,
pinExpires: other.pinExpires,
pinnedBy: other.pinnedBy,
); );
} }
} }
@@ -75,6 +75,18 @@ Message _$MessageFromJson(Map json) {
: User.fromJson((json['user'] as Map)?.map( : User.fromJson((json['user'] as Map)?.map(
(k, e) => MapEntry(k as String, e), (k, e) => MapEntry(k as String, e),
)), )),
pinned: json['pinned'] as bool,
pinnedAt: json['pinned_at'] == null
? null
: DateTime.parse(json['pinned_at'] as String),
pinExpires: json['pin_expires'] == null
? null
: DateTime.parse(json['pin_expires'] as String),
pinnedBy: json['pinned_by'] == null
? null
: User.fromJson((json['pinned_by'] as Map)?.map(
(k, e) => MapEntry(k as String, e),
)),
extraData: (json['extra_data'] as Map)?.map( extraData: (json['extra_data'] as Map)?.map(
(k, e) => MapEntry(k as String, e), (k, e) => MapEntry(k as String, e),
), ),
@@ -116,6 +128,10 @@ Map<String, dynamic> _$MessageToJson(Message instance) {
writeNotNull('created_at', readonly(instance.createdAt)); writeNotNull('created_at', readonly(instance.createdAt));
writeNotNull('updated_at', readonly(instance.updatedAt)); writeNotNull('updated_at', readonly(instance.updatedAt));
writeNotNull('user', readonly(instance.user)); writeNotNull('user', readonly(instance.user));
val['pinned'] = instance.pinned;
val['pinned_at'] = readonly(instance.pinnedAt);
val['pin_expires'] = instance.pinExpires?.toIso8601String();
val['pinned_by'] = readonly(instance.pinnedBy);
writeNotNull('extra_data', instance.extraData); writeNotNull('extra_data', instance.extraData);
writeNotNull('deleted_at', readonly(instance.deletedAt)); writeNotNull('deleted_at', readonly(instance.deletedAt));
return val; return val;
@@ -273,6 +273,79 @@ void main() {
verify(mockDio.delete<String>('/channels/messaging/testid/image', verify(mockDio.delete<String>('/channels/messaging/testid/image',
queryParameters: {'url': url})).called(1); queryParameters: {'url': url})).called(1);
}); });
test('pinMessage should throw argument error', () {
final client = StreamChatClient('api-key');
final channelClient = client.channel('messaging', id: 'testid');
final message = Message(text: 'Hello');
expect(
() => channelClient.pinMessage(message, 'InvalidType'),
throwsArgumentError,
);
});
test('should be pinned successfully', () async {
final mockDio = MockDio();
when(mockDio.options).thenReturn(BaseOptions());
when(mockDio.interceptors).thenReturn(Interceptors());
final client = StreamChatClient(
'api-key',
httpClient: mockDio,
tokenProvider: (_) async => '',
);
final channelClient = client.channel('messaging', id: 'testid');
final message = Message(
text: 'Hello',
id: 'test',
);
when(mockDio.post<String>(
'/messages/${message.id}',
data: anything,
)).thenAnswer((_) async => Response(data: '{}', statusCode: 200));
await channelClient.pinMessage(message, 30);
verify(mockDio.post<String>('/messages/${message.id}', data: anything))
.called(1);
});
test('should be unpinned successfully', () async {
final mockDio = MockDio();
when(mockDio.options).thenReturn(BaseOptions());
when(mockDio.interceptors).thenReturn(Interceptors());
final client = StreamChatClient(
'api-key',
httpClient: mockDio,
tokenProvider: (_) async => '',
);
final channelClient = client.channel('messaging', id: 'testid');
final message = Message(
text: 'Hello',
id: 'test',
);
when(mockDio.post<String>(
'/messages/${message.id}',
data: anything,
)).thenAnswer((_) async => Response(data: '{}', statusCode: 200));
await channelClient.unpinMessage(message);
verify(mockDio.post<String>('/messages/${message.id}', data: anything))
.called(1);
});
}); });
test('sendEvent', () async { test('sendEvent', () async {
+67 -10
View File
@@ -180,18 +180,25 @@ void main() {
httpClient: mockDio, httpClient: mockDio,
); );
final filter = {
'cid': {
r'$in': ['messaging:testId']
}
};
final query = 'hello';
final queryParams = { final queryParams = {
'payload': json.encode({ 'payload': json.encode({
"filter_conditions": null, 'filter_conditions': filter,
'query': null, 'query': query,
'sort': null,
}), }),
}; };
when(mockDio.get<String>('/search', queryParameters: queryParams)) when(mockDio.get<String>('/search', queryParameters: queryParams))
.thenAnswer((_) async => Response(data: '{}', statusCode: 200)); .thenAnswer((_) async => Response(data: '{}', statusCode: 200));
await client.search(null, null, null, null); await client.search(filter, query: query);
verify(mockDio.get<String>('/search', queryParameters: queryParams)) verify(mockDio.get<String>('/search', queryParameters: queryParams))
.called(1); .called(1);
@@ -218,10 +225,10 @@ void main() {
final queryParams = { final queryParams = {
'payload': json.encode({ 'payload': json.encode({
"filter_conditions": filters, 'filter_conditions': filters,
'query': query, 'query': query,
'sort': sortOptions, 'sort': sortOptions,
"limit": 10, 'limit': 10,
}), }),
}; };
@@ -230,9 +237,9 @@ void main() {
await client.search( await client.search(
filters, filters,
sortOptions, sort: sortOptions,
query, query: query,
PaginationParams(), paginationParams: PaginationParams(),
); );
verify(mockDio.get<String>('/search', queryParameters: queryParams)) verify(mockDio.get<String>('/search', queryParameters: queryParams))
@@ -648,7 +655,7 @@ void main() {
when(mockDio.post<String>( when(mockDio.post<String>(
'/messages/${message.id}', '/messages/${message.id}',
data: {'message': message}, data: {'message': anything},
)).thenAnswer((_) async => Response(data: '{}', statusCode: 200)); )).thenAnswer((_) async => Response(data: '{}', statusCode: 200));
await client.updateMessage(message); await client.updateMessage(message);
@@ -934,6 +941,56 @@ void main() {
expect(client.delete('/test'), throwsA(ApiError('test error', 400))); expect(client.delete('/test'), throwsA(ApiError('test error', 400)));
}); });
}); });
group('pin message', () {
final mockDio = MockDio();
when(mockDio.options).thenReturn(BaseOptions());
when(mockDio.interceptors).thenReturn(Interceptors());
final client = StreamChatClient(
'api-key',
httpClient: mockDio,
);
test('should throw argument error', () {
final message = Message(text: 'Hello');
expect(
() => client.pinMessage(message, 'InvalidType'),
throwsArgumentError,
);
});
test('should complete successfully', () async {
final timeout = 30;
final message = Message(text: 'Hello');
when(mockDio.post<String>(
'/messages/${message.id}',
data: anything,
)).thenAnswer((_) async => Response(data: '{}', statusCode: 200));
await client.pinMessage(message, timeout);
verify(mockDio.post<String>('/messages/${message.id}',
data: {'message': anything})).called(1);
});
test('should unpin message successfully', () async {
final message = Message(text: 'Hello');
when(mockDio.post<String>(
'/messages/${message.id}',
data: anything,
)).thenAnswer((_) async => Response(data: '{}', statusCode: 200));
await client.unpinMessage(message);
verify(mockDio.post<String>('/messages/${message.id}',
data: anything))
.called(1);
});
});
}); });
group('channel', () { group('channel', () {
@@ -87,7 +87,11 @@ void main() {
"updated_at": "2020-01-29T03:23:02.843949Z", "updated_at": "2020-01-29T03:23:02.843949Z",
"mentioned_users": [], "mentioned_users": [],
"status": "SENT", "status": "SENT",
"silent": false "silent": false,
"pinned": false,
"pinned_at": null,
"pin_expires": null,
"pinned_by": null
}, },
{ {
"id": "dry-meadow-0-e8e74482-b4cd-48db-9d1e-30e6c191786f", "id": "dry-meadow-0-e8e74482-b4cd-48db-9d1e-30e6c191786f",
@@ -114,7 +118,11 @@ void main() {
"updated_at": "2020-01-29T03:23:07.981091Z", "updated_at": "2020-01-29T03:23:07.981091Z",
"mentioned_users": [], "mentioned_users": [],
"status": "SENT", "status": "SENT",
"silent": false "silent": false,
"pinned": false,
"pinned_at": null,
"pin_expires": null,
"pinned_by": null
}, },
{ {
"id": "dry-meadow-0-53e6299f-9b97-4a9c-a27e-7e2dde49b7e0", "id": "dry-meadow-0-53e6299f-9b97-4a9c-a27e-7e2dde49b7e0",
@@ -141,7 +149,11 @@ void main() {
"updated_at": "2020-01-29T03:23:11.568022Z", "updated_at": "2020-01-29T03:23:11.568022Z",
"mentioned_users": [], "mentioned_users": [],
"status": "SENT", "status": "SENT",
"silent": false "silent": false,
"pinned": false,
"pinned_at": null,
"pin_expires": null,
"pinned_by": null
}, },
{ {
"id": "dry-meadow-0-80925be0-786e-40a5-b225-486518dafd35", "id": "dry-meadow-0-80925be0-786e-40a5-b225-486518dafd35",
@@ -168,7 +180,11 @@ void main() {
"updated_at": "2020-01-29T03:32:57.403566Z", "updated_at": "2020-01-29T03:32:57.403566Z",
"mentioned_users": [], "mentioned_users": [],
"status": "SENT", "status": "SENT",
"silent": false "silent": false,
"pinned": false,
"pinned_at": null,
"pin_expires": null,
"pinned_by": null
}, },
{ {
"id": "dry-meadow-0-64d7970f-ede8-4b31-9738-1bc1756d2bfe", "id": "dry-meadow-0-64d7970f-ede8-4b31-9738-1bc1756d2bfe",
@@ -195,7 +211,11 @@ void main() {
"updated_at": "2020-01-29T03:33:35.294802Z", "updated_at": "2020-01-29T03:33:35.294802Z",
"mentioned_users": [], "mentioned_users": [],
"status": "SENT", "status": "SENT",
"silent": false "silent": false,
"pinned": false,
"pinned_at": null,
"pin_expires": null,
"pinned_by": null
}, },
{ {
"id": "withered-cell-0-84cbd760-cf55-4f7e-9207-c5f66cccc6dc", "id": "withered-cell-0-84cbd760-cf55-4f7e-9207-c5f66cccc6dc",
@@ -222,7 +242,11 @@ void main() {
"updated_at": "2020-01-29T03:34:27.393296Z", "updated_at": "2020-01-29T03:34:27.393296Z",
"mentioned_users": [], "mentioned_users": [],
"status": "SENT", "status": "SENT",
"silent": false "silent": false,
"pinned": false,
"pinned_at": null,
"pin_expires": null,
"pinned_by": null
}, },
{ {
"id": "dry-meadow-0-e9203588-43c3-40b1-91f7-f217fc42aa53", "id": "dry-meadow-0-e9203588-43c3-40b1-91f7-f217fc42aa53",
@@ -249,7 +273,11 @@ void main() {
"updated_at": "2020-01-29T03:34:37.638376Z", "updated_at": "2020-01-29T03:34:37.638376Z",
"mentioned_users": [], "mentioned_users": [],
"status": "SENT", "status": "SENT",
"silent": false "silent": false,
"pinned": false,
"pinned_at": null,
"pin_expires": null,
"pinned_by": null
}, },
{ {
"id": "withered-cell-0-7e3552d7-7a0d-45f2-a856-e91b23a7e240", "id": "withered-cell-0-7e3552d7-7a0d-45f2-a856-e91b23a7e240",
@@ -276,7 +304,11 @@ void main() {
"updated_at": "2020-01-29T03:35:04.301566Z", "updated_at": "2020-01-29T03:35:04.301566Z",
"mentioned_users": [], "mentioned_users": [],
"status": "SENT", "status": "SENT",
"silent": false "silent": false,
"pinned": false,
"pinned_at": null,
"pin_expires": null,
"pinned_by": null
}, },
{ {
"id": "dry-meadow-0-1ffeafd4-e4fc-4c84-9394-9d7cb10fff42", "id": "dry-meadow-0-1ffeafd4-e4fc-4c84-9394-9d7cb10fff42",
@@ -303,7 +335,11 @@ void main() {
"updated_at": "2020-01-29T03:35:24.939085Z", "updated_at": "2020-01-29T03:35:24.939085Z",
"mentioned_users": [], "mentioned_users": [],
"status": "SENT", "status": "SENT",
"silent": false "silent": false,
"pinned": false,
"pinned_at": null,
"pin_expires": null,
"pinned_by": null
}, },
{ {
"id": "dry-meadow-0-3f147324-12c8-4b41-9fb5-2db88d065efa", "id": "dry-meadow-0-3f147324-12c8-4b41-9fb5-2db88d065efa",
@@ -330,7 +366,11 @@ void main() {
"updated_at": "2020-01-29T03:35:33.101566Z", "updated_at": "2020-01-29T03:35:33.101566Z",
"mentioned_users": [], "mentioned_users": [],
"status": "SENT", "status": "SENT",
"silent": false "silent": false,
"pinned": false,
"pinned_at": null,
"pin_expires": null,
"pinned_by": null
}, },
{ {
"id": "dry-meadow-0-51a348ae-0c0a-44de-a556-eac7891c0cf0", "id": "dry-meadow-0-51a348ae-0c0a-44de-a556-eac7891c0cf0",
@@ -357,7 +397,11 @@ void main() {
"updated_at": "2020-01-29T03:35:45.458685Z", "updated_at": "2020-01-29T03:35:45.458685Z",
"mentioned_users": [], "mentioned_users": [],
"status": "SENT", "status": "SENT",
"silent": false "silent": false,
"pinned": false,
"pinned_at": null,
"pin_expires": null,
"pinned_by": null
}, },
{ {
"id": "icy-recipe-7-a29e237b-8d81-4a97-9bc8-d42bca3f1356", "id": "icy-recipe-7-a29e237b-8d81-4a97-9bc8-d42bca3f1356",
@@ -384,7 +428,11 @@ void main() {
"updated_at": "2020-01-29T07:02:11.535395Z", "updated_at": "2020-01-29T07:02:11.535395Z",
"mentioned_users": [], "mentioned_users": [],
"status": "SENT", "status": "SENT",
"silent": false "silent": false,
"pinned": false,
"pinned_at": null,
"pin_expires": null,
"pinned_by": null
}, },
{ {
"id": "icy-recipe-7-935c396e-ddf8-4a9a-951c-0a12fa5bf055", "id": "icy-recipe-7-935c396e-ddf8-4a9a-951c-0a12fa5bf055",
@@ -411,7 +459,11 @@ void main() {
"updated_at": "2020-01-29T07:02:22.485136Z", "updated_at": "2020-01-29T07:02:22.485136Z",
"mentioned_users": [], "mentioned_users": [],
"status": "SENT", "status": "SENT",
"silent": false "silent": false,
"pinned": false,
"pinned_at": null,
"pin_expires": null,
"pinned_by": null
}, },
{ {
"id": "throbbing-boat-5-1e4d5730-5ff0-4d25-9948-9f34ffda43e4", "id": "throbbing-boat-5-1e4d5730-5ff0-4d25-9948-9f34ffda43e4",
@@ -438,7 +490,11 @@ void main() {
"updated_at": "2020-01-29T14:12:04.688552Z", "updated_at": "2020-01-29T14:12:04.688552Z",
"mentioned_users": [], "mentioned_users": [],
"status": "SENT", "status": "SENT",
"silent": false "silent": false,
"pinned": false,
"pinned_at": null,
"pin_expires": null,
"pinned_by": null
}, },
{ {
"id": "snowy-credit-3-3e0c1a0d-d22f-42ee-b2a1-f9f49477bf21", "id": "snowy-credit-3-3e0c1a0d-d22f-42ee-b2a1-f9f49477bf21",
@@ -465,7 +521,11 @@ void main() {
"updated_at": "2020-01-29T15:29:36.011316Z", "updated_at": "2020-01-29T15:29:36.011316Z",
"mentioned_users": [], "mentioned_users": [],
"status": "SENT", "status": "SENT",
"silent": false "silent": false,
"pinned": false,
"pinned_at": null,
"pin_expires": null,
"pinned_by": null
}, },
{ {
"id": "snowy-credit-3-3319537e-2d0e-4876-8170-a54f046e4b7d", "id": "snowy-credit-3-3319537e-2d0e-4876-8170-a54f046e4b7d",
@@ -492,7 +552,11 @@ void main() {
"updated_at": "2020-01-29T15:29:41.677819Z", "updated_at": "2020-01-29T15:29:41.677819Z",
"mentioned_users": [], "mentioned_users": [],
"status": "SENT", "status": "SENT",
"silent": false "silent": false,
"pinned": false,
"pinned_at": null,
"pin_expires": null,
"pinned_by": null
}, },
{ {
"id": "snowy-credit-3-cfaf0b46-1daa-49c5-947c-b16d6697487d", "id": "snowy-credit-3-cfaf0b46-1daa-49c5-947c-b16d6697487d",
@@ -519,7 +583,11 @@ void main() {
"updated_at": "2020-01-29T15:29:43.354177Z", "updated_at": "2020-01-29T15:29:43.354177Z",
"mentioned_users": [], "mentioned_users": [],
"status": "SENT", "status": "SENT",
"silent": false "silent": false,
"pinned": false,
"pinned_at": null,
"pin_expires": null,
"pinned_by": null
}, },
{ {
"id": "snowy-credit-3-cebe25a7-a3a3-49fc-9919-91c6725e81f3", "id": "snowy-credit-3-cebe25a7-a3a3-49fc-9919-91c6725e81f3",
@@ -546,7 +614,11 @@ void main() {
"updated_at": "2020-01-29T15:29:44.754713Z", "updated_at": "2020-01-29T15:29:44.754713Z",
"mentioned_users": [], "mentioned_users": [],
"status": "SENT", "status": "SENT",
"silent": false "silent": false,
"pinned": false,
"pinned_at": null,
"pin_expires": null,
"pinned_by": null
}, },
{ {
"id": "divine-glade-9-0cea9262-5766-48e9-8b22-311870aed3bf", "id": "divine-glade-9-0cea9262-5766-48e9-8b22-311870aed3bf",
@@ -573,7 +645,11 @@ void main() {
"updated_at": "2020-01-29T17:02:36.933852Z", "updated_at": "2020-01-29T17:02:36.933852Z",
"mentioned_users": [], "mentioned_users": [],
"status": "SENT", "status": "SENT",
"silent": false "silent": false,
"pinned": false,
"pinned_at": null,
"pin_expires": null,
"pinned_by": null
}, },
{ {
"id": "red-firefly-9-c4e9007b-bb7d-4238-ae08-5f8e3cd03d73", "id": "red-firefly-9-c4e9007b-bb7d-4238-ae08-5f8e3cd03d73",
@@ -600,7 +676,11 @@ void main() {
"updated_at": "2020-01-29T22:14:08.54062Z", "updated_at": "2020-01-29T22:14:08.54062Z",
"mentioned_users": [], "mentioned_users": [],
"status": "SENT", "status": "SENT",
"silent": false "silent": false,
"pinned": false,
"pinned_at": null,
"pin_expires": null,
"pinned_by": null
}, },
{ {
"id": "bitter-glade-2-02aee4eb-4093-4736-808b-2de75820e854", "id": "bitter-glade-2-02aee4eb-4093-4736-808b-2de75820e854",
@@ -627,7 +707,11 @@ void main() {
"updated_at": "2020-01-30T13:11:37.191293Z", "updated_at": "2020-01-30T13:11:37.191293Z",
"mentioned_users": [], "mentioned_users": [],
"status": "SENT", "status": "SENT",
"silent": false "silent": false,
"pinned": false,
"pinned_at": null,
"pin_expires": null,
"pinned_by": null
}, },
{ {
"id": "morning-sea-1-0c700bcb-46dd-4224-b590-e77bdbccc480", "id": "morning-sea-1-0c700bcb-46dd-4224-b590-e77bdbccc480",
@@ -654,7 +738,11 @@ void main() {
"updated_at": "2020-01-30T13:33:16.853116Z", "updated_at": "2020-01-30T13:33:16.853116Z",
"mentioned_users": [], "mentioned_users": [],
"status": "SENT", "status": "SENT",
"silent": false "silent": false,
"pinned": false,
"pinned_at": null,
"pin_expires": null,
"pinned_by": null
}, },
{ {
"id": "ancient-salad-0-53e8b4e6-5b7b-43ad-aeee-8bfb6a9ed0be", "id": "ancient-salad-0-53e8b4e6-5b7b-43ad-aeee-8bfb6a9ed0be",
@@ -681,7 +769,11 @@ void main() {
"updated_at": "2020-01-30T13:36:52.749732Z", "updated_at": "2020-01-30T13:36:52.749732Z",
"mentioned_users": [], "mentioned_users": [],
"status": "SENT", "status": "SENT",
"silent": false "silent": false,
"pinned": false,
"pinned_at": null,
"pin_expires": null,
"pinned_by": null
}, },
{ {
"id": "ancient-salad-0-8c225075-bd4c-42e2-8024-530aae13cd40", "id": "ancient-salad-0-8c225075-bd4c-42e2-8024-530aae13cd40",
@@ -708,7 +800,11 @@ void main() {
"updated_at": "2020-01-30T13:37:41.631056Z", "updated_at": "2020-01-30T13:37:41.631056Z",
"mentioned_users": [], "mentioned_users": [],
"status": "SENT", "status": "SENT",
"silent": false "silent": false,
"pinned": false,
"pinned_at": null,
"pin_expires": null,
"pinned_by": null
}, },
{ {
"id": "proud-sea-7-17802096-cbf8-4e3c-addd-4ee31f4c8b5c", "id": "proud-sea-7-17802096-cbf8-4e3c-addd-4ee31f4c8b5c",
@@ -735,7 +831,11 @@ void main() {
"updated_at": "2020-01-30T13:43:41.062362Z", "updated_at": "2020-01-30T13:43:41.062362Z",
"mentioned_users": [], "mentioned_users": [],
"status": "SENT", "status": "SENT",
"silent": false "silent": false,
"pinned": false,
"pinned_at": null,
"pin_expires": null,
"pinned_by": null
} }
], ],
"watcher_count": 5, "watcher_count": 5,
@@ -797,7 +897,11 @@ void main() {
"show_in_channel": null, "show_in_channel": null,
"mentioned_users": [], "mentioned_users": [],
"status": "SENT", "status": "SENT",
"silent": false "silent": false,
"pinned": false,
"pinned_at": null,
"pin_expires": null,
"pinned_by": null
}, },
{ {
"id": "dry-meadow-0-e8e74482-b4cd-48db-9d1e-30e6c191786f", "id": "dry-meadow-0-e8e74482-b4cd-48db-9d1e-30e6c191786f",
@@ -809,7 +913,11 @@ void main() {
"show_in_channel": null, "show_in_channel": null,
"mentioned_users": [], "mentioned_users": [],
"status": "SENT", "status": "SENT",
"silent": false "silent": false,
"pinned": false,
"pinned_at": null,
"pin_expires": null,
"pinned_by": null
}, },
{ {
"id": "dry-meadow-0-53e6299f-9b97-4a9c-a27e-7e2dde49b7e0", "id": "dry-meadow-0-53e6299f-9b97-4a9c-a27e-7e2dde49b7e0",
@@ -821,7 +929,11 @@ void main() {
"show_in_channel": null, "show_in_channel": null,
"mentioned_users": [], "mentioned_users": [],
"status": "SENT", "status": "SENT",
"silent": false "silent": false,
"pinned": false,
"pinned_at": null,
"pin_expires": null,
"pinned_by": null
}, },
{ {
"id": "dry-meadow-0-80925be0-786e-40a5-b225-486518dafd35", "id": "dry-meadow-0-80925be0-786e-40a5-b225-486518dafd35",
@@ -833,7 +945,11 @@ void main() {
"show_in_channel": null, "show_in_channel": null,
"mentioned_users": [], "mentioned_users": [],
"status": "SENT", "status": "SENT",
"silent": false "silent": false,
"pinned": false,
"pinned_at": null,
"pin_expires": null,
"pinned_by": null
}, },
{ {
"id": "dry-meadow-0-64d7970f-ede8-4b31-9738-1bc1756d2bfe", "id": "dry-meadow-0-64d7970f-ede8-4b31-9738-1bc1756d2bfe",
@@ -845,7 +961,11 @@ void main() {
"show_in_channel": null, "show_in_channel": null,
"mentioned_users": [], "mentioned_users": [],
"status": "SENT", "status": "SENT",
"silent": false "silent": false,
"pinned": false,
"pinned_at": null,
"pin_expires": null,
"pinned_by": null
}, },
{ {
"id": "withered-cell-0-84cbd760-cf55-4f7e-9207-c5f66cccc6dc", "id": "withered-cell-0-84cbd760-cf55-4f7e-9207-c5f66cccc6dc",
@@ -857,7 +977,11 @@ void main() {
"show_in_channel": null, "show_in_channel": null,
"mentioned_users": [], "mentioned_users": [],
"status": "SENT", "status": "SENT",
"silent": false "silent": false,
"pinned": false,
"pinned_at": null,
"pin_expires": null,
"pinned_by": null
}, },
{ {
"id": "dry-meadow-0-e9203588-43c3-40b1-91f7-f217fc42aa53", "id": "dry-meadow-0-e9203588-43c3-40b1-91f7-f217fc42aa53",
@@ -869,7 +993,11 @@ void main() {
"show_in_channel": null, "show_in_channel": null,
"mentioned_users": [], "mentioned_users": [],
"status": "SENT", "status": "SENT",
"silent": false "silent": false,
"pinned": false,
"pinned_at": null,
"pin_expires": null,
"pinned_by": null
}, },
{ {
"id": "withered-cell-0-7e3552d7-7a0d-45f2-a856-e91b23a7e240", "id": "withered-cell-0-7e3552d7-7a0d-45f2-a856-e91b23a7e240",
@@ -881,7 +1009,11 @@ void main() {
"show_in_channel": null, "show_in_channel": null,
"mentioned_users": [], "mentioned_users": [],
"status": "SENT", "status": "SENT",
"silent": false "silent": false,
"pinned": false,
"pinned_at": null,
"pin_expires": null,
"pinned_by": null
}, },
{ {
"id": "dry-meadow-0-1ffeafd4-e4fc-4c84-9394-9d7cb10fff42", "id": "dry-meadow-0-1ffeafd4-e4fc-4c84-9394-9d7cb10fff42",
@@ -893,7 +1025,11 @@ void main() {
"show_in_channel": null, "show_in_channel": null,
"mentioned_users": [], "mentioned_users": [],
"status": "SENT", "status": "SENT",
"silent": false "silent": false,
"pinned": false,
"pinned_at": null,
"pin_expires": null,
"pinned_by": null
}, },
{ {
"id": "dry-meadow-0-3f147324-12c8-4b41-9fb5-2db88d065efa", "id": "dry-meadow-0-3f147324-12c8-4b41-9fb5-2db88d065efa",
@@ -905,7 +1041,11 @@ void main() {
"show_in_channel": null, "show_in_channel": null,
"mentioned_users": [], "mentioned_users": [],
"status": "SENT", "status": "SENT",
"silent": false "silent": false,
"pinned": false,
"pinned_at": null,
"pin_expires": null,
"pinned_by": null
}, },
{ {
"id": "dry-meadow-0-51a348ae-0c0a-44de-a556-eac7891c0cf0", "id": "dry-meadow-0-51a348ae-0c0a-44de-a556-eac7891c0cf0",
@@ -917,7 +1057,11 @@ void main() {
"show_in_channel": null, "show_in_channel": null,
"mentioned_users": [], "mentioned_users": [],
"status": "SENT", "status": "SENT",
"silent": false "silent": false,
"pinned": false,
"pinned_at": null,
"pin_expires": null,
"pinned_by": null
}, },
{ {
"id": "icy-recipe-7-a29e237b-8d81-4a97-9bc8-d42bca3f1356", "id": "icy-recipe-7-a29e237b-8d81-4a97-9bc8-d42bca3f1356",
@@ -929,7 +1073,11 @@ void main() {
"show_in_channel": null, "show_in_channel": null,
"mentioned_users": [], "mentioned_users": [],
"status": "SENT", "status": "SENT",
"silent": false "silent": false,
"pinned": false,
"pinned_at": null,
"pin_expires": null,
"pinned_by": null
}, },
{ {
"id": "icy-recipe-7-935c396e-ddf8-4a9a-951c-0a12fa5bf055", "id": "icy-recipe-7-935c396e-ddf8-4a9a-951c-0a12fa5bf055",
@@ -941,7 +1089,11 @@ void main() {
"show_in_channel": null, "show_in_channel": null,
"mentioned_users": [], "mentioned_users": [],
"status": "SENT", "status": "SENT",
"silent": false "silent": false,
"pinned": false,
"pinned_at": null,
"pin_expires": null,
"pinned_by": null
}, },
{ {
"id": "throbbing-boat-5-1e4d5730-5ff0-4d25-9948-9f34ffda43e4", "id": "throbbing-boat-5-1e4d5730-5ff0-4d25-9948-9f34ffda43e4",
@@ -953,7 +1105,11 @@ void main() {
"show_in_channel": null, "show_in_channel": null,
"mentioned_users": [], "mentioned_users": [],
"status": "SENT", "status": "SENT",
"silent": false "silent": false,
"pinned": false,
"pinned_at": null,
"pin_expires": null,
"pinned_by": null
}, },
{ {
"id": "snowy-credit-3-3e0c1a0d-d22f-42ee-b2a1-f9f49477bf21", "id": "snowy-credit-3-3e0c1a0d-d22f-42ee-b2a1-f9f49477bf21",
@@ -965,7 +1121,11 @@ void main() {
"show_in_channel": null, "show_in_channel": null,
"mentioned_users": [], "mentioned_users": [],
"status": "SENT", "status": "SENT",
"silent": false "silent": false,
"pinned": false,
"pinned_at": null,
"pin_expires": null,
"pinned_by": null
}, },
{ {
"id": "snowy-credit-3-3319537e-2d0e-4876-8170-a54f046e4b7d", "id": "snowy-credit-3-3319537e-2d0e-4876-8170-a54f046e4b7d",
@@ -977,7 +1137,11 @@ void main() {
"show_in_channel": null, "show_in_channel": null,
"mentioned_users": [], "mentioned_users": [],
"status": "SENT", "status": "SENT",
"silent": false "silent": false,
"pinned": false,
"pinned_at": null,
"pin_expires": null,
"pinned_by": null
}, },
{ {
"id": "snowy-credit-3-cfaf0b46-1daa-49c5-947c-b16d6697487d", "id": "snowy-credit-3-cfaf0b46-1daa-49c5-947c-b16d6697487d",
@@ -989,7 +1153,11 @@ void main() {
"show_in_channel": null, "show_in_channel": null,
"mentioned_users": [], "mentioned_users": [],
"status": "SENT", "status": "SENT",
"silent": false "silent": false,
"pinned": false,
"pinned_at": null,
"pin_expires": null,
"pinned_by": null
}, },
{ {
"id": "snowy-credit-3-cebe25a7-a3a3-49fc-9919-91c6725e81f3", "id": "snowy-credit-3-cebe25a7-a3a3-49fc-9919-91c6725e81f3",
@@ -1001,7 +1169,11 @@ void main() {
"show_in_channel": null, "show_in_channel": null,
"mentioned_users": [], "mentioned_users": [],
"status": "SENT", "status": "SENT",
"silent": false "silent": false,
"pinned": false,
"pinned_at": null,
"pin_expires": null,
"pinned_by": null
}, },
{ {
"id": "divine-glade-9-0cea9262-5766-48e9-8b22-311870aed3bf", "id": "divine-glade-9-0cea9262-5766-48e9-8b22-311870aed3bf",
@@ -1013,7 +1185,11 @@ void main() {
"show_in_channel": null, "show_in_channel": null,
"mentioned_users": [], "mentioned_users": [],
"status": "SENT", "status": "SENT",
"silent": false "silent": false,
"pinned": false,
"pinned_at": null,
"pin_expires": null,
"pinned_by": null
}, },
{ {
"id": "red-firefly-9-c4e9007b-bb7d-4238-ae08-5f8e3cd03d73", "id": "red-firefly-9-c4e9007b-bb7d-4238-ae08-5f8e3cd03d73",
@@ -1025,7 +1201,11 @@ void main() {
"show_in_channel": null, "show_in_channel": null,
"mentioned_users": [], "mentioned_users": [],
"status": "SENT", "status": "SENT",
"silent": false "silent": false,
"pinned": false,
"pinned_at": null,
"pin_expires": null,
"pinned_by": null
}, },
{ {
"id": "bitter-glade-2-02aee4eb-4093-4736-808b-2de75820e854", "id": "bitter-glade-2-02aee4eb-4093-4736-808b-2de75820e854",
@@ -1037,7 +1217,11 @@ void main() {
"show_in_channel": null, "show_in_channel": null,
"mentioned_users": [], "mentioned_users": [],
"status": "SENT", "status": "SENT",
"silent": false "silent": false,
"pinned": false,
"pinned_at": null,
"pin_expires": null,
"pinned_by": null
}, },
{ {
"id": "morning-sea-1-0c700bcb-46dd-4224-b590-e77bdbccc480", "id": "morning-sea-1-0c700bcb-46dd-4224-b590-e77bdbccc480",
@@ -1049,7 +1233,11 @@ void main() {
"show_in_channel": null, "show_in_channel": null,
"mentioned_users": [], "mentioned_users": [],
"status": "SENT", "status": "SENT",
"silent": false "silent": false,
"pinned": false,
"pinned_at": null,
"pin_expires": null,
"pinned_by": null
}, },
{ {
"id": "ancient-salad-0-53e8b4e6-5b7b-43ad-aeee-8bfb6a9ed0be", "id": "ancient-salad-0-53e8b4e6-5b7b-43ad-aeee-8bfb6a9ed0be",
@@ -1061,7 +1249,11 @@ void main() {
"show_in_channel": null, "show_in_channel": null,
"mentioned_users": [], "mentioned_users": [],
"status": "SENT", "status": "SENT",
"silent": false "silent": false,
"pinned": false,
"pinned_at": null,
"pin_expires": null,
"pinned_by": null
}, },
{ {
"id": "ancient-salad-0-8c225075-bd4c-42e2-8024-530aae13cd40", "id": "ancient-salad-0-8c225075-bd4c-42e2-8024-530aae13cd40",
@@ -1073,7 +1265,11 @@ void main() {
"show_in_channel": null, "show_in_channel": null,
"mentioned_users": [], "mentioned_users": [],
"status": "SENT", "status": "SENT",
"silent": false "silent": false,
"pinned": false,
"pinned_at": null,
"pin_expires": null,
"pinned_by": null
}, },
{ {
"id": "proud-sea-7-17802096-cbf8-4e3c-addd-4ee31f4c8b5c", "id": "proud-sea-7-17802096-cbf8-4e3c-addd-4ee31f4c8b5c",
@@ -1085,9 +1281,14 @@ void main() {
"show_in_channel": null, "show_in_channel": null,
"mentioned_users": [], "mentioned_users": [],
"status": "SENT", "status": "SENT",
"silent": false "silent": false,
"pinned": false,
"pinned_at": null,
"pin_expires": null,
"pinned_by": null
} }
], ],
"pinned_messages": [],
"members": [], "members": [],
"watcher_count": 5 "watcher_count": 5
} }
@@ -1100,6 +1301,7 @@ void main() {
(j['messages'] as List).map((m) => Message.fromJson(m)).toList(), (j['messages'] as List).map((m) => Message.fromJson(m)).toList(),
read: null, read: null,
watcherCount: 5, watcherCount: 5,
pinnedMessages: [],
watchers: null, watchers: null,
); );
@@ -64,6 +64,10 @@ void main() {
"reaction_scores": { "reaction_scores": {
"love": 1 "love": 1
}, },
"pinned": false,
"pinned_at": null,
"pin_expires": null,
"pinned_by": null,
"reply_count": 0, "reply_count": 0,
"created_at": "2020-01-28T22:17:31.107978Z", "created_at": "2020-01-28T22:17:31.107978Z",
"updated_at": "2020-01-28T22:17:31.130506Z", "updated_at": "2020-01-28T22:17:31.130506Z",
@@ -86,6 +90,10 @@ void main() {
expect(message.createdAt, DateTime.parse("2020-01-28T22:17:31.107978Z")); expect(message.createdAt, DateTime.parse("2020-01-28T22:17:31.107978Z"));
expect(message.updatedAt, DateTime.parse("2020-01-28T22:17:31.130506Z")); expect(message.updatedAt, DateTime.parse("2020-01-28T22:17:31.130506Z"));
expect(message.mentionedUsers, isA<List<User>>()); expect(message.mentionedUsers, isA<List<User>>());
expect(message.pinned, false);
expect(message.pinnedAt, null);
expect(message.pinExpires, null);
expect(message.pinnedBy, null);
}); });
test('should serialize to json correctly', () { test('should serialize to json correctly', () {
@@ -143,6 +151,10 @@ void main() {
"parent_id": "parentId", "parent_id": "parentId",
"quoted_message": null, "quoted_message": null,
"quoted_message_id": null, "quoted_message_id": null,
"pinned": false,
"pinned_at": null,
"pin_expires": null,
"pinned_by": null,
"show_in_channel": true, "show_in_channel": true,
"hey": "test" "hey": "test"
} }
@@ -132,9 +132,9 @@ class MessageSearchBlocState extends State<MessageSearchBloc>
final client = StreamChatCore.of(context).client; final client = StreamChatCore.of(context).client;
return client.search( return client.search(
filter, filter,
sort, sort: sort,
query, query: query,
pagination, paginationParams: pagination,
messageFilters: messageFilter, messageFilters: messageFilter,
); );
} }