Immediately show the login dialog

Signed-off-by: dignow <linlong1265@gmail.com>
This commit is contained in:
dignow
2023-07-01 10:19:59 +08:00
parent e257c268b2
commit a10433e2e0
2 changed files with 53 additions and 48 deletions

View File

@@ -10,7 +10,7 @@ import '../common.dart';
import 'model.dart';
import 'platform_model.dart';
bool refresing_user = false;
bool refreshingUser = false;
class UserModel {
final RxString userName = ''.obs;
@@ -31,16 +31,16 @@ class UserModel {
'id': await bind.mainGetMyId(),
'uuid': await bind.mainGetUuid()
};
if (refresing_user) return;
if (refreshingUser) return;
try {
refresing_user = true;
refreshingUser = true;
final response = await http.post(Uri.parse('$url/api/currentUser'),
headers: {
'Content-Type': 'application/json',
'Authorization': 'Bearer $token'
},
body: json.encode(body));
refresing_user = false;
refreshingUser = false;
final status = response.statusCode;
if (status == 401 || status == 400) {
reset();
@@ -57,7 +57,7 @@ class UserModel {
} catch (e) {
debugPrint('Failed to refreshCurrentUser: $e');
} finally {
refresing_user = false;
refreshingUser = false;
await updateOtherModels();
}
}