forked from firka/student-legacy
setted goal plans can be saved now
This commit is contained in:
parent
3e470981a8
commit
0ac0586fba
@ -46,6 +46,8 @@ const userDataDB = DatabaseStruct("user_data", {
|
|||||||
"renamed_teachers": String,
|
"renamed_teachers": String,
|
||||||
// "subject_lesson_count": String, // non kreta data
|
// "subject_lesson_count": String, // non kreta data
|
||||||
"last_seen_grade": int,
|
"last_seen_grade": int,
|
||||||
|
// goal plans // non kreta data
|
||||||
|
"goal_plans": String,
|
||||||
});
|
});
|
||||||
|
|
||||||
Future<void> createTable(Database db, DatabaseStruct struct) =>
|
Future<void> createTable(Database db, DatabaseStruct struct) =>
|
||||||
@ -97,6 +99,8 @@ Future<Database> initDB(DatabaseProvider database) async {
|
|||||||
"renamed_teachers": "{}",
|
"renamed_teachers": "{}",
|
||||||
// "subject_lesson_count": "{}", // non kreta data
|
// "subject_lesson_count": "{}", // non kreta data
|
||||||
"last_seen_grade": 0,
|
"last_seen_grade": 0,
|
||||||
|
// goal plans // non kreta data
|
||||||
|
"goal_plans": "{}",
|
||||||
});
|
});
|
||||||
} catch (error) {
|
} catch (error) {
|
||||||
print("ERROR: migrateDB: $error");
|
print("ERROR: migrateDB: $error");
|
||||||
|
@ -213,4 +213,15 @@ class UserDatabaseQuery {
|
|||||||
return (jsonDecode(renamedTeachersJson) as Map)
|
return (jsonDecode(renamedTeachersJson) as Map)
|
||||||
.map((key, value) => MapEntry(key.toString(), value.toString()));
|
.map((key, value) => MapEntry(key.toString(), value.toString()));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Future<Map<String, String>> subjectGoalPlans({required String userId}) async {
|
||||||
|
List<Map> userData =
|
||||||
|
await db.query("user_data", where: "id = ?", whereArgs: [userId]);
|
||||||
|
if (userData.isEmpty) return {};
|
||||||
|
String? goalPlansJson =
|
||||||
|
userData.elementAt(0)["goal_plans"] as String?;
|
||||||
|
if (goalPlansJson == null) return {};
|
||||||
|
return (jsonDecode(goalPlansJson) as Map)
|
||||||
|
.map((key, value) => MapEntry(key.toString(), value.toString()));
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
@ -140,4 +140,11 @@ class UserDatabaseStore {
|
|||||||
await db.update("user_data", {"renamed_teachers": renamedTeachersJson},
|
await db.update("user_data", {"renamed_teachers": renamedTeachersJson},
|
||||||
where: "id = ?", whereArgs: [userId]);
|
where: "id = ?", whereArgs: [userId]);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Future<void> storeSubjectGoalPlans(Map<String, String> plans,
|
||||||
|
{required String userId}) async {
|
||||||
|
String goalPlansJson = jsonEncode(plans);
|
||||||
|
await db.update("user_data", {"goal_plans": goalPlansJson},
|
||||||
|
where: "id = ?", whereArgs: [userId]);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
@ -8,7 +8,7 @@ class RoundBorderIcon extends StatelessWidget {
|
|||||||
const RoundBorderIcon(
|
const RoundBorderIcon(
|
||||||
{Key? key,
|
{Key? key,
|
||||||
this.color = Colors.black,
|
this.color = Colors.black,
|
||||||
this.width = 16.0,
|
this.width = 1.5,
|
||||||
required this.icon})
|
required this.icon})
|
||||||
: super(key: key);
|
: super(key: key);
|
||||||
|
|
||||||
@ -20,7 +20,7 @@ class RoundBorderIcon extends StatelessWidget {
|
|||||||
borderRadius: BorderRadius.circular(50.0),
|
borderRadius: BorderRadius.circular(50.0),
|
||||||
),
|
),
|
||||||
child: Padding(
|
child: Padding(
|
||||||
padding: EdgeInsets.zero,
|
padding: const EdgeInsets.all(5.0),
|
||||||
child: icon,
|
child: icon,
|
||||||
),
|
),
|
||||||
);
|
);
|
||||||
|
@ -1,6 +1,8 @@
|
|||||||
import 'dart:math';
|
import 'dart:math';
|
||||||
|
|
||||||
import 'package:animations/animations.dart';
|
import 'package:animations/animations.dart';
|
||||||
|
import 'package:filcnaplo/api/providers/database_provider.dart';
|
||||||
|
import 'package:filcnaplo/api/providers/user_provider.dart';
|
||||||
import 'package:filcnaplo/models/settings.dart';
|
import 'package:filcnaplo/models/settings.dart';
|
||||||
import 'package:filcnaplo/utils/format.dart';
|
import 'package:filcnaplo/utils/format.dart';
|
||||||
import 'package:filcnaplo_kreta_api/providers/grade_provider.dart';
|
import 'package:filcnaplo_kreta_api/providers/grade_provider.dart';
|
||||||
@ -21,7 +23,7 @@ import 'package:filcnaplo_mobile_ui/pages/grades/calculator/grade_calculator_pro
|
|||||||
import 'package:filcnaplo_mobile_ui/pages/grades/grades_count.dart';
|
import 'package:filcnaplo_mobile_ui/pages/grades/grades_count.dart';
|
||||||
import 'package:filcnaplo_mobile_ui/pages/grades/graph.dart';
|
import 'package:filcnaplo_mobile_ui/pages/grades/graph.dart';
|
||||||
import 'package:filcnaplo_mobile_ui/pages/grades/subject_grades_container.dart';
|
import 'package:filcnaplo_mobile_ui/pages/grades/subject_grades_container.dart';
|
||||||
import 'package:filcnaplo_premium/ui/mobile/goal_planner/test.dart';
|
import 'package:filcnaplo_premium/ui/mobile/goal_planner/goal_planner_screen.dart';
|
||||||
import 'package:filcnaplo_premium/models/premium_scopes.dart';
|
import 'package:filcnaplo_premium/models/premium_scopes.dart';
|
||||||
import 'package:filcnaplo_premium/providers/premium_provider.dart';
|
import 'package:filcnaplo_premium/providers/premium_provider.dart';
|
||||||
import 'package:filcnaplo_premium/ui/mobile/premium/upsell.dart';
|
import 'package:filcnaplo_premium/ui/mobile/premium/upsell.dart';
|
||||||
@ -62,12 +64,16 @@ class _GradeSubjectViewState extends State<GradeSubjectView> {
|
|||||||
late GradeProvider gradeProvider;
|
late GradeProvider gradeProvider;
|
||||||
late GradeCalculatorProvider calculatorProvider;
|
late GradeCalculatorProvider calculatorProvider;
|
||||||
late SettingsProvider settingsProvider;
|
late SettingsProvider settingsProvider;
|
||||||
|
late DatabaseProvider dbProvider;
|
||||||
|
late UserProvider user;
|
||||||
|
|
||||||
late double average;
|
late double average;
|
||||||
late Widget gradeGraph;
|
late Widget gradeGraph;
|
||||||
|
|
||||||
bool gradeCalcMode = false;
|
bool gradeCalcMode = false;
|
||||||
|
|
||||||
|
String plan = '';
|
||||||
|
|
||||||
List<Grade> getSubjectGrades(Subject subject) => !gradeCalcMode
|
List<Grade> getSubjectGrades(Subject subject) => !gradeCalcMode
|
||||||
? gradeProvider.grades.where((e) => e.subject == subject).toList()
|
? gradeProvider.grades.where((e) => e.subject == subject).toList()
|
||||||
: calculatorProvider.grades.where((e) => e.subject == subject).toList();
|
: calculatorProvider.grades.where((e) => e.subject == subject).toList();
|
||||||
@ -151,6 +157,20 @@ class _GradeSubjectViewState extends State<GradeSubjectView> {
|
|||||||
gradeTiles = List.castFrom(tiles);
|
gradeTiles = List.castFrom(tiles);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@override
|
||||||
|
void initState() {
|
||||||
|
super.initState();
|
||||||
|
user = Provider.of<UserProvider>(context, listen: false);
|
||||||
|
dbProvider = Provider.of<DatabaseProvider>(context, listen: false);
|
||||||
|
}
|
||||||
|
|
||||||
|
void fetchGoalPlans() async {
|
||||||
|
plan = (await dbProvider.userQuery
|
||||||
|
.subjectGoalPlans(userId: user.id!))[widget.subject.id] ??
|
||||||
|
'';
|
||||||
|
setState(() {});
|
||||||
|
}
|
||||||
|
|
||||||
@override
|
@override
|
||||||
Widget build(BuildContext context) {
|
Widget build(BuildContext context) {
|
||||||
gradeProvider = Provider.of<GradeProvider>(context);
|
gradeProvider = Provider.of<GradeProvider>(context);
|
||||||
@ -196,6 +216,8 @@ class _GradeSubjectViewState extends State<GradeSubjectView> {
|
|||||||
buildTiles(ghostGrades);
|
buildTiles(ghostGrades);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
fetchGoalPlans();
|
||||||
|
|
||||||
return Scaffold(
|
return Scaffold(
|
||||||
key: _scaffoldKey,
|
key: _scaffoldKey,
|
||||||
floatingActionButtonLocation: ExpandableFab.location,
|
floatingActionButtonLocation: ExpandableFab.location,
|
||||||
@ -213,6 +235,7 @@ class _GradeSubjectViewState extends State<GradeSubjectView> {
|
|||||||
),
|
),
|
||||||
children: [
|
children: [
|
||||||
FloatingActionButton.small(
|
FloatingActionButton.small(
|
||||||
|
heroTag: "btn_ghost_grades",
|
||||||
child: const Icon(FeatherIcons.plus),
|
child: const Icon(FeatherIcons.plus),
|
||||||
backgroundColor: Theme.of(context).colorScheme.secondary,
|
backgroundColor: Theme.of(context).colorScheme.secondary,
|
||||||
onPressed: () {
|
onPressed: () {
|
||||||
@ -220,6 +243,7 @@ class _GradeSubjectViewState extends State<GradeSubjectView> {
|
|||||||
},
|
},
|
||||||
),
|
),
|
||||||
FloatingActionButton.small(
|
FloatingActionButton.small(
|
||||||
|
heroTag: "btn_goal_planner",
|
||||||
child: const Icon(FeatherIcons.flag, size: 20.0),
|
child: const Icon(FeatherIcons.flag, size: 20.0),
|
||||||
backgroundColor: Theme.of(context).colorScheme.secondary,
|
backgroundColor: Theme.of(context).colorScheme.secondary,
|
||||||
onPressed: () {
|
onPressed: () {
|
||||||
@ -235,7 +259,7 @@ class _GradeSubjectViewState extends State<GradeSubjectView> {
|
|||||||
|
|
||||||
Navigator.of(context).push(CupertinoPageRoute(
|
Navigator.of(context).push(CupertinoPageRoute(
|
||||||
builder: (context) =>
|
builder: (context) =>
|
||||||
GoalPlannerTest(subject: widget.subject)));
|
GoalPlannerScreen(subject: widget.subject)));
|
||||||
},
|
},
|
||||||
),
|
),
|
||||||
],
|
],
|
||||||
@ -261,6 +285,35 @@ class _GradeSubjectViewState extends State<GradeSubjectView> {
|
|||||||
const SizedBox(width: 6.0),
|
const SizedBox(width: 6.0),
|
||||||
if (average != 0)
|
if (average != 0)
|
||||||
Center(child: AverageDisplay(average: average)),
|
Center(child: AverageDisplay(average: average)),
|
||||||
|
const SizedBox(width: 6.0),
|
||||||
|
if (plan != '')
|
||||||
|
Center(
|
||||||
|
child: GestureDetector(
|
||||||
|
onTap: () {
|
||||||
|
Navigator.of(context).push(CupertinoPageRoute(
|
||||||
|
builder: (context) =>
|
||||||
|
GoalPlannerScreen(subject: widget.subject)));
|
||||||
|
},
|
||||||
|
child: Container(
|
||||||
|
width: 54.0,
|
||||||
|
padding: const EdgeInsets.symmetric(
|
||||||
|
horizontal: 5.0, vertical: 8.0),
|
||||||
|
decoration: BoxDecoration(
|
||||||
|
borderRadius: BorderRadius.circular(45.0),
|
||||||
|
color: Theme.of(context)
|
||||||
|
.colorScheme
|
||||||
|
.primary
|
||||||
|
.withOpacity(.15),
|
||||||
|
),
|
||||||
|
child: Icon(
|
||||||
|
FeatherIcons.flag,
|
||||||
|
size: 17.0,
|
||||||
|
weight: 2.5,
|
||||||
|
color: Theme.of(context).colorScheme.primary,
|
||||||
|
),
|
||||||
|
),
|
||||||
|
),
|
||||||
|
),
|
||||||
const SizedBox(width: 12.0),
|
const SizedBox(width: 12.0),
|
||||||
],
|
],
|
||||||
icon: SubjectIcon.resolveVariant(
|
icon: SubjectIcon.resolveVariant(
|
||||||
|
@ -138,6 +138,14 @@ class Plan {
|
|||||||
|
|
||||||
Plan(this.plan);
|
Plan(this.plan);
|
||||||
|
|
||||||
|
String get dbString {
|
||||||
|
var finalString = '';
|
||||||
|
for (var i in plan) {
|
||||||
|
finalString += "$i,";
|
||||||
|
}
|
||||||
|
return finalString;
|
||||||
|
}
|
||||||
|
|
||||||
@override
|
@override
|
||||||
bool operator ==(other) => other is Plan && listEquals(plan, other.plan);
|
bool operator ==(other) => other is Plan && listEquals(plan, other.plan);
|
||||||
|
|
||||||
|
@ -1,3 +1,5 @@
|
|||||||
|
import 'package:filcnaplo/api/providers/database_provider.dart';
|
||||||
|
import 'package:filcnaplo/api/providers/user_provider.dart';
|
||||||
import 'package:filcnaplo/helpers/average_helper.dart';
|
import 'package:filcnaplo/helpers/average_helper.dart';
|
||||||
import 'package:filcnaplo/helpers/subject.dart';
|
import 'package:filcnaplo/helpers/subject.dart';
|
||||||
import 'package:filcnaplo/models/settings.dart';
|
import 'package:filcnaplo/models/settings.dart';
|
||||||
@ -22,19 +24,21 @@ enum PlanResult {
|
|||||||
reached, // Goal already reached
|
reached, // Goal already reached
|
||||||
}
|
}
|
||||||
|
|
||||||
class GoalPlannerTest extends StatefulWidget {
|
class GoalPlannerScreen extends StatefulWidget {
|
||||||
final Subject subject;
|
final Subject subject;
|
||||||
|
|
||||||
const GoalPlannerTest({Key? key, required this.subject}) : super(key: key);
|
const GoalPlannerScreen({Key? key, required this.subject}) : super(key: key);
|
||||||
|
|
||||||
@override
|
@override
|
||||||
State<GoalPlannerTest> createState() => _GoalPlannerTestState();
|
State<GoalPlannerScreen> createState() => _GoalPlannerScreenState();
|
||||||
}
|
}
|
||||||
|
|
||||||
class _GoalPlannerTestState extends State<GoalPlannerTest> {
|
class _GoalPlannerScreenState extends State<GoalPlannerScreen> {
|
||||||
late GradeProvider gradeProvider;
|
late GradeProvider gradeProvider;
|
||||||
late GradeCalculatorProvider calculatorProvider;
|
late GradeCalculatorProvider calculatorProvider;
|
||||||
late SettingsProvider settingsProvider;
|
late SettingsProvider settingsProvider;
|
||||||
|
late DatabaseProvider dbProvider;
|
||||||
|
late UserProvider user;
|
||||||
|
|
||||||
bool gradeCalcMode = false;
|
bool gradeCalcMode = false;
|
||||||
|
|
||||||
@ -50,6 +54,17 @@ class _GoalPlannerTestState extends State<GoalPlannerTest> {
|
|||||||
Plan? selectedRoute;
|
Plan? selectedRoute;
|
||||||
List<Plan> otherPlans = [];
|
List<Plan> otherPlans = [];
|
||||||
|
|
||||||
|
@override
|
||||||
|
void initState() {
|
||||||
|
super.initState();
|
||||||
|
user = Provider.of<UserProvider>(context, listen: false);
|
||||||
|
dbProvider = Provider.of<DatabaseProvider>(context, listen: false);
|
||||||
|
}
|
||||||
|
|
||||||
|
Future<Map<String, String>> fetchGoalPlans() async {
|
||||||
|
return await dbProvider.userQuery.subjectGoalPlans(userId: user.id!);
|
||||||
|
}
|
||||||
|
|
||||||
PlanResult getResult() {
|
PlanResult getResult() {
|
||||||
final currentAvg = GoalPlannerHelper.averageEvals(grades);
|
final currentAvg = GoalPlannerHelper.averageEvals(grades);
|
||||||
|
|
||||||
@ -170,17 +185,21 @@ class _GoalPlannerTestState extends State<GoalPlannerTest> {
|
|||||||
context: context,
|
context: context,
|
||||||
subject: widget.subject,
|
subject: widget.subject,
|
||||||
),
|
),
|
||||||
size: 10,
|
size: 18,
|
||||||
|
weight: 1.5,
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
|
const SizedBox(
|
||||||
|
width: 5.0,
|
||||||
|
),
|
||||||
Text(
|
Text(
|
||||||
(widget.subject.isRenamed
|
(widget.subject.isRenamed
|
||||||
? widget.subject.renamedTo
|
? widget.subject.renamedTo
|
||||||
: widget.subject.name) ??
|
: widget.subject.name) ??
|
||||||
'goal_planner_title'.i18n,
|
'goal_planner_title'.i18n,
|
||||||
style: const TextStyle(
|
style: const TextStyle(
|
||||||
fontSize: 17.0,
|
fontSize: 20.0,
|
||||||
fontWeight: FontWeight.w500,
|
fontWeight: FontWeight.w700,
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
],
|
],
|
||||||
@ -196,67 +215,56 @@ class _GoalPlannerTestState extends State<GoalPlannerTest> {
|
|||||||
],
|
],
|
||||||
),
|
),
|
||||||
const SizedBox(height: 12.0),
|
const SizedBox(height: 12.0),
|
||||||
Row(
|
Text(
|
||||||
mainAxisAlignment: MainAxisAlignment.spaceBetween,
|
"set_a_goal".i18n,
|
||||||
crossAxisAlignment: CrossAxisAlignment.start,
|
style: const TextStyle(
|
||||||
children: [
|
fontWeight: FontWeight.bold,
|
||||||
Column(
|
fontSize: 20.0,
|
||||||
mainAxisAlignment: MainAxisAlignment.start,
|
),
|
||||||
children: [
|
|
||||||
Text(
|
|
||||||
"set_a_goal".i18n,
|
|
||||||
style: const TextStyle(
|
|
||||||
fontWeight: FontWeight.bold,
|
|
||||||
fontSize: 20.0,
|
|
||||||
),
|
|
||||||
),
|
|
||||||
const SizedBox(height: 4.0),
|
|
||||||
Text(
|
|
||||||
goalValue.toString(),
|
|
||||||
style: TextStyle(
|
|
||||||
fontWeight: FontWeight.w900,
|
|
||||||
fontSize: 42.0,
|
|
||||||
color: gradeColor(goalValue.round(), settingsProvider),
|
|
||||||
),
|
|
||||||
),
|
|
||||||
],
|
|
||||||
),
|
|
||||||
// Column(
|
|
||||||
// mainAxisAlignment: MainAxisAlignment.center,
|
|
||||||
// children: [
|
|
||||||
// Text(
|
|
||||||
// "select_subject".i18n,
|
|
||||||
// style: const TextStyle(
|
|
||||||
// fontWeight: FontWeight.bold,
|
|
||||||
// fontSize: 20.0,
|
|
||||||
// ),
|
|
||||||
// ),
|
|
||||||
// const SizedBox(height: 4.0),
|
|
||||||
// Column(
|
|
||||||
// children: [
|
|
||||||
// Icon(
|
|
||||||
// SubjectIcon.resolveVariant(
|
|
||||||
// context: context,
|
|
||||||
// subject: widget.subject,
|
|
||||||
// ),
|
|
||||||
// size: 48.0,
|
|
||||||
// ),
|
|
||||||
// Text(
|
|
||||||
// (widget.subject.isRenamed
|
|
||||||
// ? widget.subject.renamedTo
|
|
||||||
// : widget.subject.name) ??
|
|
||||||
// '',
|
|
||||||
// style: const TextStyle(
|
|
||||||
// fontSize: 17.0,
|
|
||||||
// fontWeight: FontWeight.w500,
|
|
||||||
// ),
|
|
||||||
// )
|
|
||||||
// ],
|
|
||||||
// )
|
|
||||||
// ],
|
|
||||||
// )
|
|
||||||
],
|
|
||||||
),
|
),
|
||||||
|
const SizedBox(height: 4.0),
|
||||||
|
Text(
|
||||||
|
goalValue.toString(),
|
||||||
|
style: TextStyle(
|
||||||
|
fontWeight: FontWeight.w900,
|
||||||
|
fontSize: 48.0,
|
||||||
|
color: gradeColor(goalValue.round(), settingsProvider),
|
||||||
|
),
|
||||||
|
),
|
||||||
|
// Column(
|
||||||
|
// mainAxisAlignment: MainAxisAlignment.center,
|
||||||
|
// children: [
|
||||||
|
// Text(
|
||||||
|
// "select_subject".i18n,
|
||||||
|
// style: const TextStyle(
|
||||||
|
// fontWeight: FontWeight.bold,
|
||||||
|
// fontSize: 20.0,
|
||||||
|
// ),
|
||||||
|
// ),
|
||||||
|
// const SizedBox(height: 4.0),
|
||||||
|
// Column(
|
||||||
|
// children: [
|
||||||
|
// Icon(
|
||||||
|
// SubjectIcon.resolveVariant(
|
||||||
|
// context: context,
|
||||||
|
// subject: widget.subject,
|
||||||
|
// ),
|
||||||
|
// size: 48.0,
|
||||||
|
// ),
|
||||||
|
// Text(
|
||||||
|
// (widget.subject.isRenamed
|
||||||
|
// ? widget.subject.renamedTo
|
||||||
|
// : widget.subject.name) ??
|
||||||
|
// '',
|
||||||
|
// style: const TextStyle(
|
||||||
|
// fontSize: 17.0,
|
||||||
|
// fontWeight: FontWeight.w500,
|
||||||
|
// ),
|
||||||
|
// )
|
||||||
|
// ],
|
||||||
|
// )
|
||||||
|
// ],
|
||||||
|
// )
|
||||||
const SizedBox(height: 24.0),
|
const SizedBox(height: 24.0),
|
||||||
Text(
|
Text(
|
||||||
"pick_route".i18n,
|
"pick_route".i18n,
|
||||||
@ -331,9 +339,21 @@ class _GoalPlannerTestState extends State<GoalPlannerTest> {
|
|||||||
SizedBox(
|
SizedBox(
|
||||||
width: double.infinity,
|
width: double.infinity,
|
||||||
child: RawMaterialButton(
|
child: RawMaterialButton(
|
||||||
onPressed: () {
|
onPressed: () async {
|
||||||
ScaffoldMessenger.of(context).showSnackBar(
|
if (selectedRoute == null) {
|
||||||
const SnackBar(content: Text("Hamarosan...")));
|
ScaffoldMessenger.of(context).showSnackBar(SnackBar(
|
||||||
|
content: Text('${"pick_route".i18n}...')));
|
||||||
|
}
|
||||||
|
|
||||||
|
final goalPlans = await fetchGoalPlans();
|
||||||
|
goalPlans[widget.subject.id] =
|
||||||
|
selectedRoute!.dbString;
|
||||||
|
|
||||||
|
await dbProvider.userStore.storeSubjectGoalPlans(
|
||||||
|
goalPlans,
|
||||||
|
userId: user.id!);
|
||||||
|
|
||||||
|
Navigator.of(context).pop();
|
||||||
},
|
},
|
||||||
fillColor: Theme.of(context).colorScheme.primary,
|
fillColor: Theme.of(context).colorScheme.primary,
|
||||||
shape: const StadiumBorder(),
|
shape: const StadiumBorder(),
|
Loading…
x
Reference in New Issue
Block a user