commit
a74b2cd3d7
BIN
refilc/assets/images/apple_fire_emoji.png
Normal file
BIN
refilc/assets/images/apple_fire_emoji.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 21 KiB |
@ -18,11 +18,11 @@ import 'package:connectivity_plus/connectivity_plus.dart';
|
|||||||
|
|
||||||
class FilcAPI {
|
class FilcAPI {
|
||||||
// API base
|
// API base
|
||||||
static const baseUrl = "https://api.refilc.hu";
|
static const baseUrl = "https://api.refilcapp.hu";
|
||||||
|
|
||||||
// Public API
|
// Public API
|
||||||
static const schoolList = "$baseUrl/v3/public/school-list";
|
static const schoolList = "$baseUrl/v3/public/school-list";
|
||||||
static const news = "$baseUrl/v3/public/news";
|
static const news = "$baseUrl/v4/public/news";
|
||||||
static const supporters = "$baseUrl/v3/public/supporters";
|
static const supporters = "$baseUrl/v3/public/supporters";
|
||||||
|
|
||||||
// Private API
|
// Private API
|
||||||
@ -51,7 +51,7 @@ class FilcAPI {
|
|||||||
static const gradeColorsByID = "$gradeColorsGet/";
|
static const gradeColorsByID = "$gradeColorsGet/";
|
||||||
|
|
||||||
// Payment API
|
// Payment API
|
||||||
static const payment = "$baseUrl/v3/payment";
|
static const payment = "$baseUrl/v4/payment";
|
||||||
static const stripeSheet = "$payment/stripe-sheet";
|
static const stripeSheet = "$payment/stripe-sheet";
|
||||||
|
|
||||||
static Future<bool> checkConnectivity() async =>
|
static Future<bool> checkConnectivity() async =>
|
||||||
@ -93,10 +93,14 @@ class FilcAPI {
|
|||||||
"x-filc-id": settings.xFilcId,
|
"x-filc-id": settings.xFilcId,
|
||||||
"user-agent": userAgent,
|
"user-agent": userAgent,
|
||||||
// platform things
|
// platform things
|
||||||
"rf-platform": Platform.operatingSystem,
|
"rf-platform":
|
||||||
"rf-platform-version": Platform.operatingSystemVersion,
|
settings.analyticsEnabled ? Platform.operatingSystem : "unknown",
|
||||||
"rf-app-version":
|
"rf-platform-version": settings.analyticsEnabled
|
||||||
const String.fromEnvironment("APPVER", defaultValue: "?"),
|
? Platform.operatingSystemVersion
|
||||||
|
: "unknown",
|
||||||
|
"rf-app-version": settings.analyticsEnabled
|
||||||
|
? const String.fromEnvironment("APPVER", defaultValue: "?")
|
||||||
|
: "unknown",
|
||||||
"rf-uinid": settings.xFilcId,
|
"rf-uinid": settings.xFilcId,
|
||||||
};
|
};
|
||||||
|
|
||||||
@ -231,7 +235,7 @@ class FilcAPI {
|
|||||||
}
|
}
|
||||||
|
|
||||||
// sharing
|
// sharing
|
||||||
static Future<void> addSharedTheme(SharedTheme theme) async {
|
static Future<int> addSharedTheme(SharedTheme theme) async {
|
||||||
try {
|
try {
|
||||||
theme.json.remove('json');
|
theme.json.remove('json');
|
||||||
theme.json['is_public'] = theme.isPublic.toString();
|
theme.json['is_public'] = theme.isPublic.toString();
|
||||||
@ -263,13 +267,19 @@ class FilcAPI {
|
|||||||
headers: {'Content-Type': 'application/x-www-form-urlencoded'},
|
headers: {'Content-Type': 'application/x-www-form-urlencoded'},
|
||||||
);
|
);
|
||||||
|
|
||||||
if (res.statusCode != 201) {
|
// if (res.statusCode != 201) {
|
||||||
throw "HTTP ${res.statusCode}: ${res.body}";
|
// throw "HTTP ${res.statusCode}: ${res.body}";
|
||||||
|
// }
|
||||||
|
|
||||||
|
if (res.statusCode == 201) {
|
||||||
|
log('Shared theme successfully with ID: ${theme.id}');
|
||||||
}
|
}
|
||||||
|
|
||||||
log('Shared theme successfully with ID: ${theme.id}');
|
return res.statusCode;
|
||||||
} on Exception catch (error, stacktrace) {
|
} on Exception catch (error, stacktrace) {
|
||||||
log("ERROR: FilcAPI.addSharedTheme: $error $stacktrace");
|
log("ERROR: FilcAPI.addSharedTheme: $error $stacktrace");
|
||||||
|
|
||||||
|
return 696;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -303,8 +313,7 @@ class FilcAPI {
|
|||||||
return null;
|
return null;
|
||||||
}
|
}
|
||||||
|
|
||||||
static Future<void> addSharedGradeColors(
|
static Future<int> addSharedGradeColors(SharedGradeColors gradeColors) async {
|
||||||
SharedGradeColors gradeColors) async {
|
|
||||||
try {
|
try {
|
||||||
gradeColors.json.remove('json');
|
gradeColors.json.remove('json');
|
||||||
gradeColors.json['is_public'] = gradeColors.isPublic.toString();
|
gradeColors.json['is_public'] = gradeColors.isPublic.toString();
|
||||||
@ -320,13 +329,19 @@ class FilcAPI {
|
|||||||
headers: {'Content-Type': 'application/x-www-form-urlencoded'},
|
headers: {'Content-Type': 'application/x-www-form-urlencoded'},
|
||||||
);
|
);
|
||||||
|
|
||||||
if (res.statusCode != 201) {
|
// if (res.statusCode != 201) {
|
||||||
throw "HTTP ${res.statusCode}: ${res.body}";
|
// throw "HTTP ${res.statusCode}: ${res.body}";
|
||||||
|
// }
|
||||||
|
|
||||||
|
if (res.statusCode == 201) {
|
||||||
|
log('Shared grade colors successfully with ID: ${gradeColors.id}');
|
||||||
}
|
}
|
||||||
|
|
||||||
log('Shared grade colors successfully with ID: ${gradeColors.id}');
|
return res.statusCode;
|
||||||
} on Exception catch (error, stacktrace) {
|
} on Exception catch (error, stacktrace) {
|
||||||
log("ERROR: FilcAPI.addSharedGradeColors: $error $stacktrace");
|
log("ERROR: FilcAPI.addSharedGradeColors: $error $stacktrace");
|
||||||
|
|
||||||
|
return 696;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -65,8 +65,11 @@ Future loginAPI({
|
|||||||
parents: ['Teszt András', 'Teszt Linda'],
|
parents: ['Teszt András', 'Teszt Linda'],
|
||||||
json: {"a": "b"},
|
json: {"a": "b"},
|
||||||
address: '1117 Budapest, Gábor Dénes utca 4.',
|
address: '1117 Budapest, Gábor Dénes utca 4.',
|
||||||
|
gradeDelay: 0,
|
||||||
),
|
),
|
||||||
role: Role.parent,
|
role: Role.parent,
|
||||||
|
accessToken: '',
|
||||||
|
accessTokenExpire: DateTime.now(),
|
||||||
refreshToken: '',
|
refreshToken: '',
|
||||||
);
|
);
|
||||||
|
|
||||||
@ -153,6 +156,8 @@ Future loginAPI({
|
|||||||
name: student.name,
|
name: student.name,
|
||||||
student: student,
|
student: student,
|
||||||
role: JwtUtils.getRoleFromJWT(res["access_token"])!,
|
role: JwtUtils.getRoleFromJWT(res["access_token"])!,
|
||||||
|
accessToken: res["access_token"],
|
||||||
|
accessTokenExpire: DateTime.now(),
|
||||||
refreshToken: '',
|
refreshToken: '',
|
||||||
);
|
);
|
||||||
|
|
||||||
@ -234,6 +239,15 @@ Future newLoginAPI({
|
|||||||
if (res != null) {
|
if (res != null) {
|
||||||
if (kDebugMode) {
|
if (kDebugMode) {
|
||||||
print(res);
|
print(res);
|
||||||
|
|
||||||
|
// const splitSize = 1000;
|
||||||
|
// RegExp exp = RegExp(r"\w{" "$splitSize" "}");
|
||||||
|
// // String str = "0102031522";
|
||||||
|
// Iterable<Match> matches = exp.allMatches(res.toString());
|
||||||
|
// var list = matches.map((m) => m.group(0));
|
||||||
|
// list.forEach((e) {
|
||||||
|
// print(e);
|
||||||
|
// });
|
||||||
}
|
}
|
||||||
|
|
||||||
if (res.containsKey("error")) {
|
if (res.containsKey("error")) {
|
||||||
@ -266,6 +280,9 @@ Future newLoginAPI({
|
|||||||
name: student.name,
|
name: student.name,
|
||||||
student: student,
|
student: student,
|
||||||
role: role,
|
role: role,
|
||||||
|
accessToken: res["access_token"],
|
||||||
|
accessTokenExpire:
|
||||||
|
DateTime.now().add(Duration(seconds: (res["expires_in"] - 30))),
|
||||||
refreshToken: res["refresh_token"],
|
refreshToken: res["refresh_token"],
|
||||||
);
|
);
|
||||||
|
|
||||||
|
@ -2,6 +2,7 @@
|
|||||||
|
|
||||||
import 'dart:io';
|
import 'dart:io';
|
||||||
|
|
||||||
|
import 'package:flutter/foundation.dart';
|
||||||
import 'package:refilc/api/providers/database_provider.dart';
|
import 'package:refilc/api/providers/database_provider.dart';
|
||||||
import 'package:refilc/api/providers/status_provider.dart';
|
import 'package:refilc/api/providers/status_provider.dart';
|
||||||
import 'package:refilc/api/providers/user_provider.dart';
|
import 'package:refilc/api/providers/user_provider.dart';
|
||||||
@ -40,6 +41,12 @@ Future<void> syncAll(BuildContext context) {
|
|||||||
StatusProvider statusProvider =
|
StatusProvider statusProvider =
|
||||||
Provider.of<StatusProvider>(context, listen: false);
|
Provider.of<StatusProvider>(context, listen: false);
|
||||||
|
|
||||||
|
// check if access token isn't expired
|
||||||
|
// if (user.user?.accessToken == null) {
|
||||||
|
// lock = false;
|
||||||
|
// return Future.value();
|
||||||
|
// }
|
||||||
|
|
||||||
List<Future<void>> tasks = [];
|
List<Future<void>> tasks = [];
|
||||||
int taski = 0;
|
int taski = 0;
|
||||||
|
|
||||||
@ -50,6 +57,28 @@ Future<void> syncAll(BuildContext context) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
tasks = [
|
tasks = [
|
||||||
|
// refresh login
|
||||||
|
syncStatus(() async {
|
||||||
|
// print(user.user?.accessTokenExpire);
|
||||||
|
// print('${user.user?.accessToken ?? "no token"} - ACCESS TOKEN');
|
||||||
|
|
||||||
|
if (user.user == null) return;
|
||||||
|
if (user.user!.accessTokenExpire.isBefore(DateTime.now())) {
|
||||||
|
String authRes = await Provider.of<KretaClient>(context, listen: false)
|
||||||
|
.refreshLogin() ??
|
||||||
|
'';
|
||||||
|
if (authRes != 'success') {
|
||||||
|
if (kDebugMode) print('ERROR: failed to refresh login');
|
||||||
|
lock = false;
|
||||||
|
return Future.value();
|
||||||
|
} else {
|
||||||
|
if (kDebugMode) print('INFO: access token refreshed');
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
if (kDebugMode) print('INFO: access token is not expired');
|
||||||
|
}
|
||||||
|
}()),
|
||||||
|
|
||||||
syncStatus(Provider.of<GradeProvider>(context, listen: false).fetch()),
|
syncStatus(Provider.of<GradeProvider>(context, listen: false).fetch()),
|
||||||
syncStatus(Provider.of<TimetableProvider>(context, listen: false)
|
syncStatus(Provider.of<TimetableProvider>(context, listen: false)
|
||||||
.fetch(week: Week.current())),
|
.fetch(week: Week.current())),
|
||||||
@ -71,6 +100,8 @@ Future<void> syncAll(BuildContext context) {
|
|||||||
if (studentJson == null) return;
|
if (studentJson == null) return;
|
||||||
Student student = Student.fromJson(studentJson);
|
Student student = Student.fromJson(studentJson);
|
||||||
|
|
||||||
|
// print(studentJson);
|
||||||
|
|
||||||
user.user?.name = student.name;
|
user.user?.name = student.name;
|
||||||
|
|
||||||
// Store user
|
// Store user
|
||||||
@ -89,13 +120,11 @@ Future<void> syncAll(BuildContext context) {
|
|||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
return Future.wait(tasks).then((value) {
|
return Future.wait(tasks).then((value) {
|
||||||
// Unlock
|
// Unlock
|
||||||
lock = false;
|
lock = false;
|
||||||
|
|
||||||
if(Platform.isIOS && LiveCardProvider.hasActivityStarted == true){
|
if (Platform.isIOS && LiveCardProvider.hasActivityStarted == true) {
|
||||||
PlatformChannel.endLiveActivity();
|
PlatformChannel.endLiveActivity();
|
||||||
LiveCardProvider.hasActivityStarted = false;
|
LiveCardProvider.hasActivityStarted = false;
|
||||||
}
|
}
|
||||||
|
@ -27,7 +27,8 @@ const settingsDB = DatabaseStruct("settings", {
|
|||||||
"notifications_absences": int,
|
"notifications_absences": int,
|
||||||
"notifications_messages": int,
|
"notifications_messages": int,
|
||||||
"notifications_lessons": int, // notifications
|
"notifications_lessons": int, // notifications
|
||||||
"x_filc_id": String, "graph_class_avg": int, "presentation_mode": int,
|
"x_filc_id": String, "graph_class_avg": int,
|
||||||
|
"analytics_enabled": int, "presentation_mode": int,
|
||||||
"bell_delay": int, "bell_delay_enabled": int,
|
"bell_delay": int, "bell_delay_enabled": int,
|
||||||
"grade_opening_fun": int, "icon_pack": String, "premium_scopes": String,
|
"grade_opening_fun": int, "icon_pack": String, "premium_scopes": String,
|
||||||
"premium_token": String, "premium_login": String,
|
"premium_token": String, "premium_login": String,
|
||||||
@ -66,6 +67,7 @@ const usersDB = DatabaseStruct("users", {
|
|||||||
"institute_code": String, "student": String, "role": int,
|
"institute_code": String, "student": String, "role": int,
|
||||||
"nickname": String, "picture": String, // premium only (it's now plus btw)
|
"nickname": String, "picture": String, // premium only (it's now plus btw)
|
||||||
"grade_streak": int,
|
"grade_streak": int,
|
||||||
|
"access_token": String, "access_token_expire": String,
|
||||||
"refresh_token": String,
|
"refresh_token": String,
|
||||||
});
|
});
|
||||||
const userDataDB = DatabaseStruct("user_data", {
|
const userDataDB = DatabaseStruct("user_data", {
|
||||||
@ -140,6 +142,8 @@ Future<Database> initDB(DatabaseProvider database) async {
|
|||||||
"nickname": "",
|
"nickname": "",
|
||||||
"picture": "",
|
"picture": "",
|
||||||
"grade_streak": 0,
|
"grade_streak": 0,
|
||||||
|
"access_token": "",
|
||||||
|
"access_token_expire": "",
|
||||||
"refresh_token": "",
|
"refresh_token": "",
|
||||||
},
|
},
|
||||||
);
|
);
|
||||||
|
@ -7,6 +7,8 @@ class News {
|
|||||||
String platform;
|
String platform;
|
||||||
bool emergency;
|
bool emergency;
|
||||||
DateTime expireDate;
|
DateTime expireDate;
|
||||||
|
List<String>? appVersions;
|
||||||
|
String? specificAppId;
|
||||||
Map? json;
|
Map? json;
|
||||||
|
|
||||||
News({
|
News({
|
||||||
@ -18,6 +20,8 @@ class News {
|
|||||||
required this.platform,
|
required this.platform,
|
||||||
required this.emergency,
|
required this.emergency,
|
||||||
required this.expireDate,
|
required this.expireDate,
|
||||||
|
this.appVersions,
|
||||||
|
this.specificAppId,
|
||||||
this.json,
|
this.json,
|
||||||
});
|
});
|
||||||
|
|
||||||
@ -31,6 +35,10 @@ class News {
|
|||||||
platform: json["platform"] ?? "",
|
platform: json["platform"] ?? "",
|
||||||
emergency: json["emergency"] ?? false,
|
emergency: json["emergency"] ?? false,
|
||||||
expireDate: DateTime.parse(json["expire_date"] ?? ''),
|
expireDate: DateTime.parse(json["expire_date"] ?? ''),
|
||||||
|
appVersions: json["app_versions"] != null
|
||||||
|
? List<String>.from(json["app_versions"])
|
||||||
|
: null,
|
||||||
|
specificAppId: json["specific_app_id"],
|
||||||
json: json,
|
json: json,
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
@ -60,6 +60,7 @@ class SettingsProvider extends ChangeNotifier {
|
|||||||
UpdateChannel _updateChannel;
|
UpdateChannel _updateChannel;
|
||||||
Config _config;
|
Config _config;
|
||||||
String _xFilcId;
|
String _xFilcId;
|
||||||
|
bool _analyticsEnabled;
|
||||||
bool _graphClassAvg;
|
bool _graphClassAvg;
|
||||||
bool _goodStudent;
|
bool _goodStudent;
|
||||||
bool _presentationMode;
|
bool _presentationMode;
|
||||||
@ -137,6 +138,7 @@ class SettingsProvider extends ChangeNotifier {
|
|||||||
required UpdateChannel updateChannel,
|
required UpdateChannel updateChannel,
|
||||||
required Config config,
|
required Config config,
|
||||||
required String xFilcId,
|
required String xFilcId,
|
||||||
|
required bool analyticsEnabled,
|
||||||
required bool graphClassAvg,
|
required bool graphClassAvg,
|
||||||
required bool goodStudent,
|
required bool goodStudent,
|
||||||
required bool presentationMode,
|
required bool presentationMode,
|
||||||
@ -208,6 +210,7 @@ class SettingsProvider extends ChangeNotifier {
|
|||||||
_updateChannel = updateChannel,
|
_updateChannel = updateChannel,
|
||||||
_config = config,
|
_config = config,
|
||||||
_xFilcId = xFilcId,
|
_xFilcId = xFilcId,
|
||||||
|
_analyticsEnabled = analyticsEnabled,
|
||||||
_graphClassAvg = graphClassAvg,
|
_graphClassAvg = graphClassAvg,
|
||||||
_goodStudent = goodStudent,
|
_goodStudent = goodStudent,
|
||||||
_presentationMode = presentationMode,
|
_presentationMode = presentationMode,
|
||||||
@ -297,6 +300,7 @@ class SettingsProvider extends ChangeNotifier {
|
|||||||
updateChannel: UpdateChannel.values[map["update_channel"]],
|
updateChannel: UpdateChannel.values[map["update_channel"]],
|
||||||
config: Config.fromJson(configMap ?? {}),
|
config: Config.fromJson(configMap ?? {}),
|
||||||
xFilcId: map["x_filc_id"],
|
xFilcId: map["x_filc_id"],
|
||||||
|
analyticsEnabled: map["analytics_enabled"] == 1,
|
||||||
graphClassAvg: map["graph_class_avg"] == 1,
|
graphClassAvg: map["graph_class_avg"] == 1,
|
||||||
goodStudent: false,
|
goodStudent: false,
|
||||||
presentationMode: map["presentation_mode"] == 1,
|
presentationMode: map["presentation_mode"] == 1,
|
||||||
@ -377,6 +381,7 @@ class SettingsProvider extends ChangeNotifier {
|
|||||||
"notification_poll_interval": _notificationPollInterval,
|
"notification_poll_interval": _notificationPollInterval,
|
||||||
"config": jsonEncode(config.json),
|
"config": jsonEncode(config.json),
|
||||||
"x_filc_id": _xFilcId,
|
"x_filc_id": _xFilcId,
|
||||||
|
"analytics_enabled": _analyticsEnabled ? 1 : 0,
|
||||||
"graph_class_avg": _graphClassAvg ? 1 : 0,
|
"graph_class_avg": _graphClassAvg ? 1 : 0,
|
||||||
"presentation_mode": _presentationMode ? 1 : 0,
|
"presentation_mode": _presentationMode ? 1 : 0,
|
||||||
"bell_delay_enabled": _bellDelayEnabled ? 1 : 0,
|
"bell_delay_enabled": _bellDelayEnabled ? 1 : 0,
|
||||||
@ -458,6 +463,7 @@ class SettingsProvider extends ChangeNotifier {
|
|||||||
updateChannel: UpdateChannel.stable,
|
updateChannel: UpdateChannel.stable,
|
||||||
config: Config.fromJson({}),
|
config: Config.fromJson({}),
|
||||||
xFilcId: const Uuid().v4(),
|
xFilcId: const Uuid().v4(),
|
||||||
|
analyticsEnabled: true,
|
||||||
graphClassAvg: false,
|
graphClassAvg: false,
|
||||||
goodStudent: false,
|
goodStudent: false,
|
||||||
presentationMode: false,
|
presentationMode: false,
|
||||||
@ -532,6 +538,7 @@ class SettingsProvider extends ChangeNotifier {
|
|||||||
UpdateChannel get updateChannel => _updateChannel;
|
UpdateChannel get updateChannel => _updateChannel;
|
||||||
Config get config => _config;
|
Config get config => _config;
|
||||||
String get xFilcId => _xFilcId;
|
String get xFilcId => _xFilcId;
|
||||||
|
bool get analyticsEnabled => _analyticsEnabled;
|
||||||
bool get graphClassAvg => _graphClassAvg;
|
bool get graphClassAvg => _graphClassAvg;
|
||||||
bool get goodStudent => _goodStudent;
|
bool get goodStudent => _goodStudent;
|
||||||
bool get presentationMode => _presentationMode;
|
bool get presentationMode => _presentationMode;
|
||||||
@ -604,6 +611,7 @@ class SettingsProvider extends ChangeNotifier {
|
|||||||
UpdateChannel? updateChannel,
|
UpdateChannel? updateChannel,
|
||||||
Config? config,
|
Config? config,
|
||||||
String? xFilcId,
|
String? xFilcId,
|
||||||
|
bool? analyticsEnabled,
|
||||||
bool? graphClassAvg,
|
bool? graphClassAvg,
|
||||||
bool? goodStudent,
|
bool? goodStudent,
|
||||||
bool? presentationMode,
|
bool? presentationMode,
|
||||||
@ -708,6 +716,9 @@ class SettingsProvider extends ChangeNotifier {
|
|||||||
}
|
}
|
||||||
if (config != null && config != _config) _config = config;
|
if (config != null && config != _config) _config = config;
|
||||||
if (xFilcId != null && xFilcId != _xFilcId) _xFilcId = xFilcId;
|
if (xFilcId != null && xFilcId != _xFilcId) _xFilcId = xFilcId;
|
||||||
|
if (analyticsEnabled != null && analyticsEnabled != _analyticsEnabled) {
|
||||||
|
_analyticsEnabled = analyticsEnabled;
|
||||||
|
}
|
||||||
if (graphClassAvg != null && graphClassAvg != _graphClassAvg) {
|
if (graphClassAvg != null && graphClassAvg != _graphClassAvg) {
|
||||||
_graphClassAvg = graphClassAvg;
|
_graphClassAvg = graphClassAvg;
|
||||||
}
|
}
|
||||||
|
@ -18,6 +18,8 @@ class User {
|
|||||||
String picture;
|
String picture;
|
||||||
int gradeStreak;
|
int gradeStreak;
|
||||||
// new login method
|
// new login method
|
||||||
|
String accessToken;
|
||||||
|
DateTime accessTokenExpire;
|
||||||
String refreshToken;
|
String refreshToken;
|
||||||
|
|
||||||
String get displayName => nickname != '' ? nickname : name;
|
String get displayName => nickname != '' ? nickname : name;
|
||||||
@ -34,6 +36,8 @@ class User {
|
|||||||
this.nickname = "",
|
this.nickname = "",
|
||||||
this.picture = "",
|
this.picture = "",
|
||||||
this.gradeStreak = 0,
|
this.gradeStreak = 0,
|
||||||
|
required this.accessToken,
|
||||||
|
required this.accessTokenExpire,
|
||||||
required this.refreshToken,
|
required this.refreshToken,
|
||||||
}) {
|
}) {
|
||||||
if (id != null) {
|
if (id != null) {
|
||||||
@ -59,11 +63,15 @@ class User {
|
|||||||
birth: DateTime.now(),
|
birth: DateTime.now(),
|
||||||
yearId: '1',
|
yearId: '1',
|
||||||
parents: [],
|
parents: [],
|
||||||
|
gradeDelay: 0,
|
||||||
),
|
),
|
||||||
role: Role.values[map["role"] ?? 0],
|
role: Role.values[map["role"] ?? 0],
|
||||||
nickname: map["nickname"] ?? "",
|
nickname: map["nickname"] ?? "",
|
||||||
picture: map["picture"] ?? "",
|
picture: map["picture"] ?? "",
|
||||||
gradeStreak: map["grade_streak"] ?? 0,
|
gradeStreak: map["grade_streak"] ?? 0,
|
||||||
|
accessToken: map["access_token"] ?? "",
|
||||||
|
accessTokenExpire: DateTime.parse(
|
||||||
|
map["access_token_expire"] ?? DateTime.now().toIso8601String()),
|
||||||
refreshToken: map["refresh_token"] ?? "",
|
refreshToken: map["refresh_token"] ?? "",
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
@ -80,6 +88,8 @@ class User {
|
|||||||
"nickname": nickname,
|
"nickname": nickname,
|
||||||
"picture": picture,
|
"picture": picture,
|
||||||
"grade_streak": gradeStreak,
|
"grade_streak": gradeStreak,
|
||||||
|
"access_token": accessToken,
|
||||||
|
"access_token_expire": accessTokenExpire.toIso8601String(),
|
||||||
"refresh_token": refreshToken,
|
"refresh_token": refreshToken,
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
@ -178,7 +178,8 @@ Future<List<DateWidget>> getFilterWidgets(FilterType activeData,
|
|||||||
// Ads
|
// Ads
|
||||||
case FilterType.ads:
|
case FilterType.ads:
|
||||||
if (adProvider.available) {
|
if (adProvider.available) {
|
||||||
items = ad_filter.getWidgets(adProvider.ads);
|
items = ad_filter.getWidgets(
|
||||||
|
adProvider.ads, context);
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
@ -1,23 +1,70 @@
|
|||||||
|
import 'package:flutter/material.dart';
|
||||||
|
import 'package:provider/provider.dart';
|
||||||
import 'package:refilc/models/ad.dart';
|
import 'package:refilc/models/ad.dart';
|
||||||
import 'package:refilc/ui/date_widget.dart';
|
import 'package:refilc/ui/date_widget.dart';
|
||||||
|
import 'package:refilc_mobile_ui/common/widgets/ad/ad_tile.dart';
|
||||||
import 'package:refilc_mobile_ui/common/widgets/ad/ad_viewable.dart' as mobile;
|
import 'package:refilc_mobile_ui/common/widgets/ad/ad_viewable.dart' as mobile;
|
||||||
|
import 'package:refilc_mobile_ui/plus/plus_screen.dart';
|
||||||
|
import 'package:refilc_plus/providers/plus_provider.dart';
|
||||||
|
import 'package:uuid/uuid.dart';
|
||||||
|
|
||||||
List<DateWidget> getWidgets(List<Ad> providerAds) {
|
List<DateWidget> getWidgets(List<Ad> providerAds, BuildContext context) {
|
||||||
List<DateWidget> items = [];
|
List<DateWidget> items = [];
|
||||||
|
|
||||||
|
bool hasPlus = Provider.of<PlusProvider>(context).hasPremium;
|
||||||
|
|
||||||
|
DateWidget plusWidget = DateWidget(
|
||||||
|
key: const Uuid().v4(),
|
||||||
|
date: DateTime.now(),
|
||||||
|
widget: AdTile(
|
||||||
|
Ad(
|
||||||
|
title: 'reFilc+',
|
||||||
|
description:
|
||||||
|
'Fizess elő reFilc+-ra, rejtsd el a hirdetéseket és támogasd az app működését!',
|
||||||
|
author: '',
|
||||||
|
logoUrl: Uri.parse('https://refilc.hu/image/brand/logo.png'),
|
||||||
|
overridePremium: false,
|
||||||
|
date: DateTime(2007, 6, 29, 9, 41),
|
||||||
|
expireDate: DateTime.now().add(const Duration(days: 11)),
|
||||||
|
launchUrl: Uri.parse('https://refilc.hu/plus'),
|
||||||
|
),
|
||||||
|
onTap: () => Navigator.of(context, rootNavigator: true)
|
||||||
|
.push(MaterialPageRoute(builder: (context) {
|
||||||
|
return const PlusScreen();
|
||||||
|
})),
|
||||||
|
padding: const EdgeInsets.symmetric(horizontal: 5.0),
|
||||||
|
showExternalIcon: false,
|
||||||
|
),
|
||||||
|
);
|
||||||
|
|
||||||
if (providerAds.isNotEmpty) {
|
if (providerAds.isNotEmpty) {
|
||||||
for (var ad in providerAds) {
|
for (var ad in providerAds) {
|
||||||
if (ad.date.isBefore(DateTime.now()) &&
|
if (ad.date.isBefore(DateTime.now()) &&
|
||||||
ad.expireDate.isAfter(DateTime.now())) {
|
ad.expireDate.isAfter(DateTime.now()) &&
|
||||||
providerAds.sort((a, b) => -a.date.compareTo(b.date));
|
DateTime.now().hour.isOdd) {
|
||||||
|
if (!hasPlus || ad.overridePremium) {
|
||||||
|
providerAds.sort((a, b) => -a.date.compareTo(b.date));
|
||||||
|
|
||||||
items.add(DateWidget(
|
items.add(DateWidget(
|
||||||
key: ad.description,
|
key: ad.description,
|
||||||
date: ad.date,
|
date: ad.date,
|
||||||
widget: mobile.AdViewable(ad),
|
widget: mobile.AdViewable(ad),
|
||||||
));
|
));
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
if (DateTime.now().weekday == DateTime.saturday &&
|
||||||
|
items.isEmpty &&
|
||||||
|
!hasPlus) {
|
||||||
|
items.add(plusWidget);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
} else {
|
||||||
|
if (DateTime.now().weekday == DateTime.saturday &&
|
||||||
|
items.isEmpty &&
|
||||||
|
!hasPlus) {
|
||||||
|
items.add(plusWidget);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
return items;
|
return items;
|
||||||
|
@ -3,7 +3,7 @@ description: "Egy nem hivatalos e-KRÉTA kliens, diákoktól diákoknak."
|
|||||||
homepage: https://refilc.hu
|
homepage: https://refilc.hu
|
||||||
publish_to: "none"
|
publish_to: "none"
|
||||||
|
|
||||||
version: 5.0.4+274
|
version: 5.0.6+276
|
||||||
|
|
||||||
environment:
|
environment:
|
||||||
sdk: ">=3.3.2 <=3.4.3"
|
sdk: ">=3.3.2 <=3.4.3"
|
||||||
@ -39,7 +39,7 @@ dependencies:
|
|||||||
# ref: master
|
# ref: master
|
||||||
path_provider: ^2.0.2
|
path_provider: ^2.0.2
|
||||||
permission_handler: ^11.0.1
|
permission_handler: ^11.0.1
|
||||||
share_plus: ^9.0.0
|
share_plus: ^10.0.3
|
||||||
connectivity_plus: ^6.0.3
|
connectivity_plus: ^6.0.3
|
||||||
flutter_displaymode: ^0.6.0
|
flutter_displaymode: ^0.6.0
|
||||||
quick_actions: ^1.0.1
|
quick_actions: ^1.0.1
|
||||||
|
@ -28,7 +28,7 @@ class KretaClient {
|
|||||||
late final DatabaseProvider _database;
|
late final DatabaseProvider _database;
|
||||||
late final StatusProvider _status;
|
late final StatusProvider _status;
|
||||||
|
|
||||||
bool _loginRefreshing = false;
|
// bool _loginRefreshing = false;
|
||||||
|
|
||||||
KretaClient({
|
KretaClient({
|
||||||
this.accessToken,
|
this.accessToken,
|
||||||
@ -67,10 +67,14 @@ class KretaClient {
|
|||||||
headerMap = {};
|
headerMap = {};
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (accessToken == null || accessToken == '') {
|
||||||
|
accessToken = _user.user?.accessToken;
|
||||||
|
}
|
||||||
|
|
||||||
try {
|
try {
|
||||||
http.Response? res;
|
http.Response? res;
|
||||||
|
|
||||||
for (int i = 0; i < 3; i++) {
|
for (int i = 0; i < 2; i++) {
|
||||||
if (autoHeader) {
|
if (autoHeader) {
|
||||||
if (!headerMap.containsKey("authorization") && accessToken != null) {
|
if (!headerMap.containsKey("authorization") && accessToken != null) {
|
||||||
headerMap["authorization"] = "Bearer $accessToken";
|
headerMap["authorization"] = "Bearer $accessToken";
|
||||||
@ -85,13 +89,15 @@ class KretaClient {
|
|||||||
|
|
||||||
if (res.statusCode == 401) {
|
if (res.statusCode == 401) {
|
||||||
headerMap.remove("authorization");
|
headerMap.remove("authorization");
|
||||||
await refreshLogin();
|
print("DEBUG: 401 error, refreshing login");
|
||||||
|
print("DEBUG: 401 error, URL: $url");
|
||||||
|
// await refreshLogin();
|
||||||
} else {
|
} else {
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
||||||
// Wait before retrying
|
// Wait before retrying
|
||||||
await Future.delayed(const Duration(milliseconds: 500));
|
await Future.delayed(const Duration(milliseconds: 1500));
|
||||||
}
|
}
|
||||||
|
|
||||||
if (res == null) throw "Login error";
|
if (res == null) throw "Login error";
|
||||||
@ -129,10 +135,14 @@ class KretaClient {
|
|||||||
headerMap = {};
|
headerMap = {};
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (accessToken == null || accessToken == '') {
|
||||||
|
accessToken = _user.user?.accessToken;
|
||||||
|
}
|
||||||
|
|
||||||
try {
|
try {
|
||||||
http.Response? res;
|
http.Response? res;
|
||||||
|
|
||||||
for (int i = 0; i < 3; i++) {
|
for (int i = 0; i < 2; i++) {
|
||||||
if (autoHeader) {
|
if (autoHeader) {
|
||||||
if (!headerMap.containsKey("authorization") && accessToken != null) {
|
if (!headerMap.containsKey("authorization") && accessToken != null) {
|
||||||
headerMap["authorization"] = "Bearer $accessToken";
|
headerMap["authorization"] = "Bearer $accessToken";
|
||||||
@ -150,11 +160,14 @@ class KretaClient {
|
|||||||
|
|
||||||
res = await client.post(Uri.parse(url), headers: headerMap, body: body);
|
res = await client.post(Uri.parse(url), headers: headerMap, body: body);
|
||||||
if (res.statusCode == 401) {
|
if (res.statusCode == 401) {
|
||||||
await refreshLogin();
|
// await refreshLogin();
|
||||||
headerMap.remove("authorization");
|
headerMap.remove("authorization");
|
||||||
} else {
|
} else {
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Wait before retrying
|
||||||
|
await Future.delayed(const Duration(milliseconds: 1500));
|
||||||
}
|
}
|
||||||
|
|
||||||
if (res == null) throw "Login error";
|
if (res == null) throw "Login error";
|
||||||
@ -187,6 +200,10 @@ class KretaClient {
|
|||||||
headerMap = {};
|
headerMap = {};
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (accessToken == null || accessToken == '') {
|
||||||
|
accessToken = _user.user?.accessToken;
|
||||||
|
}
|
||||||
|
|
||||||
try {
|
try {
|
||||||
http.StreamedResponse? res;
|
http.StreamedResponse? res;
|
||||||
|
|
||||||
@ -217,7 +234,7 @@ class KretaClient {
|
|||||||
|
|
||||||
if (res.statusCode == 401) {
|
if (res.statusCode == 401) {
|
||||||
headerMap.remove("authorization");
|
headerMap.remove("authorization");
|
||||||
await refreshLogin();
|
// await refreshLogin();
|
||||||
} else {
|
} else {
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
@ -237,8 +254,8 @@ class KretaClient {
|
|||||||
}
|
}
|
||||||
|
|
||||||
Future<String?> refreshLogin() async {
|
Future<String?> refreshLogin() async {
|
||||||
if (_loginRefreshing) return null;
|
// if (_loginRefreshing) return null;
|
||||||
_loginRefreshing = true;
|
// _loginRefreshing = true;
|
||||||
|
|
||||||
User? loginUser = _user.user;
|
User? loginUser = _user.user;
|
||||||
if (loginUser == null) return null;
|
if (loginUser == null) return null;
|
||||||
@ -257,8 +274,8 @@ class KretaClient {
|
|||||||
|
|
||||||
refreshToken ??= loginUser.refreshToken;
|
refreshToken ??= loginUser.refreshToken;
|
||||||
|
|
||||||
// print("REFRESH TOKEN BELOW");
|
print("REFRESH TOKEN BELOW");
|
||||||
// print(refreshToken);
|
print(refreshToken);
|
||||||
|
|
||||||
if (refreshToken != null) {
|
if (refreshToken != null) {
|
||||||
// print("REFRESHING LOGIN");
|
// print("REFRESHING LOGIN");
|
||||||
@ -268,8 +285,8 @@ class KretaClient {
|
|||||||
refreshToken: loginUser.refreshToken,
|
refreshToken: loginUser.refreshToken,
|
||||||
instituteCode: loginUser.instituteCode,
|
instituteCode: loginUser.instituteCode,
|
||||||
));
|
));
|
||||||
// print("REFRESH RESPONSE BELOW");
|
print("REFRESH RESPONSE BELOW");
|
||||||
// print(res);
|
print(res);
|
||||||
if (res != null) {
|
if (res != null) {
|
||||||
if (res.containsKey("error")) {
|
if (res.containsKey("error")) {
|
||||||
// remove user if refresh token expired
|
// remove user if refresh token expired
|
||||||
@ -287,6 +304,11 @@ class KretaClient {
|
|||||||
|
|
||||||
if (res.containsKey("access_token")) {
|
if (res.containsKey("access_token")) {
|
||||||
accessToken = res["access_token"];
|
accessToken = res["access_token"];
|
||||||
|
loginUser.accessToken = res["access_token"];
|
||||||
|
loginUser.accessTokenExpire =
|
||||||
|
DateTime.now().add(Duration(seconds: (res["expires_in"] - 30)));
|
||||||
|
_database.store.storeUser(loginUser);
|
||||||
|
_user.refresh();
|
||||||
}
|
}
|
||||||
if (res.containsKey("refresh_token")) {
|
if (res.containsKey("refresh_token")) {
|
||||||
refreshToken = res["refresh_token"];
|
refreshToken = res["refresh_token"];
|
||||||
@ -297,15 +319,20 @@ class KretaClient {
|
|||||||
if (res.containsKey("id_token")) {
|
if (res.containsKey("id_token")) {
|
||||||
idToken = res["id_token"];
|
idToken = res["id_token"];
|
||||||
}
|
}
|
||||||
_loginRefreshing = false;
|
// _loginRefreshing = false;
|
||||||
|
print('successful refresh');
|
||||||
|
|
||||||
|
return 'success';
|
||||||
} else {
|
} else {
|
||||||
_loginRefreshing = false;
|
// _loginRefreshing = false;
|
||||||
|
return null;
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
_loginRefreshing = false;
|
// _loginRefreshing = false;
|
||||||
|
return null;
|
||||||
}
|
}
|
||||||
|
|
||||||
return null;
|
// return null;
|
||||||
}
|
}
|
||||||
|
|
||||||
Future<void> logout() async {
|
Future<void> logout() async {
|
||||||
|
@ -11,6 +11,8 @@ class Student {
|
|||||||
String? address;
|
String? address;
|
||||||
String? groupId;
|
String? groupId;
|
||||||
List<String> parents;
|
List<String> parents;
|
||||||
|
int gradeDelay;
|
||||||
|
String? bankAccount;
|
||||||
// List<String> parentsPhone;
|
// List<String> parentsPhone;
|
||||||
String? className;
|
String? className;
|
||||||
|
|
||||||
@ -22,6 +24,8 @@ class Student {
|
|||||||
required this.yearId,
|
required this.yearId,
|
||||||
this.address,
|
this.address,
|
||||||
required this.parents,
|
required this.parents,
|
||||||
|
required this.gradeDelay,
|
||||||
|
this.bankAccount,
|
||||||
// required this.parentsPhone,
|
// required this.parentsPhone,
|
||||||
this.json,
|
this.json,
|
||||||
});
|
});
|
||||||
@ -57,6 +61,10 @@ class Student {
|
|||||||
: null
|
: null
|
||||||
: null,
|
: null,
|
||||||
parents: parents,
|
parents: parents,
|
||||||
|
gradeDelay: json["Intezmeny"]["TestreszabasBeallitasok"]
|
||||||
|
["ErtekelesekMegjelenitesenekKesleltetesenekMerteke"] ??
|
||||||
|
0,
|
||||||
|
bankAccount: json["Bankszamla"]["BankszamlaSzam"],
|
||||||
json: json,
|
json: json,
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
@ -19,7 +19,7 @@ class ShareProvider extends ChangeNotifier {
|
|||||||
// }
|
// }
|
||||||
|
|
||||||
// themes
|
// themes
|
||||||
Future<SharedTheme> shareCurrentTheme(
|
Future<(SharedTheme?, int)> shareCurrentTheme(
|
||||||
BuildContext context, {
|
BuildContext context, {
|
||||||
bool isPublic = false,
|
bool isPublic = false,
|
||||||
bool shareNick = true,
|
bool shareNick = true,
|
||||||
@ -56,9 +56,13 @@ class ShareProvider extends ChangeNotifier {
|
|||||||
};
|
};
|
||||||
|
|
||||||
SharedTheme theme = SharedTheme.fromJson(themeJson, gradeColors);
|
SharedTheme theme = SharedTheme.fromJson(themeJson, gradeColors);
|
||||||
FilcAPI.addSharedTheme(theme);
|
int shareResult = await FilcAPI.addSharedTheme(theme);
|
||||||
|
|
||||||
return theme;
|
if (shareResult == 201) {
|
||||||
|
return (theme, 201);
|
||||||
|
} else {
|
||||||
|
return (null, shareResult);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
Future<SharedTheme?> getThemeById(BuildContext context,
|
Future<SharedTheme?> getThemeById(BuildContext context,
|
||||||
@ -142,7 +146,7 @@ class ShareProvider extends ChangeNotifier {
|
|||||||
}
|
}
|
||||||
|
|
||||||
// grade colors
|
// grade colors
|
||||||
Future<SharedGradeColors> shareCurrentGradeColors(
|
Future<(SharedGradeColors?, int)> shareCurrentGradeColors(
|
||||||
BuildContext context, {
|
BuildContext context, {
|
||||||
bool isPublic = false,
|
bool isPublic = false,
|
||||||
bool shareNick = true,
|
bool shareNick = true,
|
||||||
@ -162,9 +166,13 @@ class ShareProvider extends ChangeNotifier {
|
|||||||
};
|
};
|
||||||
|
|
||||||
SharedGradeColors gradeColors = SharedGradeColors.fromJson(gradeColorsJson);
|
SharedGradeColors gradeColors = SharedGradeColors.fromJson(gradeColorsJson);
|
||||||
FilcAPI.addSharedGradeColors(gradeColors);
|
int shareResult = await FilcAPI.addSharedGradeColors(gradeColors);
|
||||||
|
|
||||||
return gradeColors;
|
if (shareResult == 201) {
|
||||||
|
return (gradeColors, 201);
|
||||||
|
} else {
|
||||||
|
return (null, shareResult);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
Future<SharedGradeColors?> getGradeColorsById(BuildContext context,
|
Future<SharedGradeColors?> getGradeColorsById(BuildContext context,
|
||||||
|
@ -266,12 +266,16 @@ class _ProfileImageState extends State<ProfileImage> {
|
|||||||
child: Transform.translate(
|
child: Transform.translate(
|
||||||
offset: Offset(-widget.radius / 4, -widget.radius / 4),
|
offset: Offset(-widget.radius / 4, -widget.radius / 4),
|
||||||
child: Container(
|
child: Container(
|
||||||
alignment: Alignment.topLeft,
|
alignment: Alignment.topLeft,
|
||||||
child: Text(
|
child: Image.asset(
|
||||||
'🔥',
|
'assets/images/apple_fire_emoji.png',
|
||||||
style: TextStyle(fontSize: widget.radius * 0.8),
|
width: widget.radius,
|
||||||
),
|
)
|
||||||
),
|
// Text(
|
||||||
|
// '🔥',
|
||||||
|
// style: TextStyle(fontSize: widget.radius * 0.8),
|
||||||
|
// ),
|
||||||
|
),
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
|
@ -5,11 +5,13 @@ import 'package:refilc_mobile_ui/common/panel/panel_button.dart';
|
|||||||
import 'package:flutter_feather_icons/flutter_feather_icons.dart';
|
import 'package:flutter_feather_icons/flutter_feather_icons.dart';
|
||||||
|
|
||||||
class AdTile extends StatelessWidget {
|
class AdTile extends StatelessWidget {
|
||||||
const AdTile(this.ad, {super.key, this.onTap, this.padding});
|
const AdTile(this.ad,
|
||||||
|
{super.key, this.onTap, this.padding, this.showExternalIcon = true});
|
||||||
|
|
||||||
final Ad ad;
|
final Ad ad;
|
||||||
final Function()? onTap;
|
final Function()? onTap;
|
||||||
final EdgeInsetsGeometry? padding;
|
final EdgeInsetsGeometry? padding;
|
||||||
|
final bool showExternalIcon;
|
||||||
|
|
||||||
@override
|
@override
|
||||||
Widget build(BuildContext context) {
|
Widget build(BuildContext context) {
|
||||||
@ -28,6 +30,7 @@ class AdTile extends StatelessWidget {
|
|||||||
Text(
|
Text(
|
||||||
ad.description,
|
ad.description,
|
||||||
style: TextStyle(
|
style: TextStyle(
|
||||||
|
fontSize: 14.5,
|
||||||
fontWeight: FontWeight.w500,
|
fontWeight: FontWeight.w500,
|
||||||
color: AppColors.of(context).text.withOpacity(0.7),
|
color: AppColors.of(context).text.withOpacity(0.7),
|
||||||
),
|
),
|
||||||
@ -38,6 +41,8 @@ class AdTile extends StatelessWidget {
|
|||||||
? ClipRRect(
|
? ClipRRect(
|
||||||
borderRadius: BorderRadius.circular(50.0),
|
borderRadius: BorderRadius.circular(50.0),
|
||||||
child: Image.network(
|
child: Image.network(
|
||||||
|
width: 42.0,
|
||||||
|
height: 42.0,
|
||||||
ad.logoUrl.toString(),
|
ad.logoUrl.toString(),
|
||||||
errorBuilder: (context, error, stackTrace) {
|
errorBuilder: (context, error, stackTrace) {
|
||||||
ad.logoUrl = null;
|
ad.logoUrl = null;
|
||||||
@ -46,7 +51,12 @@ class AdTile extends StatelessWidget {
|
|||||||
),
|
),
|
||||||
)
|
)
|
||||||
: null,
|
: null,
|
||||||
trailing: const Icon(FeatherIcons.externalLink),
|
trailing: showExternalIcon
|
||||||
|
? const Icon(
|
||||||
|
FeatherIcons.externalLink,
|
||||||
|
size: 20.0,
|
||||||
|
)
|
||||||
|
: null,
|
||||||
),
|
),
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
@ -12,6 +12,7 @@ class AdViewable extends StatelessWidget {
|
|||||||
@override
|
@override
|
||||||
Widget build(BuildContext context) {
|
Widget build(BuildContext context) {
|
||||||
return AdTile(
|
return AdTile(
|
||||||
|
padding: const EdgeInsets.symmetric(horizontal: 5.0),
|
||||||
ad,
|
ad,
|
||||||
onTap: () => launchUrl(
|
onTap: () => launchUrl(
|
||||||
ad.launchUrl,
|
ad.launchUrl,
|
||||||
|
@ -1,10 +1,12 @@
|
|||||||
import 'package:flutter/material.dart';
|
import 'package:flutter/material.dart';
|
||||||
import 'package:provider/provider.dart';
|
import 'package:provider/provider.dart';
|
||||||
import 'package:refilc/models/settings.dart';
|
import 'package:refilc/models/settings.dart';
|
||||||
|
import 'package:refilc_mobile_ui/common/action_button.dart';
|
||||||
import 'package:refilc_plus/providers/plus_provider.dart';
|
import 'package:refilc_plus/providers/plus_provider.dart';
|
||||||
import 'package:refilc_plus/ui/mobile/plus/activation_view/activation_view.dart';
|
import 'package:refilc_plus/ui/mobile/plus/activation_view/activation_view.dart';
|
||||||
import 'package:refilc_mobile_ui/plus/plus_screen.i18n.dart';
|
import 'package:refilc_mobile_ui/plus/plus_screen.i18n.dart';
|
||||||
import 'package:url_launcher/url_launcher.dart';
|
import 'package:url_launcher/url_launcher.dart';
|
||||||
|
import 'package:uuid/uuid.dart';
|
||||||
|
|
||||||
class PlusPlanCard extends StatelessWidget {
|
class PlusPlanCard extends StatelessWidget {
|
||||||
const PlusPlanCard({
|
const PlusPlanCard({
|
||||||
@ -38,33 +40,39 @@ class PlusPlanCard extends StatelessWidget {
|
|||||||
Widget build(BuildContext context) {
|
Widget build(BuildContext context) {
|
||||||
return GestureDetector(
|
return GestureDetector(
|
||||||
onTap: () {
|
onTap: () {
|
||||||
if (!docsAccepted) {
|
// if (!docsAccepted) {
|
||||||
ScaffoldMessenger.of(context).showSnackBar(const SnackBar(
|
// ScaffoldMessenger.of(context).showSnackBar(const SnackBar(
|
||||||
content: Text(
|
// content: Text(
|
||||||
"El kell fogadnod az ÁSZF-et és az Adatkezelési Tájékoztatót!",
|
// "El kell fogadnod az ÁSZF-et és az Adatkezelési Tájékoztatót!",
|
||||||
style:
|
// style:
|
||||||
TextStyle(color: Colors.black, fontWeight: FontWeight.bold),
|
// TextStyle(color: Colors.black, fontWeight: FontWeight.bold),
|
||||||
),
|
// ),
|
||||||
backgroundColor: Colors.white,
|
// backgroundColor: Colors.white,
|
||||||
));
|
// ));
|
||||||
|
|
||||||
return;
|
// return;
|
||||||
}
|
// }
|
||||||
|
|
||||||
if (Provider.of<SettingsProvider>(context, listen: false).xFilcId ==
|
if (Provider.of<SettingsProvider>(context, listen: false).xFilcId ==
|
||||||
"none") {
|
"none") {
|
||||||
ScaffoldMessenger.of(context).showSnackBar(const SnackBar(
|
Provider.of<SettingsProvider>(context, listen: false)
|
||||||
content: Text(
|
.update(xFilcId: const Uuid().v4(), store: true);
|
||||||
"Be kell kapcsolnod a Névtelen Analitikát a beállítások főoldalán, mielőtt reFilc+ előfizetést vásárolnál!",
|
|
||||||
style:
|
|
||||||
TextStyle(color: Colors.black, fontWeight: FontWeight.bold),
|
|
||||||
),
|
|
||||||
backgroundColor: Colors.white,
|
|
||||||
));
|
|
||||||
|
|
||||||
return;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// if (Provider.of<SettingsProvider>(context, listen: false).xFilcId ==
|
||||||
|
// "none") {
|
||||||
|
// ScaffoldMessenger.of(context).showSnackBar(const SnackBar(
|
||||||
|
// content: Text(
|
||||||
|
// "Be kell kapcsolnod a Névtelen Analitikát a beállítások főoldalán, mielőtt reFilc+ előfizetést vásárolnál!",
|
||||||
|
// style:
|
||||||
|
// TextStyle(color: Colors.black, fontWeight: FontWeight.bold),
|
||||||
|
// ),
|
||||||
|
// backgroundColor: Colors.white,
|
||||||
|
// ));
|
||||||
|
|
||||||
|
// return;
|
||||||
|
// }
|
||||||
|
|
||||||
if (Provider.of<PlusProvider>(context, listen: false).hasPremium) {
|
if (Provider.of<PlusProvider>(context, listen: false).hasPremium) {
|
||||||
if (!active) {
|
if (!active) {
|
||||||
launchUrl(
|
launchUrl(
|
||||||
@ -77,9 +85,29 @@ class PlusPlanCard extends StatelessWidget {
|
|||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
Navigator.of(context).push(MaterialPageRoute(builder: (context) {
|
showDialog(
|
||||||
return PremiumActivationView(product: id);
|
context: context,
|
||||||
}));
|
builder: (context) => AlertDialog(
|
||||||
|
shape: RoundedRectangleBorder(
|
||||||
|
borderRadius: BorderRadius.circular(12.0)),
|
||||||
|
title: Text('docs'.i18n),
|
||||||
|
content: Text('docs_acceptance'.i18n),
|
||||||
|
actions: [
|
||||||
|
ActionButton(
|
||||||
|
label: "next".i18n,
|
||||||
|
onTap: () {
|
||||||
|
// pop dialog
|
||||||
|
Navigator.of(context).pop();
|
||||||
|
// start payment process
|
||||||
|
Navigator.of(context)
|
||||||
|
.push(MaterialPageRoute(builder: (context) {
|
||||||
|
return PremiumActivationView(product: id);
|
||||||
|
}));
|
||||||
|
},
|
||||||
|
),
|
||||||
|
],
|
||||||
|
),
|
||||||
|
);
|
||||||
},
|
},
|
||||||
child: Container(
|
child: Container(
|
||||||
decoration: BoxDecoration(
|
decoration: BoxDecoration(
|
||||||
|
@ -1,5 +1,6 @@
|
|||||||
// ignore_for_file: use_build_context_synchronously
|
// ignore_for_file: use_build_context_synchronously
|
||||||
|
|
||||||
|
import 'package:flutter/services.dart';
|
||||||
import 'package:refilc_mobile_ui/plus/plus_screen.i18n.dart';
|
import 'package:refilc_mobile_ui/plus/plus_screen.i18n.dart';
|
||||||
import 'package:refilc_mobile_ui/plus/components/plan_card.dart';
|
import 'package:refilc_mobile_ui/plus/components/plan_card.dart';
|
||||||
import 'package:flutter_feather_icons/flutter_feather_icons.dart';
|
import 'package:flutter_feather_icons/flutter_feather_icons.dart';
|
||||||
@ -335,6 +336,46 @@ class PlusScreenState extends State<PlusScreen> {
|
|||||||
contentPadding:
|
contentPadding:
|
||||||
const EdgeInsets.only(left: 15.0, right: 10.0),
|
const EdgeInsets.only(left: 15.0, right: 10.0),
|
||||||
onTap: () async {
|
onTap: () async {
|
||||||
|
// try clipboard re-activation
|
||||||
|
final data = await Clipboard.getData("text/plain");
|
||||||
|
if (data != null &&
|
||||||
|
data.text != null &&
|
||||||
|
data.text != "") {
|
||||||
|
// activate using clipboard data
|
||||||
|
final result = await context
|
||||||
|
.read<PlusProvider>()
|
||||||
|
.auth
|
||||||
|
.finishAuth(data.text!);
|
||||||
|
|
||||||
|
if (!result && mounted) {
|
||||||
|
ScaffoldMessenger.of(context)
|
||||||
|
.showSnackBar(const SnackBar(
|
||||||
|
content: Text(
|
||||||
|
"Sikertelen aktiválás. Kérlek próbáld újra később!",
|
||||||
|
style: TextStyle(
|
||||||
|
color: Colors.white,
|
||||||
|
fontWeight: FontWeight.bold),
|
||||||
|
),
|
||||||
|
backgroundColor: Colors.red,
|
||||||
|
));
|
||||||
|
} else {
|
||||||
|
ScaffoldMessenger.of(context)
|
||||||
|
.showSnackBar(const SnackBar(
|
||||||
|
content: Text(
|
||||||
|
"Sikeres aktiválás!",
|
||||||
|
style: TextStyle(
|
||||||
|
color: Colors.white,
|
||||||
|
fontWeight: FontWeight.bold),
|
||||||
|
),
|
||||||
|
backgroundColor: Colors.green,
|
||||||
|
));
|
||||||
|
|
||||||
|
Future.delayed(const Duration(seconds: 2),
|
||||||
|
() => Navigator.of(context).pop());
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// try re-activation using refresh
|
||||||
final result = await context
|
final result = await context
|
||||||
.read<PlusProvider>()
|
.read<PlusProvider>()
|
||||||
.auth
|
.auth
|
||||||
@ -379,41 +420,41 @@ class PlusScreenState extends State<PlusScreen> {
|
|||||||
),
|
),
|
||||||
),
|
),
|
||||||
// aszf warning
|
// aszf warning
|
||||||
const SizedBox(
|
// const SizedBox(
|
||||||
height: 18.0,
|
// height: 18.0,
|
||||||
),
|
// ),
|
||||||
Container(
|
// Container(
|
||||||
decoration: BoxDecoration(
|
// decoration: BoxDecoration(
|
||||||
borderRadius: BorderRadius.circular(16.0),
|
// borderRadius: BorderRadius.circular(16.0),
|
||||||
border: Border.all(
|
// border: Border.all(
|
||||||
color: Colors.black.withOpacity(0.2),
|
// color: Colors.black.withOpacity(0.2),
|
||||||
),
|
// ),
|
||||||
),
|
// ),
|
||||||
child: CheckboxListTile(
|
// child: CheckboxListTile(
|
||||||
side:
|
// side:
|
||||||
const BorderSide(color: Colors.black, width: 2.0),
|
// const BorderSide(color: Colors.black, width: 2.0),
|
||||||
contentPadding:
|
// contentPadding:
|
||||||
const EdgeInsets.only(left: 15.0, right: 10.0),
|
// const EdgeInsets.only(left: 15.0, right: 10.0),
|
||||||
value: docsAccepted,
|
// value: docsAccepted,
|
||||||
onChanged: (value) {
|
// onChanged: (value) {
|
||||||
setState(() {
|
// setState(() {
|
||||||
docsAccepted = !docsAccepted;
|
// docsAccepted = !docsAccepted;
|
||||||
});
|
// });
|
||||||
},
|
// },
|
||||||
// title: Text(
|
// // title: Text(
|
||||||
// 'show_lifetime'.i18n,
|
// // 'show_lifetime'.i18n,
|
||||||
// style: const TextStyle(
|
// // style: const TextStyle(
|
||||||
// color: Colors.black,
|
// // color: Colors.black,
|
||||||
// fontWeight: FontWeight.w500,
|
// // fontWeight: FontWeight.w500,
|
||||||
// ),
|
// // ),
|
||||||
// ),
|
// // ),
|
||||||
subtitle: const Text(
|
// subtitle: const Text(
|
||||||
'Elfogadod a reFilc előfizetésekkel kapcsolatos Általános Szerződési Feltételeit (elérhető az alábbi link-en: filc.one/pay-terms), valamint Adatkezelési Tájékoztatónkat (elérhető az alábbi link-en: filc.one/pay-privacy)?',
|
// 'Elfogadod a reFilc előfizetésekkel kapcsolatos Általános Szerződési Feltételeit (elérhető az alábbi link-en: filc.one/pay-terms), valamint Adatkezelési Tájékoztatónkat (elérhető az alábbi link-en: filc.one/pay-privacy)?',
|
||||||
textAlign: TextAlign.start,
|
// textAlign: TextAlign.start,
|
||||||
style: TextStyle(color: Colors.black),
|
// style: TextStyle(color: Colors.black),
|
||||||
),
|
// ),
|
||||||
),
|
// ),
|
||||||
),
|
// ),
|
||||||
// CheckboxListTile(value: false, onChanged: onChanged)
|
// CheckboxListTile(value: false, onChanged: onChanged)
|
||||||
// Padding(
|
// Padding(
|
||||||
// padding: const EdgeInsets.symmetric(horizontal: 12.0),
|
// padding: const EdgeInsets.symmetric(horizontal: 12.0),
|
||||||
|
@ -47,13 +47,19 @@ extension SettingsLocalization on String {
|
|||||||
"rfp_16": "Private leaks and informations about upcoming features",
|
"rfp_16": "Private leaks and informations about upcoming features",
|
||||||
"rfp_17": "Grade exporting",
|
"rfp_17": "Grade exporting",
|
||||||
"rfp_18": "Viewing exported grades",
|
"rfp_18": "Viewing exported grades",
|
||||||
|
// docs popup
|
||||||
|
"docs": "Documents",
|
||||||
|
"docs_acceptance":
|
||||||
|
"By pressing the \"Next\" button, you accept reFilc's Terms and Conditions for subscriptions (available at the following link: filc.one/pay-terms) and our Privacy Policy (available at the following link: filc.one/pay-privacy).",
|
||||||
|
"next": "Next",
|
||||||
// other
|
// other
|
||||||
"and": " and ",
|
"and": " and ",
|
||||||
"every": "Every ",
|
"every": "Every ",
|
||||||
"benefit": " benefit",
|
"benefit": " benefit",
|
||||||
"show_lifetime": "Show Lifetime Plans",
|
"show_lifetime": "Show Lifetime Plans",
|
||||||
"more_soon": "More coming soon...",
|
"more_soon": "More coming soon...",
|
||||||
"faq_dc": "To redeem your benefits, contact us on Discord in DMs!",
|
"faq_dc":
|
||||||
|
"To redeem your Discord-related benefits, contact us on Discord in DMs!",
|
||||||
"reactivate": "Reactivate Existing Subscription",
|
"reactivate": "Reactivate Existing Subscription",
|
||||||
},
|
},
|
||||||
"hu_hu": {
|
"hu_hu": {
|
||||||
@ -100,6 +106,11 @@ extension SettingsLocalization on String {
|
|||||||
"rfp_16": "Privát betekintések és információk közelgő újításokról",
|
"rfp_16": "Privát betekintések és információk közelgő újításokról",
|
||||||
"rfp_17": "Jegy exportálás",
|
"rfp_17": "Jegy exportálás",
|
||||||
"rfp_18": "Exportált jegyek megtekintése",
|
"rfp_18": "Exportált jegyek megtekintése",
|
||||||
|
// docs popup
|
||||||
|
"docs": "Dokumentumok",
|
||||||
|
"docs_acceptance":
|
||||||
|
"A \"Tovább\" gombra kattintva elfogadod a reFilc előfizetésekkel kapcsolatos Általános Szerződési Feltételeit (elérhető az alábbi link-en: filc.one/pay-terms), valamint Adatkezelési Tájékoztatónkat (elérhető az alábbi link-en: filc.one/pay-privacy).",
|
||||||
|
"next": "Tovább",
|
||||||
// other
|
// other
|
||||||
"and": " és ",
|
"and": " és ",
|
||||||
"every": "Minden ",
|
"every": "Minden ",
|
||||||
@ -107,7 +118,7 @@ extension SettingsLocalization on String {
|
|||||||
"show_lifetime": "Örökre szóló csomagok",
|
"show_lifetime": "Örökre szóló csomagok",
|
||||||
"more_soon": "Hamarosan mégtöbb finomság...",
|
"more_soon": "Hamarosan mégtöbb finomság...",
|
||||||
"faq_dc":
|
"faq_dc":
|
||||||
"Az előnyök beváltásához írj nekünk Discord-on privát üzenetet!",
|
"A Discord-al kapcsolatos előnyök beváltásához írj nekünk Discord-on privát üzenetet!",
|
||||||
"reactivate": "Meglévő előfizetés újraaktiválása",
|
"reactivate": "Meglévő előfizetés újraaktiválása",
|
||||||
},
|
},
|
||||||
"de_de": {
|
"de_de": {
|
||||||
@ -156,6 +167,11 @@ extension SettingsLocalization on String {
|
|||||||
"rfp_16": "Private Leaks und Informationen über kommende Funktionen",
|
"rfp_16": "Private Leaks und Informationen über kommende Funktionen",
|
||||||
"rfp_17": "Notenexport",
|
"rfp_17": "Notenexport",
|
||||||
"rfp_18": "Anzeigen exportierter Noten",
|
"rfp_18": "Anzeigen exportierter Noten",
|
||||||
|
// docs popup
|
||||||
|
"docs": "Dokumente",
|
||||||
|
"docs_acceptance":
|
||||||
|
"Durch Drücken der Schaltfläche \"Weiter\" akzeptieren Sie die Allgemeinen Geschäftsbedingungen von reFilc für Abonnements (verfügbar unter folgendem Link: filc.one/pay-terms) und unsere Datenschutzrichtlinie (verfügbar unter folgendem Link: filc.one/pay-privacy).",
|
||||||
|
"next": "Weiter",
|
||||||
// other
|
// other
|
||||||
"and": " und ",
|
"and": " und ",
|
||||||
"every": "Jeder ",
|
"every": "Jeder ",
|
||||||
|
@ -1,21 +1,17 @@
|
|||||||
// import 'dart:async';
|
// import 'dart:async';
|
||||||
|
|
||||||
import 'package:refilc/api/client.dart';
|
import 'package:refilc/api/client.dart';
|
||||||
|
import 'dart:io' show Platform;
|
||||||
import 'package:refilc/api/login.dart';
|
import 'package:refilc/api/login.dart';
|
||||||
import 'package:refilc/theme/colors/colors.dart';
|
import 'package:refilc/theme/colors/colors.dart';
|
||||||
import 'package:refilc_mobile_ui/common/bottom_sheet_menu/rounded_bottom_sheet.dart';
|
|
||||||
import 'package:refilc_mobile_ui/common/custom_snack_bar.dart';
|
import 'package:refilc_mobile_ui/common/custom_snack_bar.dart';
|
||||||
import 'package:refilc_mobile_ui/common/system_chrome.dart';
|
import 'package:refilc_mobile_ui/common/system_chrome.dart';
|
||||||
import 'package:refilc_mobile_ui/common/widgets/absence/absence_display.dart';
|
|
||||||
import 'package:refilc_mobile_ui/screens/login/login_button.dart';
|
|
||||||
import 'package:refilc_mobile_ui/screens/login/login_input.dart';
|
|
||||||
import 'package:refilc_mobile_ui/screens/login/school_input/school_input.dart';
|
import 'package:refilc_mobile_ui/screens/login/school_input/school_input.dart';
|
||||||
import 'package:refilc_mobile_ui/screens/settings/privacy_view.dart';
|
import 'package:refilc_mobile_ui/screens/settings/privacy_view.dart';
|
||||||
import 'package:flutter/material.dart';
|
import 'package:flutter/material.dart';
|
||||||
import 'package:flutter/services.dart';
|
import 'package:flutter/services.dart';
|
||||||
import 'login_screen.i18n.dart';
|
import 'login_screen.i18n.dart';
|
||||||
import 'package:carousel_slider/carousel_slider.dart';
|
import 'package:carousel_slider/carousel_slider.dart';
|
||||||
import 'package:flutter_svg/flutter_svg.dart';
|
|
||||||
import 'package:refilc_mobile_ui/screens/login/kreten_login.dart'; //new library for new web login
|
import 'package:refilc_mobile_ui/screens/login/kreten_login.dart'; //new library for new web login
|
||||||
|
|
||||||
class LoginScreen extends StatefulWidget {
|
class LoginScreen extends StatefulWidget {
|
||||||
@ -79,13 +75,19 @@ class LoginScreenState extends State<LoginScreen> {
|
|||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
|
double paddingTop = 0;
|
||||||
@override
|
@override
|
||||||
Widget build(BuildContext context) {
|
Widget build(BuildContext context) {
|
||||||
precacheImage(const AssetImage('assets/images/showcase1.png'), context);
|
precacheImage(const AssetImage('assets/images/showcase1.png'), context);
|
||||||
precacheImage(const AssetImage('assets/images/showcase2.png'), context);
|
precacheImage(const AssetImage('assets/images/showcase2.png'), context);
|
||||||
precacheImage(const AssetImage('assets/images/showcase3.png'), context);
|
precacheImage(const AssetImage('assets/images/showcase3.png'), context);
|
||||||
precacheImage(const AssetImage('assets/images/showcase4.png'), context);
|
precacheImage(const AssetImage('assets/images/showcase4.png'), context);
|
||||||
bool selected = false;
|
|
||||||
|
if (Platform.isIOS) {
|
||||||
|
paddingTop = 0;
|
||||||
|
} else if (Platform.isAndroid) {
|
||||||
|
paddingTop = 20;
|
||||||
|
}
|
||||||
|
|
||||||
return Scaffold(
|
return Scaffold(
|
||||||
body: Container(
|
body: Container(
|
||||||
@ -102,7 +104,7 @@ class LoginScreenState extends State<LoginScreen> {
|
|||||||
children: [
|
children: [
|
||||||
// app icon
|
// app icon
|
||||||
Padding(
|
Padding(
|
||||||
padding: const EdgeInsets.only(left: 24, top: 20),
|
padding: EdgeInsets.only(left: 24, top: paddingTop),
|
||||||
child: Row(
|
child: Row(
|
||||||
children: [
|
children: [
|
||||||
Image.asset(
|
Image.asset(
|
||||||
@ -447,6 +449,7 @@ class LoginScreenState extends State<LoginScreen> {
|
|||||||
// }),
|
// }),
|
||||||
// );
|
// );
|
||||||
// }
|
// }
|
||||||
|
// ignore: non_constant_identifier_names
|
||||||
void _NewLoginAPI({required BuildContext context}) {
|
void _NewLoginAPI({required BuildContext context}) {
|
||||||
String code = codeController.text;
|
String code = codeController.text;
|
||||||
|
|
||||||
|
@ -56,6 +56,16 @@ class AccountView extends StatelessWidget {
|
|||||||
Detail(
|
Detail(
|
||||||
title: "parents".plural(user.student.parents.length),
|
title: "parents".plural(user.student.parents.length),
|
||||||
description: user.student.parents.join(", ")),
|
description: user.student.parents.join(", ")),
|
||||||
|
if (user.student.gradeDelay > 0)
|
||||||
|
Detail(
|
||||||
|
title: "grade_delay".i18n,
|
||||||
|
description: "hrs".i18n.fill([user.student.gradeDelay]),
|
||||||
|
),
|
||||||
|
// if ((user.student.bankAccount ?? "").isNotEmpty)
|
||||||
|
// Detail(
|
||||||
|
// title: "bank_account".i18n,
|
||||||
|
// description: (user.student.bankAccount ?? "not_provided".i18n),
|
||||||
|
// ),
|
||||||
const SizedBox(
|
const SizedBox(
|
||||||
height: 10.0,
|
height: 10.0,
|
||||||
),
|
),
|
||||||
|
@ -10,6 +10,8 @@ extension Localization on String {
|
|||||||
"address": "Home address",
|
"address": "Home address",
|
||||||
"parents": "Parent(s)",
|
"parents": "Parent(s)",
|
||||||
"parents_phone": "Parents' phone number: ",
|
"parents_phone": "Parents' phone number: ",
|
||||||
|
"grade_delay": "Grade visibility delay",
|
||||||
|
"hrs": "%s hour(s)",
|
||||||
},
|
},
|
||||||
"hu_hu": {
|
"hu_hu": {
|
||||||
"birthdate": "Születési dátum",
|
"birthdate": "Születési dátum",
|
||||||
@ -17,6 +19,8 @@ extension Localization on String {
|
|||||||
"class": "Osztály",
|
"class": "Osztály",
|
||||||
"address": "Lakcím",
|
"address": "Lakcím",
|
||||||
"parents": "Szülő(k)",
|
"parents": "Szülő(k)",
|
||||||
|
"grade_delay": "Jegy megjelenítési késleltetés",
|
||||||
|
"hrs": "%s óra",
|
||||||
},
|
},
|
||||||
"de_de": {
|
"de_de": {
|
||||||
"birthdate": "Geburtsdatum",
|
"birthdate": "Geburtsdatum",
|
||||||
@ -24,6 +28,8 @@ extension Localization on String {
|
|||||||
"class": "Klasse",
|
"class": "Klasse",
|
||||||
"address": "Wohnanschrift",
|
"address": "Wohnanschrift",
|
||||||
"parents": "Elter(n)",
|
"parents": "Elter(n)",
|
||||||
|
"grade_delay": "Notenverzögerung",
|
||||||
|
"hrs": "%s Stunde(n)",
|
||||||
},
|
},
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -42,6 +42,7 @@ import 'package:refilc_mobile_ui/screens/settings/accounts/account_view.dart';
|
|||||||
import 'package:refilc_mobile_ui/screens/settings/notifications_screen.dart';
|
import 'package:refilc_mobile_ui/screens/settings/notifications_screen.dart';
|
||||||
import 'package:refilc_mobile_ui/screens/settings/privacy_view.dart';
|
import 'package:refilc_mobile_ui/screens/settings/privacy_view.dart';
|
||||||
import 'package:refilc_mobile_ui/screens/settings/settings_helper.dart';
|
import 'package:refilc_mobile_ui/screens/settings/settings_helper.dart';
|
||||||
|
import 'package:refilc_mobile_ui/screens/settings/submenu/code_scanner.dart';
|
||||||
import 'package:refilc_mobile_ui/screens/settings/submenu/extras_screen.dart';
|
import 'package:refilc_mobile_ui/screens/settings/submenu/extras_screen.dart';
|
||||||
import 'package:refilc_mobile_ui/screens/settings/submenu/personalize_screen.dart';
|
import 'package:refilc_mobile_ui/screens/settings/submenu/personalize_screen.dart';
|
||||||
import 'package:flutter/foundation.dart';
|
import 'package:flutter/foundation.dart';
|
||||||
@ -782,10 +783,14 @@ class SettingsScreenState extends State<SettingsScreen>
|
|||||||
color: AppColors.of(context).text.withOpacity(0.75),
|
color: AppColors.of(context).text.withOpacity(0.75),
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
leading: const Text(
|
leading: Image.asset(
|
||||||
"🔥",
|
'assets/images/apple_fire_emoji.png',
|
||||||
style: TextStyle(fontSize: 22.0),
|
width: 24.0,
|
||||||
),
|
),
|
||||||
|
// leading: const Text(
|
||||||
|
// "🔥",
|
||||||
|
// style: TextStyle(fontSize: 22.0),
|
||||||
|
// ),
|
||||||
trailing: Text(
|
trailing: Text(
|
||||||
"${user.gradeStreak}",
|
"${user.gradeStreak}",
|
||||||
style: TextStyle(
|
style: TextStyle(
|
||||||
@ -1008,14 +1013,15 @@ class SettingsScreenState extends State<SettingsScreen>
|
|||||||
children: [
|
children: [
|
||||||
PanelButton(
|
PanelButton(
|
||||||
leading: Icon(
|
leading: Icon(
|
||||||
FeatherIcons.map,
|
Icons.qr_code,
|
||||||
size: 22.0,
|
size: 22.0,
|
||||||
color: AppColors.of(context).text.withOpacity(0.95),
|
color: AppColors.of(context).text.withOpacity(0.95),
|
||||||
),
|
),
|
||||||
title: Text("stickermap".i18n),
|
title: Text("qr_scanner".i18n),
|
||||||
onPressed: () => launchUrl(
|
onPressed: () => Navigator.of(context).push(
|
||||||
Uri.parse("https://stickermap.refilc.hu"),
|
MaterialPageRoute(
|
||||||
mode: LaunchMode.inAppBrowserView,
|
builder: (context) => const CodeScannerScreen(),
|
||||||
|
),
|
||||||
),
|
),
|
||||||
borderRadius: const BorderRadius.vertical(
|
borderRadius: const BorderRadius.vertical(
|
||||||
top: Radius.circular(12.0),
|
top: Radius.circular(12.0),
|
||||||
@ -1030,6 +1036,22 @@ class SettingsScreenState extends State<SettingsScreen>
|
|||||||
),
|
),
|
||||||
title: Text("news".i18n),
|
title: Text("news".i18n),
|
||||||
onPressed: () => _openNews(context),
|
onPressed: () => _openNews(context),
|
||||||
|
borderRadius: const BorderRadius.vertical(
|
||||||
|
top: Radius.circular(4.0),
|
||||||
|
bottom: Radius.circular(4.0),
|
||||||
|
),
|
||||||
|
),
|
||||||
|
PanelButton(
|
||||||
|
leading: Icon(
|
||||||
|
FeatherIcons.map,
|
||||||
|
size: 22.0,
|
||||||
|
color: AppColors.of(context).text.withOpacity(0.95),
|
||||||
|
),
|
||||||
|
title: Text("stickermap".i18n),
|
||||||
|
onPressed: () => launchUrl(
|
||||||
|
Uri.parse("https://stickermap.refilc.hu"),
|
||||||
|
mode: LaunchMode.inAppBrowserView,
|
||||||
|
),
|
||||||
borderRadius: const BorderRadius.vertical(
|
borderRadius: const BorderRadius.vertical(
|
||||||
top: Radius.circular(4.0),
|
top: Radius.circular(4.0),
|
||||||
bottom: Radius.circular(12.0),
|
bottom: Radius.circular(12.0),
|
||||||
@ -1173,7 +1195,7 @@ class SettingsScreenState extends State<SettingsScreen>
|
|||||||
secondary: Icon(
|
secondary: Icon(
|
||||||
FeatherIcons.barChart2,
|
FeatherIcons.barChart2,
|
||||||
size: 22.0,
|
size: 22.0,
|
||||||
color: settings.xFilcId != "none"
|
color: settings.analyticsEnabled
|
||||||
? AppColors.of(context).text.withOpacity(0.95)
|
? AppColors.of(context).text.withOpacity(0.95)
|
||||||
: AppColors.of(context).text.withOpacity(.25),
|
: AppColors.of(context).text.withOpacity(.25),
|
||||||
),
|
),
|
||||||
@ -1183,28 +1205,29 @@ class SettingsScreenState extends State<SettingsScreen>
|
|||||||
fontWeight: FontWeight.w600,
|
fontWeight: FontWeight.w600,
|
||||||
fontSize: 16.0,
|
fontSize: 16.0,
|
||||||
color: AppColors.of(context).text.withOpacity(
|
color: AppColors.of(context).text.withOpacity(
|
||||||
settings.xFilcId != "none" ? 1.0 : .5),
|
settings.analyticsEnabled ? 1.0 : .5),
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
subtitle: Text(
|
subtitle: Text(
|
||||||
"Anonymous Usage Analytics".i18n,
|
"Anonymous Usage Analytics".i18n,
|
||||||
style: TextStyle(
|
style: TextStyle(
|
||||||
color: AppColors.of(context).text.withOpacity(
|
color: AppColors.of(context)
|
||||||
settings.xFilcId != "none" ? .5 : .2),
|
.text
|
||||||
|
.withOpacity(settings.analyticsEnabled ? .5 : .2),
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
onChanged: (v) {
|
onChanged: (v) {
|
||||||
String newId;
|
// String newId;
|
||||||
if (v == false) {
|
// if (v == false) {
|
||||||
newId = "none";
|
// newId = "none";
|
||||||
} else if (settings.xFilcId == "none") {
|
// } else if (settings.xFilcId == "none") {
|
||||||
newId = SettingsProvider.defaultSettings().xFilcId;
|
// newId = SettingsProvider.defaultSettings().xFilcId;
|
||||||
} else {
|
// } else {
|
||||||
newId = settings.xFilcId;
|
// newId = settings.xFilcId;
|
||||||
}
|
// }
|
||||||
settings.update(xFilcId: newId);
|
settings.update(analyticsEnabled: v);
|
||||||
},
|
},
|
||||||
value: settings.xFilcId != "none",
|
value: settings.analyticsEnabled,
|
||||||
activeColor: Theme.of(context).colorScheme.secondary,
|
activeColor: Theme.of(context).colorScheme.secondary,
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
|
@ -131,6 +131,11 @@ extension SettingsLocalization on String {
|
|||||||
"feedback": "Feedback",
|
"feedback": "Feedback",
|
||||||
"other": "Other",
|
"other": "Other",
|
||||||
"stickermap": "Sticker Map",
|
"stickermap": "Sticker Map",
|
||||||
|
"qr_scanner": "QR Scanner",
|
||||||
|
"camera_perm_error":
|
||||||
|
"Camera permission is required to scan QR codes.",
|
||||||
|
"invalid_qr_code": "Invalid QR code!",
|
||||||
|
"success": "Success!",
|
||||||
},
|
},
|
||||||
"hu_hu": {
|
"hu_hu": {
|
||||||
"heads_up": "Figyelem!",
|
"heads_up": "Figyelem!",
|
||||||
@ -260,6 +265,11 @@ extension SettingsLocalization on String {
|
|||||||
"feedback": "Visszajelzés",
|
"feedback": "Visszajelzés",
|
||||||
"other": "Egyéb",
|
"other": "Egyéb",
|
||||||
"stickermap": "Matrica térkép",
|
"stickermap": "Matrica térkép",
|
||||||
|
"qr_scanner": "QR Kódolvasó",
|
||||||
|
"camera_perm_error":
|
||||||
|
"A kamera engedély szükséges a QR kódok beolvasásához.",
|
||||||
|
"invalid_qr_code": "Érvénytelen QR kód!",
|
||||||
|
"success": "Siker!",
|
||||||
},
|
},
|
||||||
"de_de": {
|
"de_de": {
|
||||||
"heads_up": "Achtung!",
|
"heads_up": "Achtung!",
|
||||||
@ -389,6 +399,11 @@ extension SettingsLocalization on String {
|
|||||||
"feedback": "Feedback",
|
"feedback": "Feedback",
|
||||||
"other": "Sonstiges",
|
"other": "Sonstiges",
|
||||||
"stickermap": "Sticker Map",
|
"stickermap": "Sticker Map",
|
||||||
|
"qr_scanner": "QR-Scanner",
|
||||||
|
"camera_perm_error":
|
||||||
|
"Kameraberechtigung ist erforderlich, um QR-Codes zu scannen.",
|
||||||
|
"invalid_qr_code": "Ungültiger QR-Code!",
|
||||||
|
"success": "Erfolg!",
|
||||||
},
|
},
|
||||||
};
|
};
|
||||||
|
|
||||||
|
172
refilc_mobile_ui/lib/screens/settings/submenu/code_scanner.dart
Normal file
172
refilc_mobile_ui/lib/screens/settings/submenu/code_scanner.dart
Normal file
@ -0,0 +1,172 @@
|
|||||||
|
import 'dart:io';
|
||||||
|
|
||||||
|
import 'package:flutter/material.dart';
|
||||||
|
import 'package:flutter_feather_icons/flutter_feather_icons.dart';
|
||||||
|
import 'package:qr_code_scanner_plus/qr_code_scanner_plus.dart';
|
||||||
|
import 'package:refilc/theme/colors/colors.dart';
|
||||||
|
import 'package:refilc_mobile_ui/common/custom_snack_bar.dart';
|
||||||
|
import 'package:refilc_mobile_ui/screens/settings/settings_screen.i18n.dart';
|
||||||
|
import 'package:url_launcher/url_launcher.dart';
|
||||||
|
|
||||||
|
class CodeScannerScreen extends StatefulWidget {
|
||||||
|
const CodeScannerScreen({super.key});
|
||||||
|
|
||||||
|
@override
|
||||||
|
State<StatefulWidget> createState() => _CodeScannerScreenState();
|
||||||
|
}
|
||||||
|
|
||||||
|
class _CodeScannerScreenState extends State<CodeScannerScreen> {
|
||||||
|
Barcode? result;
|
||||||
|
QRViewController? controller;
|
||||||
|
final GlobalKey qrKey = GlobalKey(debugLabel: 'QR');
|
||||||
|
|
||||||
|
@override
|
||||||
|
void reassemble() {
|
||||||
|
super.reassemble();
|
||||||
|
if (Platform.isAndroid) {
|
||||||
|
controller!.pauseCamera();
|
||||||
|
}
|
||||||
|
controller!.resumeCamera();
|
||||||
|
}
|
||||||
|
|
||||||
|
// @override
|
||||||
|
// void initState() {
|
||||||
|
// super.initState();
|
||||||
|
|
||||||
|
// controller!.resumeCamera();
|
||||||
|
// }
|
||||||
|
|
||||||
|
@override
|
||||||
|
Widget build(BuildContext context) {
|
||||||
|
return Scaffold(
|
||||||
|
appBar: AppBar(
|
||||||
|
backgroundColor: Colors.transparent,
|
||||||
|
title: Text('qr_scanner'.i18n),
|
||||||
|
leading: const BackButton(),
|
||||||
|
actions: [
|
||||||
|
IconButton(
|
||||||
|
icon: FutureBuilder(
|
||||||
|
future: controller?.getFlashStatus(),
|
||||||
|
builder: (context, snapshot) {
|
||||||
|
return Icon(
|
||||||
|
snapshot.data == true
|
||||||
|
? FeatherIcons.zapOff
|
||||||
|
: FeatherIcons.zap,
|
||||||
|
);
|
||||||
|
},
|
||||||
|
),
|
||||||
|
onPressed: () async {
|
||||||
|
await controller?.toggleFlash();
|
||||||
|
setState(() {});
|
||||||
|
},
|
||||||
|
),
|
||||||
|
],
|
||||||
|
),
|
||||||
|
body: _buildQrView(context),
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
Widget _buildQrView(BuildContext context) {
|
||||||
|
var scanArea = (MediaQuery.of(context).size.width < 400 ||
|
||||||
|
MediaQuery.of(context).size.height < 400)
|
||||||
|
? 150.0
|
||||||
|
: 280.0;
|
||||||
|
|
||||||
|
return QRView(
|
||||||
|
key: qrKey,
|
||||||
|
onQRViewCreated: _onQRViewCreated,
|
||||||
|
overlay: QrScannerOverlayShape(
|
||||||
|
borderColor: Theme.of(context).primaryColor,
|
||||||
|
borderRadius: 10,
|
||||||
|
borderLength: 30,
|
||||||
|
borderWidth: 10,
|
||||||
|
cutOutSize: scanArea,
|
||||||
|
),
|
||||||
|
onPermissionSet: (ctrl, p) => _onPermissionSet(context, ctrl, p),
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
void _onQRViewCreated(QRViewController controller) {
|
||||||
|
setState(() {
|
||||||
|
this.controller = controller;
|
||||||
|
});
|
||||||
|
controller.scannedDataStream.listen((scanData) {
|
||||||
|
// controller.pauseCamera();
|
||||||
|
if (result?.code == scanData.code) return;
|
||||||
|
|
||||||
|
setState(() {
|
||||||
|
result = scanData;
|
||||||
|
});
|
||||||
|
|
||||||
|
if (scanData.code != null) {
|
||||||
|
if (scanData.code!.startsWith('qw://')) {
|
||||||
|
// String data = scanData.code!.replaceFirst('qw://', '');
|
||||||
|
// check the qr id from api
|
||||||
|
// TODO: this qr shit
|
||||||
|
} else if (scanData.code!.startsWith('https://') ||
|
||||||
|
scanData.code!.startsWith('http://')) {
|
||||||
|
Uri uri =
|
||||||
|
Uri.parse(scanData.code!.replaceFirst('http://', 'https://'));
|
||||||
|
|
||||||
|
// print(uri);
|
||||||
|
|
||||||
|
if (uri.host.contains('refilc.hu') ||
|
||||||
|
uri.host.contains('refilcapp.hu') ||
|
||||||
|
uri.host.contains('filc.one')) {
|
||||||
|
ScaffoldMessenger.of(context).showSnackBar(CustomSnackBar(
|
||||||
|
content: Text("success".i18n,
|
||||||
|
style: const TextStyle(color: Colors.white)),
|
||||||
|
backgroundColor: const Color(0xFF00A900),
|
||||||
|
context: context,
|
||||||
|
));
|
||||||
|
|
||||||
|
// launch refilc url
|
||||||
|
Future.delayed(const Duration(seconds: 1), () {
|
||||||
|
Navigator.of(context).pop();
|
||||||
|
launchUrl(uri, mode: LaunchMode.inAppBrowserView);
|
||||||
|
});
|
||||||
|
} else {
|
||||||
|
// show invalid code error
|
||||||
|
// Navigator.of(context).pop();
|
||||||
|
ScaffoldMessenger.of(context).showSnackBar(CustomSnackBar(
|
||||||
|
content: Text("invalid_qr_code".i18n,
|
||||||
|
style: const TextStyle(color: Colors.white)),
|
||||||
|
backgroundColor: AppColors.of(context).red,
|
||||||
|
context: context,
|
||||||
|
));
|
||||||
|
|
||||||
|
controller.resumeCamera();
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
// show invalid code error
|
||||||
|
// Navigator.of(context).pop();
|
||||||
|
ScaffoldMessenger.of(context).showSnackBar(CustomSnackBar(
|
||||||
|
content: Text("invalid_qr_code".i18n,
|
||||||
|
style: const TextStyle(color: Colors.white)),
|
||||||
|
backgroundColor: AppColors.of(context).red,
|
||||||
|
context: context,
|
||||||
|
));
|
||||||
|
|
||||||
|
controller.resumeCamera();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
void _onPermissionSet(BuildContext context, QRViewController ctrl, bool p) {
|
||||||
|
if (!p) {
|
||||||
|
ScaffoldMessenger.of(context).showSnackBar(CustomSnackBar(
|
||||||
|
content: Text("camera_perm_error".i18n,
|
||||||
|
style: const TextStyle(color: Colors.white)),
|
||||||
|
backgroundColor: AppColors.of(context).red,
|
||||||
|
context: context,
|
||||||
|
));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
@override
|
||||||
|
void dispose() {
|
||||||
|
controller?.dispose();
|
||||||
|
super.dispose();
|
||||||
|
}
|
||||||
|
}
|
@ -4,9 +4,10 @@ import 'package:flutter/material.dart';
|
|||||||
import 'package:flutter_feather_icons/flutter_feather_icons.dart';
|
import 'package:flutter_feather_icons/flutter_feather_icons.dart';
|
||||||
import 'package:provider/provider.dart';
|
import 'package:provider/provider.dart';
|
||||||
// import 'package:refilc/models/settings.dart';
|
// import 'package:refilc/models/settings.dart';
|
||||||
import 'package:refilc/models/shared_theme.dart';
|
import 'package:refilc/theme/colors/colors.dart';
|
||||||
import 'package:refilc_kreta_api/providers/share_provider.dart';
|
import 'package:refilc_kreta_api/providers/share_provider.dart';
|
||||||
import 'package:refilc_mobile_ui/common/action_button.dart';
|
import 'package:refilc_mobile_ui/common/action_button.dart';
|
||||||
|
import 'package:refilc_mobile_ui/common/custom_snack_bar.dart';
|
||||||
import 'package:refilc_mobile_ui/common/splitted_panel/splitted_panel.dart';
|
import 'package:refilc_mobile_ui/common/splitted_panel/splitted_panel.dart';
|
||||||
import 'package:share_plus/share_plus.dart';
|
import 'package:share_plus/share_plus.dart';
|
||||||
import 'submenu_screen.i18n.dart';
|
import 'submenu_screen.i18n.dart';
|
||||||
@ -131,15 +132,59 @@ class ShareThemeDialogState extends State<ShareThemeDialog> {
|
|||||||
),
|
),
|
||||||
onPressed: () async {
|
onPressed: () async {
|
||||||
// share the fucking theme
|
// share the fucking theme
|
||||||
SharedGradeColors gradeColors =
|
var (gradeColors, gradeColorsStatus) =
|
||||||
await shareProvider.shareCurrentGradeColors(context);
|
await shareProvider.shareCurrentGradeColors(context);
|
||||||
SharedTheme theme = await shareProvider.shareCurrentTheme(
|
|
||||||
|
if (gradeColorsStatus == 429) {
|
||||||
|
ScaffoldMessenger.of(context).showSnackBar(CustomSnackBar(
|
||||||
|
content: Text("theme_share_ratelimit".i18n,
|
||||||
|
style: const TextStyle(color: Colors.white)),
|
||||||
|
backgroundColor: AppColors.of(context).red,
|
||||||
|
context: context,
|
||||||
|
));
|
||||||
|
|
||||||
|
return;
|
||||||
|
} else if (gradeColorsStatus != 201) {
|
||||||
|
ScaffoldMessenger.of(context).showSnackBar(CustomSnackBar(
|
||||||
|
content: Text("theme_share_failed".i18n,
|
||||||
|
style: const TextStyle(color: Colors.white)),
|
||||||
|
backgroundColor: AppColors.of(context).red,
|
||||||
|
context: context,
|
||||||
|
));
|
||||||
|
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
var (theme, themeStatus) = await shareProvider.shareCurrentTheme(
|
||||||
context,
|
context,
|
||||||
gradeColors: gradeColors,
|
gradeColors: gradeColors!,
|
||||||
isPublic: isPublic,
|
isPublic: isPublic,
|
||||||
displayName: _title.text,
|
displayName: _title.text,
|
||||||
);
|
);
|
||||||
|
|
||||||
|
if (themeStatus == 429) {
|
||||||
|
ScaffoldMessenger.of(context).showSnackBar(CustomSnackBar(
|
||||||
|
content: Text("theme_share_ratelimit".i18n,
|
||||||
|
style: const TextStyle(color: Colors.white)),
|
||||||
|
backgroundColor: AppColors.of(context).red,
|
||||||
|
context: context,
|
||||||
|
));
|
||||||
|
|
||||||
|
return;
|
||||||
|
} else if (themeStatus != 201) {
|
||||||
|
ScaffoldMessenger.of(context).showSnackBar(CustomSnackBar(
|
||||||
|
content: Text("theme_share_failed".i18n,
|
||||||
|
style: const TextStyle(color: Colors.white)),
|
||||||
|
backgroundColor: AppColors.of(context).red,
|
||||||
|
context: context,
|
||||||
|
));
|
||||||
|
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
// print(theme);
|
||||||
|
// print(themeStatus);
|
||||||
|
|
||||||
// save theme id in settings
|
// save theme id in settings
|
||||||
// Provider.of<SettingsProvider>(context, listen: false)
|
// Provider.of<SettingsProvider>(context, listen: false)
|
||||||
// .update(currentThemeId: theme.id);
|
// .update(currentThemeId: theme.id);
|
||||||
@ -149,7 +194,7 @@ class ShareThemeDialogState extends State<ShareThemeDialog> {
|
|||||||
|
|
||||||
// show the share popup
|
// show the share popup
|
||||||
Share.share(
|
Share.share(
|
||||||
theme.id,
|
theme!.id,
|
||||||
subject: 'share_subj_theme'.i18n,
|
subject: 'share_subj_theme'.i18n,
|
||||||
);
|
);
|
||||||
},
|
},
|
||||||
|
@ -30,6 +30,8 @@ extension SettingsLocalization on String {
|
|||||||
"share_disclaimer":
|
"share_disclaimer":
|
||||||
"By sharing the theme, you agree that the nickname you set and all settings of the theme will be shared publicly.",
|
"By sharing the theme, you agree that the nickname you set and all settings of the theme will be shared publicly.",
|
||||||
"understand": "I understand",
|
"understand": "I understand",
|
||||||
|
"theme_share_failed": "An error occurred while sharing the theme.",
|
||||||
|
"theme_share_ratelimit": "You can only share 1 theme per minute.",
|
||||||
},
|
},
|
||||||
"hu_hu": {
|
"hu_hu": {
|
||||||
"general": "Általános",
|
"general": "Általános",
|
||||||
@ -58,6 +60,8 @@ extension SettingsLocalization on String {
|
|||||||
"share_disclaimer":
|
"share_disclaimer":
|
||||||
"A téma megosztásával elfogadod, hogy az általad beállított becenév és a téma minden beállítása nyilvánosan megosztásra kerüljön.",
|
"A téma megosztásával elfogadod, hogy az általad beállított becenév és a téma minden beállítása nyilvánosan megosztásra kerüljön.",
|
||||||
"understand": "Értem",
|
"understand": "Értem",
|
||||||
|
"theme_share_failed": "Hiba történt a téma megosztása közben.",
|
||||||
|
"theme_share_ratelimit": "Csak 1 témát oszthatsz meg percenként.",
|
||||||
},
|
},
|
||||||
"de_de": {
|
"de_de": {
|
||||||
"general": "Allgemeine",
|
"general": "Allgemeine",
|
||||||
@ -86,6 +90,9 @@ extension SettingsLocalization on String {
|
|||||||
"share_disclaimer":
|
"share_disclaimer":
|
||||||
"Durch das Teilen des Themes erklären Sie sich damit einverstanden, dass der von Ihnen festgelegte Spitzname und alle Einstellungen des Themes öffentlich geteilt werden.",
|
"Durch das Teilen des Themes erklären Sie sich damit einverstanden, dass der von Ihnen festgelegte Spitzname und alle Einstellungen des Themes öffentlich geteilt werden.",
|
||||||
"understand": "Ich verstehe",
|
"understand": "Ich verstehe",
|
||||||
|
"theme_share_failed":
|
||||||
|
"Beim Teilen des Themas ist ein Fehler aufgetreten.",
|
||||||
|
"theme_share_ratelimit": "Sie können nur 1 Thema pro Minute teilen.",
|
||||||
},
|
},
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -58,7 +58,7 @@ dependencies:
|
|||||||
auto_size_text: ^3.0.0
|
auto_size_text: ^3.0.0
|
||||||
connectivity_plus: ^6.0.3
|
connectivity_plus: ^6.0.3
|
||||||
collection: ^1.18.0
|
collection: ^1.18.0
|
||||||
share_plus: ^9.0.0
|
share_plus: ^10.0.3
|
||||||
image_picker: ^1.0.7
|
image_picker: ^1.0.7
|
||||||
path_provider: ^2.1.2
|
path_provider: ^2.1.2
|
||||||
image_crop:
|
image_crop:
|
||||||
@ -77,6 +77,7 @@ dependencies:
|
|||||||
webview_flutter: ^4.8.0
|
webview_flutter: ^4.8.0
|
||||||
file_picker: ^8.0.5
|
file_picker: ^8.0.5
|
||||||
shake_flutter: ^17.0.0
|
shake_flutter: ^17.0.0
|
||||||
|
qr_code_scanner_plus: ^2.0.6
|
||||||
|
|
||||||
dev_dependencies:
|
dev_dependencies:
|
||||||
flutter_lints: ^4.0.0
|
flutter_lints: ^4.0.0
|
||||||
|
@ -1 +1 @@
|
|||||||
Subproject commit 26cd3fc163d72ddb849edfeb7fdb7b64c7df44bc
|
Subproject commit 6abc4edf70deeaffea8b8a7dd95acebecc5a520b
|
Loading…
x
Reference in New Issue
Block a user