-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathlogin_view.dart
262 lines (247 loc) · 12.3 KB
/
login_view.dart
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
// Flutter imports:
import 'package:flutter/material.dart';
// Package imports:
import 'package:flutter_gen/gen_l10n/app_localizations.dart';
import 'package:flutter_svg/flutter_svg.dart';
import 'package:fluttertoast/fluttertoast.dart';
import 'package:stacked/stacked.dart';
// Project imports:
import 'package:notredame/core/constants/router_paths.dart';
import 'package:notredame/core/constants/urls.dart';
import 'package:notredame/core/services/launch_url_service.dart';
import 'package:notredame/core/services/navigation_service.dart';
import 'package:notredame/core/utils/login_mask.dart';
import 'package:notredame/core/utils/utils.dart';
import 'package:notredame/core/viewmodels/login_viewmodel.dart';
import 'package:notredame/locator.dart';
import 'package:notredame/ui/utils/app_theme.dart';
import 'package:notredame/ui/widgets/password_text_field.dart';
class LoginView extends StatefulWidget {
@override
_LoginViewState createState() => _LoginViewState();
}
class _LoginViewState extends State<LoginView> {
final double borderRadiusOnFocus = 2.0;
final FocusScopeNode _focusNode = FocusScopeNode();
final NavigationService _navigationService = locator<NavigationService>();
final LaunchUrlService _launchUrlService = locator<LaunchUrlService>();
/// Unique key of the login form form
final GlobalKey<FormState> formKey = GlobalKey<FormState>();
/// Unique key of the tooltip
final GlobalKey<TooltipState> tooltipkey = GlobalKey<TooltipState>();
@override
Widget build(BuildContext context) =>
ViewModelBuilder<LoginViewModel>.reactive(
viewModelBuilder: () => LoginViewModel(intl: AppIntl.of(context)!),
builder: (context, model, child) => Scaffold(
backgroundColor: Utils.getColorByBrightness(
context, AppTheme.etsLightRed, AppTheme.primaryDark),
resizeToAvoidBottomInset: false,
body: Builder(
builder: (BuildContext context) => SafeArea(
minimum: const EdgeInsets.all(20.0),
child: Column(
mainAxisAlignment: MainAxisAlignment.spaceBetween,
children: <Widget>[
Form(
key: formKey,
onChanged: () {
setState(() {
formKey.currentState?.validate();
});
},
child: AutofillGroup(
child: FocusScope(
node: _focusNode,
child: Column(
children: [
const SizedBox(
height: 48,
),
Hero(
tag: 'ets_logo',
child: SvgPicture.asset(
"assets/images/ets_white_logo.svg",
excludeFromSemantics: true,
width: 90,
height: 90,
color: Theme.of(context).brightness ==
Brightness.light
? Colors.white
: AppTheme.etsLightRed,
)),
const SizedBox(
height: 48,
),
TextFormField(
autofillHints: const [AutofillHints.username],
cursorColor: Colors.white,
keyboardType: TextInputType.visiblePassword,
decoration: InputDecoration(
enabledBorder: const OutlineInputBorder(
borderSide:
BorderSide(color: Colors.white70)),
focusedBorder: OutlineInputBorder(
borderSide: BorderSide(
color: Colors.white,
width: borderRadiusOnFocus)),
focusedErrorBorder: OutlineInputBorder(
borderSide: BorderSide(
color: errorTextColor,
width: borderRadiusOnFocus)),
errorBorder: OutlineInputBorder(
borderSide: BorderSide(
color: errorTextColor,
width: borderRadiusOnFocus)),
labelText: AppIntl.of(context)!
.login_prompt_universal_code,
labelStyle:
const TextStyle(color: Colors.white54),
errorStyle: TextStyle(color: errorTextColor),
suffixIcon: Tooltip(
key: tooltipkey,
triggerMode: TooltipTriggerMode.manual,
message: AppIntl.of(context)!
.universal_code_example,
preferBelow: true,
child: IconButton(
icon: const Icon(Icons.help,
color: Colors.white),
onPressed: () {
tooltipkey.currentState
?.ensureTooltipVisible();
},
)),
),
autofocus: true,
style: const TextStyle(color: Colors.white),
onEditingComplete: _focusNode.nextFocus,
validator: model.validateUniversalCode,
initialValue: model.universalCode,
inputFormatters: [
LoginMask(),
],
),
const SizedBox(
height: 16,
),
PasswordFormField(
validator: model.validatePassword,
onEditionComplete: _focusNode.nextFocus),
Align(
alignment: Alignment.topRight,
child: Padding(
padding: const EdgeInsets.only(top: 4),
child: InkWell(
child: Text(
AppIntl.of(context)!.forgot_password,
style: const TextStyle(
decoration: TextDecoration.underline,
color: Colors.white),
),
onTap: () {
_launchUrlService.launchInBrowser(
Urls.signetsForgottenPassword,
Theme.of(context).brightness);
},
),
),
),
const SizedBox(
height: 24,
),
SizedBox(
width: double.infinity,
child: ElevatedButton(
onPressed: !model.canSubmit
? null
: () async {
final String error =
await model.authenticate();
setState(() {
if (error.isNotEmpty) {
Fluttertoast.showToast(
msg: error);
}
formKey.currentState?.reset();
});
},
style: ButtonStyle(
backgroundColor: MaterialStateProperty.all(
model.canSubmit
? colorButton
: Colors.white38),
padding: MaterialStateProperty.all(
const EdgeInsets.symmetric(
vertical: 16)),
),
child: Text(
AppIntl.of(context)!.login_action_sign_in,
style: TextStyle(
color: model.canSubmit
? submitTextColor
: Colors.white60,
fontSize: 18),
),
),
),
Center(
child: Padding(
padding: const EdgeInsets.only(top: 24),
child: InkWell(
child: Text(
AppIntl.of(context)!.need_help,
style: const TextStyle(
decoration: TextDecoration.underline,
color: Colors.white),
),
onTap: () async {
_navigationService.pushNamed(
RouterPaths.faq,
arguments: Utils.getColorByBrightness(
context,
AppTheme.etsLightRed,
AppTheme.primaryDark));
},
),
),
),
],
),
),
),
),
Wrap(
direction: Axis.vertical,
crossAxisAlignment: WrapCrossAlignment.center,
spacing: -20,
children: <Widget>[
Text(
AppIntl.of(context)!.login_applets_logo,
style: const TextStyle(color: Colors.white),
),
Image.asset(
'assets/images/applets_white_logo.png',
excludeFromSemantics: true,
width: 100,
height: 100,
),
],
),
],
),
),
)),
);
@override
void dispose() {
_focusNode.dispose();
super.dispose();
}
Color get errorTextColor =>
Utils.getColorByBrightness(context, Colors.amberAccent, Colors.redAccent);
Color get colorButton =>
Utils.getColorByBrightness(context, Colors.white, AppTheme.etsLightRed);
Color get submitTextColor =>
Utils.getColorByBrightness(context, AppTheme.etsLightRed, Colors.white);
}