User can sign out of his account
This commit is contained in:
		@@ -1,6 +1,12 @@
 | 
			
		||||
import 'package:alert_dialog/alert_dialog.dart';
 | 
			
		||||
import 'package:confirm_dialog/confirm_dialog.dart';
 | 
			
		||||
import 'package:flutter/material.dart';
 | 
			
		||||
import 'package:go_router/go_router.dart';
 | 
			
		||||
import 'package:hooks_riverpod/hooks_riverpod.dart';
 | 
			
		||||
import 'package:logging/logging.dart';
 | 
			
		||||
import 'package:moneymgr_mobile/providers/auth_state.dart';
 | 
			
		||||
import 'package:moneymgr_mobile/services/api/api_client.dart';
 | 
			
		||||
import 'package:moneymgr_mobile/services/router/routes_list.dart';
 | 
			
		||||
import 'package:moneymgr_mobile/services/storage/prefs.dart';
 | 
			
		||||
 | 
			
		||||
class ProfileScreen extends HookConsumerWidget {
 | 
			
		||||
@@ -14,8 +20,37 @@ class ProfileScreen extends HookConsumerWidget {
 | 
			
		||||
 | 
			
		||||
    final profile = data.value?.authInfo();
 | 
			
		||||
 | 
			
		||||
    void onSettingsPressed() => context.push(settingsPage);
 | 
			
		||||
 | 
			
		||||
    handleSignOut() async {
 | 
			
		||||
      try {
 | 
			
		||||
        if (!await confirm(
 | 
			
		||||
          context,
 | 
			
		||||
          content: Text("Do you really want to sign out of your account?"),
 | 
			
		||||
        )) {
 | 
			
		||||
          return;
 | 
			
		||||
        }
 | 
			
		||||
 | 
			
		||||
        await ref.read(currentAuthStateProvider.notifier).logout();
 | 
			
		||||
      } catch (e, s) {
 | 
			
		||||
        Logger.root.warning("Failed to sign out! $e $s");
 | 
			
		||||
 | 
			
		||||
        if (context.mounted) {
 | 
			
		||||
          await alert(context, content: Text("Failed to sign you out! $e"));
 | 
			
		||||
        }
 | 
			
		||||
      }
 | 
			
		||||
    }
 | 
			
		||||
 | 
			
		||||
    return Scaffold(
 | 
			
		||||
      appBar: AppBar(title: Text("Profile")),
 | 
			
		||||
      appBar: AppBar(
 | 
			
		||||
        title: Text("Profile"),
 | 
			
		||||
        actions: [
 | 
			
		||||
          IconButton(
 | 
			
		||||
            onPressed: onSettingsPressed,
 | 
			
		||||
            icon: const Icon(Icons.settings),
 | 
			
		||||
          ),
 | 
			
		||||
        ],
 | 
			
		||||
      ),
 | 
			
		||||
      body: ListView(
 | 
			
		||||
        children: [
 | 
			
		||||
          ListEntry(
 | 
			
		||||
@@ -39,6 +74,12 @@ class ProfileScreen extends HookConsumerWidget {
 | 
			
		||||
            icon: Icons.person,
 | 
			
		||||
          ),
 | 
			
		||||
          ListEntry(title: "User mail", value: profile?.mail, icon: Icons.mail),
 | 
			
		||||
          Divider(),
 | 
			
		||||
          ListEntry(
 | 
			
		||||
            title: "Sign out",
 | 
			
		||||
            icon: Icons.logout,
 | 
			
		||||
            onTap: handleSignOut,
 | 
			
		||||
          ),
 | 
			
		||||
        ],
 | 
			
		||||
      ),
 | 
			
		||||
    );
 | 
			
		||||
@@ -49,20 +90,23 @@ class ListEntry extends StatelessWidget {
 | 
			
		||||
  final String title;
 | 
			
		||||
  final String? value;
 | 
			
		||||
  final IconData icon;
 | 
			
		||||
  final Function()? onTap;
 | 
			
		||||
 | 
			
		||||
  const ListEntry({
 | 
			
		||||
    super.key,
 | 
			
		||||
    required this.title,
 | 
			
		||||
    required this.value,
 | 
			
		||||
    this.value,
 | 
			
		||||
    required this.icon,
 | 
			
		||||
    this.onTap,
 | 
			
		||||
  });
 | 
			
		||||
 | 
			
		||||
  @override
 | 
			
		||||
  Widget build(BuildContext context) {
 | 
			
		||||
    return ListTile(
 | 
			
		||||
      title: Text(title),
 | 
			
		||||
      subtitle: Text(value ?? ""),
 | 
			
		||||
      subtitle: value != null ? Text(value!) : null,
 | 
			
		||||
      leading: Icon(icon),
 | 
			
		||||
      onTap: onTap,
 | 
			
		||||
    );
 | 
			
		||||
  }
 | 
			
		||||
}
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user