editable label & color
This commit is contained in:
@@ -95,6 +95,8 @@ class ChartBloc extends Bloc<ChartEvent, ChartState> {
|
||||
categoriesTotals[transaction.category] = categoryTotal;
|
||||
}
|
||||
|
||||
accountsTotals.removeWhere((key, value) => value.round() == 0);
|
||||
|
||||
return _computeStateScopedStats(state.copyWith(
|
||||
transactionsLines: transactionsLines,
|
||||
globalTotal: globalTotal,
|
||||
|
||||
@@ -1,6 +1,5 @@
|
||||
import 'package:flutter/material.dart';
|
||||
import 'package:flutter_bloc/flutter_bloc.dart';
|
||||
import 'package:intl/intl.dart';
|
||||
import 'package:krezus/domains/budget/budget_bloc.dart';
|
||||
import 'package:krezus/pages/budgets/widgets/budget_cards.dart';
|
||||
import 'package:krezus/pages/budgets/widgets/budget_compare_selector.dart';
|
||||
|
||||
@@ -25,7 +25,7 @@ class BudgetMaker extends StatelessWidget {
|
||||
keyboardType: const TextInputType.numberWithOptions(decimal: false),
|
||||
decoration: InputDecoration(
|
||||
icon: const Icon(Icons.euro),
|
||||
hintText: '\$\$\$',
|
||||
label: const Text('Revenu par mois'),
|
||||
border: OutlineInputBorder(
|
||||
borderRadius: BorderRadius.circular(5),
|
||||
),
|
||||
|
||||
22
lib/pages/budgets/widgets/budget_projection.dart
Normal file
22
lib/pages/budgets/widgets/budget_projection.dart
Normal file
@@ -0,0 +1,22 @@
|
||||
import 'package:flutter/material.dart';
|
||||
import 'package:flutter_bloc/flutter_bloc.dart';
|
||||
import 'package:krezus/domains/budget/budget_bloc.dart';
|
||||
import 'package:krezus/pages/common/titled_container.dart';
|
||||
|
||||
class BudgetProjection extends StatelessWidget {
|
||||
const BudgetProjection({super.key});
|
||||
|
||||
@override
|
||||
Widget build(BuildContext context) {
|
||||
return BlocBuilder<BudgetBloc, BudgetState>(
|
||||
builder: (context, state) => TitledContainer(
|
||||
title: 'Projection',
|
||||
child: Column(
|
||||
children: [
|
||||
|
||||
],
|
||||
)
|
||||
),
|
||||
);
|
||||
}
|
||||
}
|
||||
100
lib/pages/common/editable_color.dart
Normal file
100
lib/pages/common/editable_color.dart
Normal file
@@ -0,0 +1,100 @@
|
||||
import 'package:flutter/material.dart';
|
||||
|
||||
class EditableColor extends StatelessWidget {
|
||||
final Color color;
|
||||
final ValueChanged<Color>? onChanged;
|
||||
|
||||
const EditableColor({super.key, required this.color, this.onChanged});
|
||||
|
||||
@override
|
||||
Widget build(BuildContext context) {
|
||||
return IconButton(
|
||||
onPressed: () => EditableColorDialog.show(context, color, onChanged),
|
||||
icon: const Icon(Icons.palette),
|
||||
color: color,
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
class EditableColorDialog extends StatefulWidget {
|
||||
final Color initialColor;
|
||||
final ValueChanged<Color>? onChanged;
|
||||
|
||||
const EditableColorDialog({super.key, required this.initialColor, this.onChanged});
|
||||
|
||||
static void show(BuildContext context, Color color, ValueChanged<Color>? onChanged) {
|
||||
showDialog(
|
||||
context: context,
|
||||
barrierDismissible: false,
|
||||
useRootNavigator: false,
|
||||
builder: (context) => EditableColorDialog(initialColor: color, onChanged: onChanged)
|
||||
);
|
||||
}
|
||||
|
||||
static void hide(BuildContext context) => Navigator.pop(context);
|
||||
|
||||
@override
|
||||
State<EditableColorDialog> createState() => _EditableColorDialogState();
|
||||
}
|
||||
|
||||
class _EditableColorDialogState extends State<EditableColorDialog> {
|
||||
Color? color;
|
||||
|
||||
List<Widget> _buildColorList() {
|
||||
return colors.map((color) => IconButton(
|
||||
onPressed: () => setState(() => this.color = color),
|
||||
icon: Icon(
|
||||
color.value == this.color?.value ? Icons.radio_button_checked : Icons.radio_button_off,
|
||||
color: color,
|
||||
)
|
||||
)).toList();
|
||||
}
|
||||
|
||||
@override
|
||||
Widget build(BuildContext context) {
|
||||
color ??= widget.initialColor;
|
||||
return AlertDialog(
|
||||
actions: [
|
||||
IconButton(
|
||||
onPressed: () => EditableColorDialog.hide(context),
|
||||
icon: const Icon(Icons.close)
|
||||
),
|
||||
IconButton(
|
||||
onPressed: () {
|
||||
EditableColorDialog.hide(context);
|
||||
if (color != null && widget.onChanged != null) {
|
||||
widget.onChanged!(color!);
|
||||
}
|
||||
},
|
||||
icon: const Icon(Icons.save)
|
||||
),
|
||||
],
|
||||
title: const Text('Edit color'),
|
||||
content: Row(
|
||||
children: _buildColorList(),
|
||||
),
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
const List<Color> colors = [
|
||||
Colors.black,
|
||||
Colors.white,
|
||||
Colors.red,
|
||||
Colors.pink,
|
||||
Colors.purple,
|
||||
Colors.indigo,
|
||||
Colors.blue,
|
||||
Colors.lightBlue,
|
||||
Colors.cyan,
|
||||
Colors.teal,
|
||||
Colors.green,
|
||||
Colors.lime,
|
||||
Colors.yellow,
|
||||
Colors.amber,
|
||||
Colors.orange,
|
||||
Colors.deepOrange,
|
||||
Colors.brown,
|
||||
Colors.grey,
|
||||
Colors.blueGrey,
|
||||
];
|
||||
74
lib/pages/common/editable_label.dart
Normal file
74
lib/pages/common/editable_label.dart
Normal file
@@ -0,0 +1,74 @@
|
||||
import 'package:flutter/material.dart';
|
||||
|
||||
class EditableLabel extends StatefulWidget {
|
||||
final String initialValue;
|
||||
final String? hintText;
|
||||
final ValueChanged<String>? onChanged;
|
||||
final TextInputType? keyboardType;
|
||||
|
||||
const EditableLabel({super.key, required this.initialValue, this.onChanged, this.hintText, this.keyboardType});
|
||||
|
||||
@override
|
||||
State<EditableLabel> createState() => _EditableLabelState();
|
||||
}
|
||||
|
||||
class _EditableLabelState extends State<EditableLabel> {
|
||||
bool editMode = false;
|
||||
String? value;
|
||||
|
||||
Widget _editMode() {
|
||||
return Row(
|
||||
children: [
|
||||
SizedBox(
|
||||
width: 200,
|
||||
height: 50,
|
||||
child: TextFormField(
|
||||
keyboardType: widget.keyboardType,
|
||||
decoration: InputDecoration(
|
||||
hintText: widget.hintText,
|
||||
border: OutlineInputBorder(
|
||||
borderRadius: BorderRadius.circular(5),
|
||||
),
|
||||
),
|
||||
initialValue: widget.initialValue,
|
||||
onChanged: (value) => this.value = value,
|
||||
)
|
||||
),
|
||||
IconButton(
|
||||
onPressed: () => setState(() {
|
||||
editMode = !editMode;
|
||||
}),
|
||||
icon: const Icon(Icons.close),
|
||||
),
|
||||
IconButton(
|
||||
onPressed: () => setState(() {
|
||||
editMode = !editMode;
|
||||
if (value != null && widget.onChanged != null) {
|
||||
widget.onChanged!(value!);
|
||||
}
|
||||
}),
|
||||
icon: const Icon(Icons.save),
|
||||
),
|
||||
],
|
||||
);
|
||||
}
|
||||
|
||||
Widget _readMode() {
|
||||
return Row(
|
||||
children: [
|
||||
Text(widget.initialValue),
|
||||
IconButton(
|
||||
onPressed: () => setState(() {
|
||||
editMode = !editMode;
|
||||
}),
|
||||
icon: const Icon(Icons.edit),
|
||||
),
|
||||
],
|
||||
);
|
||||
}
|
||||
|
||||
@override
|
||||
Widget build(BuildContext context) {
|
||||
return editMode ? _editMode() : _readMode();
|
||||
}
|
||||
}
|
||||
@@ -1,6 +1,8 @@
|
||||
import 'package:flutter/material.dart';
|
||||
import 'package:flutter_bloc/flutter_bloc.dart';
|
||||
import 'package:krezus/domains/account/account_bloc.dart';
|
||||
import 'package:krezus/pages/common/editable_color.dart';
|
||||
import 'package:krezus/pages/common/editable_label.dart';
|
||||
import 'package:krezus/pages/common/titled_container.dart';
|
||||
import 'package:krezus/repositories/metadata/models/account.dart';
|
||||
|
||||
@@ -10,10 +12,9 @@ class AccountSettings extends StatelessWidget {
|
||||
List<Widget> _computeCategoryList(BuildContext context, List<Account> accounts) {
|
||||
return accounts.map((account) => Row(
|
||||
children: [
|
||||
IconButton(
|
||||
onPressed: () {},
|
||||
icon: const Icon(Icons.palette),
|
||||
EditableColor(
|
||||
color: account.rgbToColor(),
|
||||
onChanged: (color) => context.read<AccountBloc>().add(AccountEditColor(account, color.value.toRadixString(16).toUpperCase().padLeft(8, '0'))),
|
||||
),
|
||||
IconButton(
|
||||
onPressed: () => context.read<AccountBloc>().add(AccountEditSaving(account, !account.saving)),
|
||||
@@ -22,11 +23,12 @@ class AccountSettings extends StatelessWidget {
|
||||
),
|
||||
Container(width: 5),
|
||||
Expanded(
|
||||
child: Text(account.label)
|
||||
child: EditableLabel(
|
||||
initialValue: account.label,
|
||||
onChanged: (value) => context.read<AccountBloc>().add(AccountEditLabel(account, value)),
|
||||
hintText: 'Acount name',
|
||||
keyboardType: TextInputType.text,
|
||||
),
|
||||
IconButton(
|
||||
onPressed: () {},
|
||||
icon: const Icon(Icons.edit),
|
||||
),
|
||||
IconButton(
|
||||
onPressed: () => context.read<AccountBloc>().add(AccountRemove(account)),
|
||||
|
||||
@@ -1,6 +1,8 @@
|
||||
import 'package:flutter/material.dart';
|
||||
import 'package:flutter_bloc/flutter_bloc.dart';
|
||||
import 'package:krezus/domains/category/category_bloc.dart';
|
||||
import 'package:krezus/pages/common/editable_color.dart';
|
||||
import 'package:krezus/pages/common/editable_label.dart';
|
||||
import 'package:krezus/pages/common/titled_container.dart';
|
||||
import 'package:krezus/repositories/metadata/models/category.dart';
|
||||
|
||||
@@ -10,10 +12,9 @@ class CategoriesSettings extends StatelessWidget {
|
||||
List<Widget> _computeCategoryList(BuildContext context, List<Category> categories) {
|
||||
return categories.map((category) => Row(
|
||||
children: [
|
||||
IconButton(
|
||||
onPressed: () {},
|
||||
icon: const Icon(Icons.palette),
|
||||
EditableColor(
|
||||
color: category.rgbToColor(),
|
||||
onChanged: (color) => context.read<CategoryBloc>().add(CategoryEditColor(category, color.value.toRadixString(16).toUpperCase().padLeft(8, '0'))),
|
||||
),
|
||||
IconButton(
|
||||
onPressed: () => context.read<CategoryBloc>().add(CategoryEditTransfert(category, !category.transfert)),
|
||||
@@ -27,11 +28,12 @@ class CategoriesSettings extends StatelessWidget {
|
||||
),
|
||||
Container(width: 5),
|
||||
Expanded(
|
||||
child: Text(category.label)
|
||||
child: EditableLabel(
|
||||
initialValue: category.label,
|
||||
onChanged: (value) => context.read<CategoryBloc>().add(CategoryEditLabel(category, value)),
|
||||
hintText: 'Acount name',
|
||||
keyboardType: TextInputType.text,
|
||||
),
|
||||
IconButton(
|
||||
onPressed: () {},
|
||||
icon: const Icon(Icons.edit),
|
||||
),
|
||||
IconButton(
|
||||
onPressed: () => context.read<CategoryBloc>().add(CategoryRemove(category)),
|
||||
|
||||
@@ -16,7 +16,7 @@ class ImportSettings extends StatelessWidget {
|
||||
children: [
|
||||
FilledButton.icon(
|
||||
onPressed: () => context.read<AccountBloc>().add(const ClearData()),
|
||||
label: const Text('ClearData'),
|
||||
label: const Text('Clear all data'),
|
||||
icon: const Icon(Icons.delete_forever),
|
||||
),
|
||||
const SizedBox(height: 5),
|
||||
|
||||
@@ -80,6 +80,8 @@ class StatsPage extends StatelessWidget {
|
||||
child: SizedBox(
|
||||
height: 450,
|
||||
child: Row(
|
||||
mainAxisAlignment: MainAxisAlignment.center,
|
||||
crossAxisAlignment: CrossAxisAlignment.center,
|
||||
children: [
|
||||
CategoriesTotalsChart(categoriesTotals: state.scopedCategoriesPositiveTotals, categoriesTotalsPercents: state.scopedSimplifiedCategoriesPositiveTotalsPercents),
|
||||
CategoriesTotalsChart(categoriesTotals: state.scopedCategoriesNegativeTotals, categoriesTotalsPercents: state.scopedSimplifiedCategoriesNegativeTotalsPercents),
|
||||
|
||||
@@ -15,13 +15,13 @@ class TransactionForm extends StatelessWidget {
|
||||
mainAxisSize: MainAxisSize.min,
|
||||
children: [
|
||||
_TransactionDateInput(),
|
||||
const SizedBox(height: 10,),
|
||||
const SizedBox(height: 35,),
|
||||
_TransactionCategoryInput(),
|
||||
const SizedBox(height: 10,),
|
||||
const SizedBox(height: 35,),
|
||||
_TransactionDescriptionInput(),
|
||||
const SizedBox(height: 10,),
|
||||
const SizedBox(height: 35,),
|
||||
_TransactionAccountInput(),
|
||||
const SizedBox(height: 10,),
|
||||
const SizedBox(height: 35,),
|
||||
_TransactionValueInput()
|
||||
],
|
||||
);
|
||||
@@ -53,7 +53,7 @@ class _TransactionDateInput extends StatelessWidget {
|
||||
},
|
||||
decoration: InputDecoration(
|
||||
icon: const Icon(Icons.calendar_month),
|
||||
hintText: 'Date',
|
||||
label: const Text('Date'),
|
||||
errorText: state.transactionDate.isNotValid ? state.transactionDate.error?.message : null,
|
||||
border: OutlineInputBorder(
|
||||
borderRadius: BorderRadius.circular(5),
|
||||
@@ -79,7 +79,7 @@ class _TransactionCategoryInput extends StatelessWidget {
|
||||
items: categoryState.categories.map((e) => DropdownMenuItem(value: e.label, child: Text(e.label))).toList(),
|
||||
decoration: InputDecoration(
|
||||
icon: const Icon(Icons.category),
|
||||
hintText: 'Category',
|
||||
label: const Text('Category'),
|
||||
errorText: state.transactionCategory.isNotValid ? state.transactionCategory.error?.message : null,
|
||||
border: OutlineInputBorder(
|
||||
borderRadius: BorderRadius.circular(5),
|
||||
@@ -101,7 +101,7 @@ class _TransactionDescriptionInput extends StatelessWidget {
|
||||
child: TextFormField(
|
||||
decoration: InputDecoration(
|
||||
icon: const Icon(Icons.description),
|
||||
hintText: 'Description',
|
||||
label: const Text('Description'),
|
||||
errorText: state.transactionDescription.isNotValid ? state.transactionDescription.error?.message : null,
|
||||
border: OutlineInputBorder(
|
||||
borderRadius: BorderRadius.circular(5),
|
||||
@@ -129,7 +129,7 @@ class _TransactionAccountInput extends StatelessWidget {
|
||||
items: accountState.accounts.map((e) => DropdownMenuItem(value: e.label, child: Text(e.label))).toList(),
|
||||
decoration: InputDecoration(
|
||||
icon: const Icon(Icons.account_box),
|
||||
hintText: 'Account',
|
||||
label: const Text('Account'),
|
||||
errorText: state.transactionAccount.isNotValid ? state.transactionAccount.error?.message : null,
|
||||
border: OutlineInputBorder(
|
||||
borderRadius: BorderRadius.circular(5),
|
||||
@@ -152,7 +152,7 @@ class _TransactionValueInput extends StatelessWidget {
|
||||
keyboardType: TextInputType.number,
|
||||
decoration: InputDecoration(
|
||||
icon: const Icon(Icons.euro),
|
||||
hintText: '\$\$\$',
|
||||
label: const Text('\$\$\$'),
|
||||
errorText: state.transactionValue.isNotValid ? state.transactionValue.error?.message : null,
|
||||
border: OutlineInputBorder(
|
||||
borderRadius: BorderRadius.circular(5),
|
||||
|
||||
@@ -4,11 +4,13 @@ class Account {
|
||||
String label;
|
||||
String color;
|
||||
bool saving;
|
||||
double interest;
|
||||
|
||||
Account({
|
||||
this.label = '',
|
||||
this.color = '',
|
||||
this.saving = false,
|
||||
this.interest = 0.0,
|
||||
});
|
||||
|
||||
factory Account.fromJson(Map<String, dynamic> json) {
|
||||
@@ -16,6 +18,7 @@ class Account {
|
||||
label: json['label'],
|
||||
color: json['color'],
|
||||
saving: bool.parse(json['saving']),
|
||||
interest: double.parse(json['intereset']),
|
||||
);
|
||||
}
|
||||
|
||||
@@ -23,6 +26,7 @@ class Account {
|
||||
'label': label,
|
||||
'color': color,
|
||||
'saving': saving.toString(),
|
||||
'intereset': interest.toString(),
|
||||
};
|
||||
|
||||
Color rgbToColor() {
|
||||
|
||||
Reference in New Issue
Block a user