Add steam message
This commit is contained in:
parent
1351130f83
commit
f2d808f5d3
8 changed files with 226 additions and 68 deletions
|
@ -1,53 +1,91 @@
|
|||
import 'dart:async';
|
||||
import 'dart:math';
|
||||
|
||||
import 'package:desktopapp/classes/routes.dart';
|
||||
import 'package:desktopapp/classes/stream_element.dart';
|
||||
import 'package:desktopapp/utils/mailer.dart';
|
||||
import 'package:desktopapp/utils/requests.dart';
|
||||
import 'package:desktopapp/widgets/components/stream_element_card.dart';
|
||||
import 'package:desktopapp/widgets/forms/email_form.dart';
|
||||
import 'package:flutter/material.dart';
|
||||
import 'package:shared_preferences/shared_preferences.dart';
|
||||
|
||||
class HomePage extends StatelessWidget {
|
||||
class HomePage extends StatefulWidget {
|
||||
const HomePage({Key? key}) : super(key: key);
|
||||
|
||||
@override
|
||||
_HomePageState createState() => _HomePageState();
|
||||
}
|
||||
|
||||
class _HomePageState extends State<HomePage> {
|
||||
bool connected = false;
|
||||
List<StreamElement> streamElements = [];
|
||||
final StreamController<StreamElement> controller =
|
||||
StreamController<StreamElement>();
|
||||
|
||||
Widget buildContent(BuildContext context, SharedPreferences prefs) {
|
||||
return Column(children: [
|
||||
const Padding(
|
||||
padding: EdgeInsets.symmetric(vertical: 20),
|
||||
child: Text('Appuyez sur le bouton pour envoyer une alerte de test',
|
||||
style: TextStyle(fontSize: 20)),
|
||||
),
|
||||
TextButton(
|
||||
onPressed: () async {
|
||||
if (await Requests.sendAlert('*MrDev023* *Break* Test !')) {
|
||||
showDialog(
|
||||
context: context,
|
||||
builder: (_) => AlertDialog(
|
||||
title: const Text('Info'),
|
||||
content: const Text('Envoie réussie'),
|
||||
actions: [
|
||||
TextButton(
|
||||
onPressed: () {
|
||||
Navigator.pop(context);
|
||||
},
|
||||
child: const Text('OK'))
|
||||
],
|
||||
));
|
||||
} else {
|
||||
showDialog(
|
||||
context: context,
|
||||
builder: (_) => AlertDialog(
|
||||
title: const Text('Erreur'),
|
||||
content: const Text('Impossible de se connecter.'),
|
||||
actions: [
|
||||
TextButton(
|
||||
onPressed: () => Navigator.pop(context),
|
||||
child: const Text('OK'))
|
||||
],
|
||||
));
|
||||
if (!connected)
|
||||
Row(mainAxisAlignment: MainAxisAlignment.center, children: [
|
||||
EmailForm(
|
||||
prefs: prefs,
|
||||
onValid: (String email, String password) async {
|
||||
var value = await Mailer.connect(
|
||||
email: email,
|
||||
password: password,
|
||||
streamController: controller);
|
||||
setState(() {
|
||||
connected = value;
|
||||
});
|
||||
})
|
||||
]),
|
||||
if (connected)
|
||||
Row(
|
||||
children: [
|
||||
TextButton(
|
||||
onPressed: () async {
|
||||
await Mailer.disconnect();
|
||||
setState(() {
|
||||
connected = false;
|
||||
});
|
||||
},
|
||||
child: const Text('Se déconnecter')),
|
||||
],
|
||||
),
|
||||
Expanded(
|
||||
child: StreamBuilder<StreamElement>(
|
||||
stream: controller.stream,
|
||||
builder:
|
||||
(BuildContext context, AsyncSnapshot<StreamElement> snapshot) {
|
||||
switch (snapshot.connectionState) {
|
||||
case ConnectionState.none:
|
||||
return const Text('Nothing');
|
||||
case ConnectionState.waiting:
|
||||
return const Center(child: CircularProgressIndicator());
|
||||
case ConnectionState.active:
|
||||
if (snapshot.hasData) {
|
||||
int skipNumber = max(0, streamElements.length - 10);
|
||||
bool alreadyAdded = streamElements
|
||||
.skip(skipNumber)
|
||||
.cast<StreamElement?>()
|
||||
.firstWhere(
|
||||
(element) => element!.uuid == snapshot.data!.uuid,
|
||||
orElse: () => null) !=
|
||||
null;
|
||||
if (!alreadyAdded) streamElements.add(snapshot.data!);
|
||||
}
|
||||
return ListView.builder(
|
||||
itemCount: streamElements.length,
|
||||
itemBuilder: (BuildContext context, int index) {
|
||||
return StreamElementCard(
|
||||
streamElement: streamElements[index]);
|
||||
},
|
||||
);
|
||||
case ConnectionState.done:
|
||||
return const Text('Terminate');
|
||||
}
|
||||
},
|
||||
child: const Text('Envoyer une alerte de test')),
|
||||
TextButton(
|
||||
onPressed: () => Mailer.mailExample(),
|
||||
child: const Text('Test email')),
|
||||
),
|
||||
)
|
||||
]);
|
||||
}
|
||||
|
||||
|
@ -68,14 +106,7 @@ class HomePage extends StatelessWidget {
|
|||
}
|
||||
});
|
||||
|
||||
return Column(
|
||||
mainAxisAlignment: MainAxisAlignment.center,
|
||||
children: [
|
||||
Row(
|
||||
mainAxisAlignment: MainAxisAlignment.center,
|
||||
children: [buildContent(context, prefs)],
|
||||
)
|
||||
]);
|
||||
return buildContent(context, prefs);
|
||||
} else {
|
||||
return const Center(child: CircularProgressIndicator());
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue