Skip to content

Conversation

athomas
Copy link
Member

@athomas athomas commented Oct 15, 2025

AI slop below:

Summary

The proposed design refactors the project into a "Feature-First" structure. This will improve the organization of the code by grouping related files into feature-specific directories. A clear separation between features, shared code, and the data layer will be established, making the project more scalable and maintainable.

New Directory Structure

lib/
├── main.dart
└── src/
    ├── app/
    │   ├── app.dart
    │   ├── app_router.dart
    │   ├── auth_service.dart
    │   └── firebase_options.dart
    │
    ├── data/
    │   ├── models/
    │   │   ├── comment.dart
    │   │   ├── filter.dart
    │   │   ├── review.dart
    │   │   └── try_build.dart
    │   └── services/
    │       ├── firestore_service.dart
    │       └── results_service.dart
    │
    ├── features/
    │   ├── results_overview/
    │   │   ├── data/
    │   │   │   └── results_repository.dart
    │   │   └── widgets/
    │   │       ├── filter_ui.dart
    │   │       └── instructions.dart
    │   │
    │   └── try_results/
    │       ├── data/
    │       │   └── try_results_repository.dart
    │       └── widgets/
    │           └── try_results_screen.dart
    │
    └── shared/
        ├── generated/
        │   └── query.pb.dart
        ├── platform/
        │   ├── url_strategy_stub.dart
        │   └── url_strategy_web.dart
        └── widgets/
            ├── app_bar_actions.dart
            ├── results_view.dart
            └── results_widgets.dart

References

@athomas athomas marked this pull request as ready for review October 16, 2025 08:20
@athomas athomas requested a review from goderbauer October 16, 2025 08:20
Copy link

@goderbauer goderbauer left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I didn't evaluate this new structure carefully, if it works for you: RSLGTM.

@athomas athomas merged commit cb84814 into main Oct 16, 2025
4 checks passed
@athomas athomas deleted the refactor/project-structure branch October 16, 2025 10:43
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants