dev_bloc #1

Merged
Sanders merged 35 commits from dev_bloc into master 2025-07-13 00:17:45 +03:00
35 Commits
Author SHA1 Message Date
Sanders 2fca5203e2 Improves SMS message display and interaction
Enhances the SMS message widget to provide a richer user experience.

Adds sender information, formatted date, message processing status and actions.
Includes localization support for new UI elements.
2025-07-13 00:16:21 +03:00
Sanders c23a3db59d Adds SMS processing settings
Adds a popup menu to SMS messages to allow access to processing settings.

This commit introduces the "Processing settings" option within a context menu
that appears when an SMS message is tapped. This prepares the UI for future
implementation of SMS processing configuration.
2025-07-12 23:53:50 +03:00
Sanders 85daede4a9 Implements authentication flow with user registration
This commit implements a complete authentication flow, including user registration.

- Introduces an `AuthRegisterRequested` event to handle user registration.
- Persists the user ID in settings upon successful authentication.
- Modifies `AuthBloc` to load the user based on the stored ID, improving app launch persistence.
- Refactors `UserCubit` to only manage the user state and removes authentication logic.
- Removes `UserCubit` initialization from `main.dart` and triggers `AuthStarted` to initiate the authentication process.
2025-07-12 22:40:31 +03:00
Sanders fd0c3dd9a8 Removes user-specific repository methods
Removes the now-unnecessary user-specific methods from the category and tag repositories. The repositories are now user-specific at the box level, so filtering by user ID within the repository methods is redundant.

Also, removes now-unused imports related to user logic in category and tag list pages, and the add transaction dialog.
2025-07-12 21:56:39 +03:00
Sanders 8b75299d41 Refactors data repositories for single-user mode
This commit refactors the data repositories to remove user-specific filtering. It simplifies the data access logic by retrieving all data from the Hive boxes and removing the need to filter by `userId` in the repository methods.

This change makes the app function in single-user mode and removes the need to manage multiple user contexts within the data layer.

Specifically:
- Removes `userId` parameter from repository methods.
- Updates the setting repository to use fixed keys.
- Removes user ID filtering from queries.
- Removes user ID parameters from Cubits and Blocs
- Updates initial data creation
2025-07-12 21:54:00 +03:00
Sanders fe61b50494 Fix navigation to CategoryListPage 2025-07-10 18:23:18 +03:00
Sanders 4b814a807d Update CategoryListPage to use CategoryCubit with userId 2025-07-10 18:23:18 +03:00
Sanders 193b79b38d Remove unused toMap and fromMap methods in User model 2025-07-10 18:23:17 +03:00
Sanders c829b0e6f5 Refactor CategoryCubit to manage user-specific categories 2025-07-10 18:23:17 +03:00
Sanders adafdb88f8 Improve error handling in HiveCategoryRepository 2025-07-10 18:23:17 +03:00
Sanders 4edde8a01b Remove manual adapter registration from HiveService 2025-07-10 18:23:17 +03:00
Sanders 56428e9a66 Register DateTime adapter for Hive 2025-07-10 18:23:17 +03:00
Sanders 1ceacf88fb Refactors HiveService and dependency injection
Improves the management of Hive boxes by introducing separate initialization for global and user-specific data.

This change enhances data isolation and allows for dynamic dependency injection based on the authentication state. It introduces `initGlobalDependencies` and `initUserSpecificDependencies` to manage the application's dependencies. User-scoped repositories and cubits are now registered/unregistered upon login/logout. The UserCubit is updated to allow dynamic injection of user-specific repositories after authentication. The TagCubit is refactored to use a repository.
2025-07-09 23:26:00 +03:00
Sanders 8040839ba3 Adds SMS handler settings to Hive
Adds the necessary classes and configurations to store and retrieve SMS handler settings using Hive database.

This includes registering the `SmsHandlerSettings` model, its adapter, and related enum adapters with Hive, opening a new box for storing settings and making it accessible via `HiveService`. Additionally, this change registers a new repository for accessing sms handler settings data.
2025-07-09 22:30:26 +03:00
Sanders d19f58d65e Adds user ID to SMS messages
Ensures SMS messages are associated with a specific user by adding a `userId` field to the `SmsMessage` model and passing the user ID when retrieving SMS messages.

This change ensures that SMS messages are correctly linked to the user they belong to, which is necessary for filtering and displaying the appropriate messages. It retrieves the user ID from the `UserCubit` state. Handles the case where the user state is not loaded, emitting an error state.
2025-07-09 22:06:28 +03:00
Sanders c997feac4a Fix login and settings 2025-07-07 18:44:08 +03:00
Sanders 4670cdf5fb Fix for loop 2025-07-07 18:11:03 +03:00
Sanders 9bae137d08 Refactors user management to use UserCubit
This commit refactors the user management system to utilize UserCubit, improving state management and separation of concerns.

