shlink-manager/lib/views/home_view.dart

250 lines
9.1 KiB
Dart
Raw Normal View History

2023-06-26 23:40:05 +02:00
import 'package:flutter/material.dart';
2023-07-10 17:32:46 +02:00
import 'package:qr_flutter/qr_flutter.dart';
2024-01-27 23:07:06 +01:00
import 'package:shlink_app/API/Classes/ShlinkStats/shlink_stats.dart';
import 'package:shlink_app/API/server_manager.dart';
import 'package:shlink_app/views/short_url_edit_view.dart';
import 'package:shlink_app/views/url_list_view.dart';
import '../API/Classes/ShortURL/short_url.dart';
import '../globals.dart' as globals;
2023-06-26 23:40:05 +02:00
class HomeView extends StatefulWidget {
const HomeView({Key? key}) : super(key: key);
@override
State<HomeView> createState() => _HomeViewState();
}
class _HomeViewState extends State<HomeView> {
2023-07-09 23:00:00 +02:00
ShlinkStats? shlinkStats;
2023-07-10 17:32:46 +02:00
List<ShortURL> shortUrls = [];
bool shortUrlsLoaded = false;
bool _qrCodeShown = false;
String _qrUrl = "";
2023-06-26 23:40:05 +02:00
@override
void initState() {
// TODO: implement initState
super.initState();
2023-07-09 23:00:00 +02:00
WidgetsBinding.instance
2023-07-10 17:32:46 +02:00
.addPostFrameCallback((_) {
loadAllData();
});
}
Future<void> loadAllData() async {
2024-01-27 23:07:06 +01:00
await loadShlinkStats();
await loadRecentShortUrls();
2023-07-10 17:32:46 +02:00
return;
2023-07-09 23:00:00 +02:00
}
2023-07-10 17:32:46 +02:00
Future<void> loadShlinkStats() async {
2023-07-09 23:00:00 +02:00
final response = await globals.serverManager.getShlinkStats();
response.fold((l) {
setState(() {
shlinkStats = l;
});
}, (r) {
var text = "";
if (r is RequestFailure) {
text = r.description;
}
else {
text = (r as ApiFailure).detail;
}
final snackBar = SnackBar(content: Text(text), backgroundColor: Colors.red[400], behavior: SnackBarBehavior.floating);
ScaffoldMessenger.of(context).showSnackBar(snackBar);
});
2023-06-26 23:40:05 +02:00
}
2023-07-10 17:32:46 +02:00
Future<void> loadRecentShortUrls() async {
final response = await globals.serverManager.getRecentShortUrls();
response.fold((l) {
setState(() {
shortUrls = l;
shortUrlsLoaded = true;
});
}, (r) {
var text = "";
if (r is RequestFailure) {
text = r.description;
}
else {
text = (r as ApiFailure).detail;
}
final snackBar = SnackBar(content: Text(text), backgroundColor: Colors.red[400], behavior: SnackBarBehavior.floating);
ScaffoldMessenger.of(context).showSnackBar(snackBar);
});
}
2023-06-26 23:40:05 +02:00
@override
Widget build(BuildContext context) {
return Scaffold(
2023-07-10 17:32:46 +02:00
body: Stack(
children: [
ColorFiltered(
colorFilter: ColorFilter.mode(Colors.black.withOpacity(_qrCodeShown ? 0.4 : 0), BlendMode.srcOver),
child: RefreshIndicator(
onRefresh: () async {
return loadAllData();
},
child: CustomScrollView(
slivers: [
SliverAppBar.medium(
expandedHeight: 160,
title: Column(
crossAxisAlignment: CrossAxisAlignment.start,
children: [
2024-01-27 23:07:06 +01:00
const Text("Shlink", style: TextStyle(fontWeight: FontWeight.bold)),
2023-07-10 17:32:46 +02:00
Text(globals.serverManager.getServerUrl(), style: TextStyle(fontSize: 16, color: Colors.grey[600]))
],
)
),
SliverToBoxAdapter(
child: Wrap(
alignment: WrapAlignment.spaceEvenly,
children: [
_ShlinkStatsCardWidget(icon: Icons.link, text: "${shlinkStats?.shortUrlsCount.toString() ?? "0"} Short URLs", borderColor: Colors.blue),
_ShlinkStatsCardWidget(icon: Icons.remove_red_eye, text: "${shlinkStats?.nonOrphanVisits.total ?? "0"} Visits", borderColor: Colors.green),
_ShlinkStatsCardWidget(icon: Icons.warning, text: "${shlinkStats?.orphanVisits.total ?? "0"} Orphan Visits", borderColor: Colors.red),
_ShlinkStatsCardWidget(icon: Icons.sell, text: "${shlinkStats?.tagsCount.toString() ?? "0"} Tags", borderColor: Colors.purple),
],
),
),
if (shortUrlsLoaded && shortUrls.isEmpty)
SliverToBoxAdapter(
child: Center(
child: Padding(
2024-01-27 23:07:06 +01:00
padding: const EdgeInsets.only(top: 50),
2023-07-10 17:32:46 +02:00
child: Column(
children: [
2024-01-27 23:07:06 +01:00
const Text("No Short URLs", style: TextStyle(fontSize: 24, fontWeight: FontWeight.bold),),
2023-07-10 17:32:46 +02:00
Padding(
2024-01-27 23:07:06 +01:00
padding: const EdgeInsets.only(top: 8),
2023-07-10 17:32:46 +02:00
child: Text('Create one by tapping the "+" button below', style: TextStyle(fontSize: 16, color: Colors.grey[600]),),
)
],
)
)
)
2023-07-09 23:15:15 +02:00
)
2023-07-10 17:32:46 +02:00
else
SliverList(delegate: SliverChildBuilderDelegate(
2024-01-27 23:07:06 +01:00
(BuildContext context, int index) {
2023-07-10 17:32:46 +02:00
if (index == 0) {
2024-01-27 23:07:06 +01:00
return const Padding(
2023-07-10 17:32:46 +02:00
padding: EdgeInsets.only(top: 16, left: 12, right: 12),
child: Text("Recent Short URLs", style: TextStyle(fontSize: 20, fontWeight: FontWeight.bold)),
);
}
else {
final shortURL = shortUrls[index - 1];
return ShortURLCell(shortURL: shortURL, reload: () {
loadRecentShortUrls();
}, showQRCode: (String url) {
setState(() {
_qrUrl = url;
_qrCodeShown = true;
});
}, isLast: index == shortUrls.length);
}
},
childCount: shortUrls.length + 1
))
],
),
),
2023-07-09 23:00:00 +02:00
),
2023-07-10 17:32:46 +02:00
if (_qrCodeShown)
GestureDetector(
onTap: () {
setState(() {
_qrCodeShown = false;
});
},
child: Container(
color: Colors.black.withOpacity(0),
),
2023-07-09 23:00:00 +02:00
),
2023-07-10 17:32:46 +02:00
if (_qrCodeShown)
Center(
child: SizedBox(
width: MediaQuery.of(context).size.width / 1.7,
height: MediaQuery.of(context).size.width / 1.7,
child: Card(
child: Padding(
padding: const EdgeInsets.all(16),
child: QrImageView(
data: _qrUrl,
version: QrVersions.auto,
size: 200.0,
eyeStyle: QrEyeStyle(
eyeShape: QrEyeShape.square,
color: MediaQuery.of(context).platformBrightness == Brightness.dark ? Colors.white : Colors.black,
),
dataModuleStyle: QrDataModuleStyle(
dataModuleShape: QrDataModuleShape.square,
color: MediaQuery.of(context).platformBrightness == Brightness.dark ? Colors.white : Colors.black,
),
)
)
),
),
)
2023-06-26 23:40:05 +02:00
],
),
2023-07-09 23:00:00 +02:00
floatingActionButton: FloatingActionButton(
2023-07-10 17:32:46 +02:00
onPressed: () async {
2024-01-27 23:07:06 +01:00
await Navigator.of(context).push(MaterialPageRoute(builder: (context) => const ShortURLEditView()));
2023-07-10 17:32:46 +02:00
loadRecentShortUrls();
2023-07-09 23:00:00 +02:00
},
2024-01-27 23:07:06 +01:00
child: const Icon(Icons.add),
2023-07-09 23:00:00 +02:00
)
);
}
}
// stats card widget
class _ShlinkStatsCardWidget extends StatefulWidget {
2024-01-27 23:07:06 +01:00
const _ShlinkStatsCardWidget({required this.text, required this.icon, this.borderColor});
2023-07-09 23:00:00 +02:00
2024-01-27 23:07:06 +01:00
final IconData icon;
final Color? borderColor;
final String text;
2023-07-09 23:00:00 +02:00
@override
State<_ShlinkStatsCardWidget> createState() => _ShlinkStatsCardWidgetState();
}
class _ShlinkStatsCardWidgetState extends State<_ShlinkStatsCardWidget> {
@override
Widget build(BuildContext context) {
var randomColor = ([...Colors.primaries]..shuffle()).first;
return Padding(
2024-01-27 23:07:06 +01:00
padding: const EdgeInsets.all(4),
2023-07-09 23:00:00 +02:00
child: Container(
2024-01-27 23:07:06 +01:00
padding: const EdgeInsets.all(12),
2023-07-09 23:00:00 +02:00
decoration: BoxDecoration(
border: Border.all(color: widget.borderColor ?? randomColor),
borderRadius: BorderRadius.circular(8)
),
child: SizedBox(
child: Wrap(
children: [
Icon(widget.icon),
Padding(
2024-01-27 23:07:06 +01:00
padding: const EdgeInsets.only(left: 4),
child: Text(widget.text, style: const TextStyle(fontWeight: FontWeight.bold)),
2023-07-09 23:00:00 +02:00
)
],
),
)
),
2023-06-26 23:40:05 +02:00
);
}
}