Files
b30f1f6129 Polish mobile profiles, DMs, and sheets (#5401)
## Summary
- add poster-first, tap-to-toggle animated avatars on profile surfaces
while preserving transparent/static behavior elsewhere
- align mobile DM headers, membership actions, and invisible agent
recipient addressing with established desktop semantics
- polish titled sheets and status editing, preserve native iOS sheet
corners, and batch relay reads to improve review-build responsiveness

## Snapshots

<table>
  <tr>
    <th>Profile avatar</th>
    <th>Agent DM header and composer</th>
  </tr>
  <tr>
<td><img
src="https://raw.githubusercontent.com/block/buzz/e8de7495451dbe1a393ab43c5e204ca7425f2ba5/pr-5401--profile-avatar.png"
width="360" alt="Mobile profile settings with animated avatar
surface"></td>
<td><img
src="https://raw.githubusercontent.com/block/buzz/e8de7495451dbe1a393ab43c5e204ca7425f2ba5/pr-5401--agent-dm.png"
width="360" alt="Agent direct message with masked presence and normal
composer"></td>
  </tr>
  <tr>
    <th>Members sheet</th>
    <th>Status editor</th>
  </tr>
  <tr>
<td><img
src="https://raw.githubusercontent.com/block/buzz/e8de7495451dbe1a393ab43c5e204ca7425f2ba5/pr-5401--members-sheet.png"
width="360" alt="Members bottom sheet with centered title and padded
content"></td>
<td><img
src="https://raw.githubusercontent.com/block/buzz/e8de7495451dbe1a393ab43c5e204ca7425f2ba5/pr-5401--status-sheet.png"
width="360" alt="Status editor bottom sheet with duration and quick
statuses"></td>
  </tr>
  <tr>
    <th colspan="2">Switch Community</th>
  </tr>
  <tr>
<td colspan="2" align="center"><img
src="https://raw.githubusercontent.com/block/buzz/e8de7495451dbe1a393ab43c5e204ca7425f2ba5/pr-5401--switch-community.png"
width="720" alt="Switch Community bottom sheet with centered title and
aligned Edit action"></td>
  </tr>
</table>

## Validation
- `just mobile-check`
- `just mobile-test` (1,283 tests)
- installed and reviewed isolated debug builds on iPhone and Pixel

---------

Signed-off-by: kenny lopez <klopez4212@gmail.com>
Signed-off-by: Princess Donut <b238ea756dee4d98afa5883fc7f1de61eeabe65bf700e3a5a5a80db5e42e2c2b@buzz.block.builderlab.xyz>
Signed-off-by: Kenny Lopez <klopez4212@gmail.com>
Signed-off-by: Wes <wesbillman@users.noreply.github.com>
Co-authored-by: Princess Donut <b238ea756dee4d98afa5883fc7f1de61eeabe65bf700e3a5a5a80db5e42e2c2b@buzz.block.builderlab.xyz>
Co-authored-by: Wes <wesbillman@users.noreply.github.com>
Co-authored-by: Carl <c7ebe626f000404285d3686e1dc74cc07cc60a9754a150041ba132e14bd3e2ec@buzz.block.builderlab.xyz>
2026-08-13 20:16:04 -07:00

56 lines
1.5 KiB
Dart

import 'package:flutter/foundation.dart';
import '../../shared/relay/nostr_models.dart';
const _minDateTimeUnixSeconds = -8640000000000;
const _maxDateTimeUnixSeconds = 8640000000000;
/// A user's NIP-38 status (kind:30315, d=general).
@immutable
class UserStatus {
final String text;
final String emoji;
final int updatedAt;
final int? expiresAt;
const UserStatus({
required this.text,
required this.emoji,
required this.updatedAt,
this.expiresAt,
});
factory UserStatus.fromEvent(NostrEvent event) {
final emojiTag = event.tags
.where((t) => t.length >= 2 && t[0] == 'emoji')
.firstOrNull;
final expirationTag = event.tags
.where((t) => t.length >= 2 && t[0] == 'expiration')
.firstOrNull;
return UserStatus(
text: event.content,
emoji: emojiTag?[1] ?? '',
updatedAt: event.createdAt,
expiresAt: int.tryParse(expirationTag?[1] ?? ''),
);
}
/// Converts [expiresAt] when it falls within Dart's supported date range.
///
/// NIP-40 expiration tags are untrusted integers and may exceed that range.
DateTime? get expirationDateTime {
final unixSeconds = expiresAt;
if (unixSeconds == null ||
unixSeconds < _minDateTimeUnixSeconds ||
unixSeconds > _maxDateTimeUnixSeconds) {
return null;
}
return DateTime.fromMillisecondsSinceEpoch(unixSeconds * 1000);
}
bool get isEmpty => text.isEmpty && emoji.isEmpty;
bool isExpiredAt(int unixSeconds) =>
expiresAt != null && expiresAt! <= unixSeconds;
}