feat: UX polish, localization, advert relocation, and map filter fixes

- i18n: translate connection screen + chat tab keys into 13 locales;
  add "Send my contact" (advert) strings in all locales
- feat: move self-advert from home header into composer "+" action menu
  (new lib/utils/advert_helper.dart, always shows Flood/Direct sheet)
- fix: hide-repeaters map toggle was bypassed in simple mode
- fix: simple mode map now shows only favourite chat contacts
- fix: wrap ListTiles in Material (contact_tile secondary actions,
  inferred contact group card) to satisfy Flutter ink assertions
- device-authoritative contact/channel sync and UX review fixes

Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
This commit is contained in:
Janez T
2026-06-12 10:01:10 +02:00
parent 3e1113035d
commit ba27843166
62 changed files with 12546 additions and 2521 deletions

View File

@@ -19,11 +19,7 @@ class ProfilesScreen extends StatelessWidget {
title: Text(AppLocalizations.of(context)!.profiles),
actions: [
IconButton(
onPressed: () async {
await context
.read<ProfileWorkspaceCoordinator>()
.importProfileFromFile();
},
onPressed: () => _importProfile(context),
icon: const Icon(Icons.file_open),
tooltip: AppLocalizations.of(context)!.importProfile,
),
@@ -126,9 +122,11 @@ class ProfilesScreen extends StatelessWidget {
await _renameProfile(context, profile);
break;
case 'delete':
await context
.read<ProfileWorkspaceCoordinator>()
.deleteProfile(profile);
await _deleteProfile(
context,
profile,
isActive: isActive,
);
break;
}
},
@@ -183,6 +181,67 @@ class ProfilesScreen extends StatelessWidget {
return sections.isEmpty ? 'Empty profile' : sections.join(' | ');
}
Future<void> _importProfile(BuildContext context) async {
final messenger = ScaffoldMessenger.of(context);
final errorColor = Theme.of(context).colorScheme.error;
final coordinator = context.read<ProfileWorkspaceCoordinator>();
try {
final imported = await coordinator.importProfileFromFile();
if (imported == null) {
messenger.showSnackBar(
SnackBar(
content: const Text('Could not import profile — invalid file'),
backgroundColor: errorColor,
),
);
return;
}
messenger.showSnackBar(
SnackBar(content: Text('Imported profile "${imported.name}"')),
);
} catch (_) {
messenger.showSnackBar(
SnackBar(
content: const Text('Could not import profile — invalid file'),
backgroundColor: errorColor,
),
);
}
}
Future<void> _deleteProfile(
BuildContext context,
ConfigProfile profile, {
required bool isActive,
}) async {
final confirmed = await showDialog<bool>(
context: context,
builder: (context) => AlertDialog(
title: const Text('Delete Profile'),
content: Text(
'Delete "${profile.name}"? Its messages and contacts will be '
'permanently erased.'
'${isActive ? '\n\nThis profile is currently active. The app will switch to the Default profile.' : ''}',
),
actions: [
TextButton(
onPressed: () => Navigator.of(context).pop(false),
child: Text(AppLocalizations.of(context)!.cancel),
),
TextButton(
onPressed: () => Navigator.of(context).pop(true),
style: TextButton.styleFrom(foregroundColor: Colors.red),
child: Text(AppLocalizations.of(context)!.delete),
),
],
),
);
if (confirmed != true || !context.mounted) {
return;
}
await context.read<ProfileWorkspaceCoordinator>().deleteProfile(profile);
}
Future<void> _createProfile(BuildContext context) async {
final controller = TextEditingController();
final name = await showDialog<String>(