2020-04-26 18:15:48 +02:00
|
|
|
import 'package:famedlysdk/famedlysdk.dart';
|
|
|
|
import 'package:flutter/material.dart';
|
2020-10-03 13:11:07 +02:00
|
|
|
import 'package:flutter_gen/gen_l10n/l10n.dart';
|
|
|
|
|
2020-05-06 18:31:38 +02:00
|
|
|
import 'date_time_extension.dart';
|
2020-04-26 18:15:48 +02:00
|
|
|
|
2020-10-28 07:23:50 +01:00
|
|
|
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;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-04-26 18:15:48 +02:00
|
|
|
extension PresenceExtension on Presence {
|
2020-10-28 07:23:50 +01:00
|
|
|
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;
|
|
|
|
}
|
2020-10-03 15:53:08 +02:00
|
|
|
|
2020-04-26 18:15:48 +02:00
|
|
|
String getLocalizedStatusMessage(BuildContext context) {
|
2020-06-10 10:07:01 +02:00
|
|
|
if (presence.statusMsg?.isNotEmpty ?? false) {
|
|
|
|
return presence.statusMsg;
|
2020-04-26 18:15:48 +02:00
|
|
|
}
|
2020-10-28 15:01:16 +01:00
|
|
|
if (presence.currentlyActive ?? false) {
|
2020-08-23 18:10:33 +02:00
|
|
|
return L10n.of(context).currentlyActive;
|
|
|
|
}
|
2020-10-28 07:23:50 +01:00
|
|
|
return presence.presence.getLocalized(context);
|
2020-04-26 18:15:48 +02:00
|
|
|
}
|
|
|
|
}
|