mirror of
https://gitlab.com/famedly/fluffychat.git
synced 2024-11-02 18:19:30 +01:00
41 lines
1.2 KiB
Dart
41 lines
1.2 KiB
Dart
import 'package:famedlysdk/famedlysdk.dart';
|
|
import 'package:flutter/material.dart';
|
|
import 'package:flutter_gen/gen_l10n/l10n.dart';
|
|
|
|
import 'date_time_extension.dart';
|
|
|
|
extension on PresenceType {
|
|
String getLocalized(BuildContext context) {
|
|
switch (this) {
|
|
case PresenceType.online:
|
|
return L10n.of(context).online;
|
|
case PresenceType.unavailable:
|
|
return L10n.of(context).unavailable;
|
|
case PresenceType.offline:
|
|
default:
|
|
return L10n.of(context).offline;
|
|
}
|
|
}
|
|
}
|
|
|
|
extension PresenceExtension on Presence {
|
|
String getLocalizedLastActiveAgo(BuildContext context) {
|
|
if (presence.lastActiveAgo != null && presence.lastActiveAgo != 0) {
|
|
return L10n.of(context).lastActiveAgo(DateTime.fromMillisecondsSinceEpoch(
|
|
DateTime.now().millisecondsSinceEpoch - presence.lastActiveAgo)
|
|
.localizedTimeShort(context));
|
|
}
|
|
return L10n.of(context).lastSeenLongTimeAgo;
|
|
}
|
|
|
|
String getLocalizedStatusMessage(BuildContext context) {
|
|
if (presence.statusMsg?.isNotEmpty ?? false) {
|
|
return presence.statusMsg;
|
|
}
|
|
if (presence.currentlyActive ?? false) {
|
|
return L10n.of(context).currentlyActive;
|
|
}
|
|
return presence.presence.getLocalized(context);
|
|
}
|
|
}
|