mirror of
https://gitlab.com/famedly/fluffychat.git
synced 2024-11-05 11:39:30 +01:00
65 lines
2.0 KiB
Dart
65 lines
2.0 KiB
Dart
//@dart=2.12
|
|
|
|
import 'package:flutter/material.dart';
|
|
|
|
import 'package:flutter_gen/gen_l10n/l10n.dart';
|
|
import 'package:matrix/matrix.dart';
|
|
|
|
import 'package:fluffychat/pages/archive/archive.dart';
|
|
import 'package:fluffychat/pages/chat_list/chat_list_item.dart';
|
|
|
|
class ArchiveView extends StatelessWidget {
|
|
final ArchiveController controller;
|
|
|
|
const ArchiveView(this.controller, {Key? key}) : super(key: key);
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
var archive = controller.archive;
|
|
return FutureBuilder<List<Room>>(
|
|
future: controller.getArchive(context),
|
|
builder: (BuildContext context, snapshot) => Scaffold(
|
|
appBar: AppBar(
|
|
leading: const BackButton(),
|
|
title: Text(L10n.of(context)!.archive),
|
|
actions: [
|
|
if (snapshot.hasData && archive != null && archive!.isNotEmpty)
|
|
TextButton(
|
|
onPressed: controller.forgetAllAction,
|
|
child: Text(L10n.of(context)!.clearArchive),
|
|
)
|
|
],
|
|
),
|
|
body: Builder(
|
|
builder: (BuildContext context) {
|
|
if (snapshot.hasError) {
|
|
return Center(
|
|
child: Text(
|
|
L10n.of(context)!.oopsSomethingWentWrong,
|
|
textAlign: TextAlign.center,
|
|
));
|
|
}
|
|
if (!snapshot.hasData) {
|
|
return const Center(
|
|
child: CircularProgressIndicator.adaptive(strokeWidth: 2));
|
|
} else {
|
|
archive = snapshot.data;
|
|
if (archive == null || archive!.isEmpty) {
|
|
return const Center(
|
|
child: Icon(Icons.archive_outlined, size: 80));
|
|
}
|
|
return ListView.builder(
|
|
itemCount: archive!.length,
|
|
itemBuilder: (BuildContext context, int i) => ChatListItem(
|
|
archive![i],
|
|
onForget: controller.forgetAction,
|
|
),
|
|
);
|
|
}
|
|
},
|
|
),
|
|
),
|
|
);
|
|
}
|
|
}
|