- Replaces UserService with UserCubit for managing user state.
- Introduces AppSettings and GlobalSettings models and repositories for managing app-level settings and configurations.
- Modifies dependency injection to register the new repositories and cubits.
- Updates UI components (LoginPage, SettingsPage, HomePage, AddTransactionDialog, CategoryListPage, TagListPage) to interact with UserCubit and SettingsCubit.
- Removes direct dependency on UserRepository in favor of UserCubit for accessing user information.
- Streamlines the authentication process by using UserCubit to handle user creation and login.
- Improves settings management by using dedicated repositories and cubits for app settings.
2025-07-07 00:29:15 +03:00
Sanders a89ab1c910 Adds SMS message loading and processing
Implements the ability to load and process SMS messages to automatically create transaction records.

This includes:
- Adding an `SmsMessage` model and Hive adapter.
- Creating an `ISmsMessageRepository` and its Hive implementation.
- Integrating SMS loading functionality into the `SmsCubit`.
- Adding a UI element in settings to trigger SMS loading.
- Persisting last SMS sync time in user preferences.
2025-07-03 16:21:19 +03:00
Sanders f304660c74 fix 2025-06-30 17:49:46 +03:00
Sanders 368c62f3fb Adds category type functionality
Implements category type selection (income/expense) during category creation/editing.

This enhancement introduces a switch to define categories as either income or expense, providing more granular control over financial tracking.
It also includes localization support for new strings ("Icon", "Category type", "Add category").
A random color and icon are assigned to new categories for better user experience.
Finally, uses AnimatedList for categories in the list page.
2025-06-30 17:48:54 +03:00
Sanders 6da0da45b7 Adds category management feature
Adds the ability to manage categories in the settings page. This includes:
- Registers CategoryCubit in the dependency injection container.
- Introduces a new CategoryListPage for editing categories.
- Adds translations for category management related text.
- Adds unselected icon color to the theme.
- Updates the date format in the transaction dialog.
2025-06-30 15:59:43 +03:00
Sanders 829ca93d9b Adds SMS reading functionality
Implements SMS reading functionality to automatically track expenses.

- Adds necessary permissions for reading SMS messages in AndroidManifest.xml.
- Registers SmsService and SmsCubit in the dependency injection container.
- Adds a new SMS page to the bottom navigation bar.
- Introduces new localization strings for the SMS page title and permission denied message.
- Sets minSdk to 23.
2025-06-30 13:40:52 +03:00
Sanders 5ff11c5449 Improves transaction input and display
Adds a tag selection to transaction dialog and refines the display of transactions.

The changes introduce the ability to tag transactions, improving categorization and filtering.
It also modifies the transaction input dialog to include time, as well as refines the appearance of transaction items on the home page by using a custom widget wrapped in a card.

The UI of the summary widget is also improved by using theme colors and increasing the overall visibility.
2025-06-30 10:26:27 +03:00
Sanders 4ceb710782 fix 2025-06-29 23:34:57 +03:00
Sanders 82af8ac11a Adds localization support with English and Russian
Initializes internationalization (i18n) for the application.

Introduces `AppLocalizations` to manage localized strings, along with
English and Russian translations.

Configures Flutter to use the localization delegates and supported locales.
This allows the app to display text in the user's preferred language.
2025-06-29 23:04:28 +03:00
Sanders 42f8e20bf0 Improves: Internationalization and data models
- Adds new localization keys for transaction details.
- Deletes obsolete localization files, switching to a single ARB file per language.
- Adds `Equatable` to data models (`Category`, `Tag`, `TransactionRecord`, `User`) for improved state management and change detection.
- Introduces the transaction creation dialog.
- Adds development note to GEMINI.md

Improves internationalization and data models

- Adds new localization keys for transaction details, supporting enhanced user experience.
- Migrates to single ARB file for each language, streamlining the localization process.
- Implements Equatable in data models (Category, Tag, TransactionRecord, User) for improved state management and simplified change detection.
- Introduces transaction creation dialog, simplifying the transaction creation process.
- Adds development note to GEMINI.md
2025-06-29 23:03:17 +03:00
Sanders e0cb2d1e2c Fix summary 2025-06-29 13:07:39 +03:00
Sanders f2f9f7871f Add summary 2025-06-28 13:47:47 +03:00
Sanders 145e57f410 Small fixes 2025-06-28 00:49:21 +03:00
Sanders 14a69200d3 Small fixes 2025-06-28 00:02:41 +03:00
Sanders 65fe73b396 Transfer settings to user 2025-06-27 23:31:16 +03:00
Sanders 0d64d4ca0e Add cubit settings 2025-06-27 22:28:12 +03:00
Sanders 5856b59b54 Language 2025-06-27 18:42:02 +03:00
Sanders b2c8189cb2 Add bloc 2025-06-27 16:42:12 +03:00