117 lines
4.1 KiB
Dart
117 lines
4.1 KiB
Dart
import 'package:flutter/material.dart';
|
||
import 'package:flutter/services.dart';
|
||
import 'package:checker/db.dart';
|
||
import 'dart:convert'; // Пакет для обработки json с ответом от сервера.
|
||
|
||
import 'package:checker/common.dart';
|
||
import 'package:checker/consts.dart';
|
||
import 'package:checker/network.dart';
|
||
import 'package:checker/base_state.dart';
|
||
import 'package:checker/strings.dart';
|
||
|
||
class FinishRegistrationScreen extends StatefulWidget {
|
||
@override State createState() => new _RegistrationScreenState();
|
||
}
|
||
|
||
class _RegistrationScreenState extends BaseState<FinishRegistrationScreen> {
|
||
|
||
SqliteHelper helper;
|
||
|
||
bool _tokenActive = false;
|
||
String _merchantID = '';
|
||
|
||
_RegistrationScreenState() {
|
||
helper = new SqliteHelper();
|
||
if (textFieldValue == "") {
|
||
helper.open().then((_){
|
||
helper.getMerchantID().then((result) {
|
||
setState(() {
|
||
_merchantID = result;
|
||
print('merchanID: ${_merchantID}');
|
||
});
|
||
});
|
||
});
|
||
}
|
||
}
|
||
|
||
@override String getTitle() {
|
||
return StringsLocalization.registration();
|
||
}
|
||
|
||
@override getHint() {
|
||
return StringsLocalization.idStore();
|
||
}
|
||
|
||
@override Widget getScreenContent() {
|
||
return new Column(children: <Widget>[
|
||
getLogo(),
|
||
getHintLabel(),
|
||
getInputField(),
|
||
getMessage(),
|
||
buildRaisedButton(_tokenActive
|
||
? StringsLocalization.completeRegistration()
|
||
: StringsLocalization.refreshActivationStatus(), () => handleTap())
|
||
]);
|
||
}
|
||
|
||
// Если токен активирован, то открывается экран со сканером,
|
||
// Если нет, то отправляется запрос на проверку статуса токена.
|
||
handleTap() async {
|
||
if (_tokenActive) {
|
||
helper.close();
|
||
startScanner(context);
|
||
} else {
|
||
if (await platform.invokeMethod('isOnline')) {
|
||
String token = await helper.getToken();
|
||
checkTokenStatus(token).then((response) {
|
||
|
||
print(response.body);
|
||
Map parsedMap = JSON.decode(response.body);
|
||
|
||
// Обновить экран, заменить сообщение о необходимости активации токена, на сообщние о том, что токен активен.
|
||
setState(() {
|
||
_tokenActive = parsedMap['active'];
|
||
});
|
||
|
||
}).catchError((error) {
|
||
print(error.toString());
|
||
return false;
|
||
});
|
||
}
|
||
}
|
||
}
|
||
|
||
@override getTextWidget() {
|
||
return new Row(children: <Widget>[new Text(_merchantID != null ? _merchantID : '',
|
||
style: new TextStyle(color: Colors.black, fontSize: 16.0))]);
|
||
}
|
||
|
||
/// Метод возвращает контейнер с текстом сообщения и бэкграундом.
|
||
getMessage() {
|
||
return new Container(height: _tokenActive ? 72.0 : 108.0, decoration: _getDecorationForMessageField(),
|
||
margin: new EdgeInsets.only(top: 20.0, left: 12.0, right: 12.0),
|
||
padding: new EdgeInsets.only(bottom: 22.0, left: 14.0, right: 14.0),
|
||
child: new Center(child: getMessageTextWidget()));
|
||
}
|
||
|
||
/// Метод возвращает виджет с текстом сообщения, всеми его привязками и стилями.
|
||
getMessageTextWidget() {
|
||
return new Text(getMessageString(), textAlign: TextAlign.center,
|
||
style: new TextStyle(height: 1.5, fontWeight: FontWeight.bold, fontSize: 14.0,
|
||
color: _tokenActive ? tokenActiveTextColor : tokenActivateTextColor));
|
||
}
|
||
|
||
/// Получаем текст сообщения, в зависимости от статуса активации.
|
||
getMessageString() {
|
||
return _tokenActive
|
||
? StringsLocalization.completeRegistration()
|
||
: StringsLocalization.refreshActivationStatus();
|
||
}
|
||
|
||
/// Фоновое изображение для сообщения.
|
||
Decoration _getDecorationForMessageField() {
|
||
return new BoxDecoration(image: new DecorationImage(
|
||
image: new ExactAssetImage(_tokenActive ? active_token_bg_png : activate_token_bg_png),
|
||
fit: _tokenActive ? BoxFit.fitWidth : BoxFit.fill));
|
||
}
|
||
} |