Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[UI] Code Structure reformatting #89

Open
JulienElkaim opened this issue Oct 14, 2023 · 0 comments
Open

[UI] Code Structure reformatting #89

JulienElkaim opened this issue Oct 14, 2023 · 0 comments
Assignees
Labels
documentation Improvements or additions to documentation enhancement New feature or request

Comments

@JulienElkaim
Copy link
Contributor

JulienElkaim commented Oct 14, 2023

Should reformat the code to make it more scalable and easy to navigate for new joiners.

lib/
│
├── app/
│   │
│   ├── flows/
│   │   ├── nav/
│   │   │   ├── flows_nav_item.dart
│   │   │   └── flows_nav.dart
│   │   ├── pages/
│   │   │   ├── flows_page.dart
│   │   │   └── providers.dart
│   │   └- providers.dart
│   │
│   │
│   ├── stages/
│   │   ├── nav/
│   │   │   ├── stages_nav_item.dart
│   │   │   └── stages_nav.dart
│   │   ├── pages/
│   │   │   ├── stages_page.dart
│   │   │   └── providers.dart
│   │   └- providers.dart
│   │
│   │
│   ├── home/
│   │   ├── home.dart
│   │   ├── nav.dart
│   │   ├── page_area.dart
│   │   └── providers.dart
│   │
│   │
│   ├── settings/
│   │   ├── nav/
│   │   │   └── ...
│   │   ├── pages/
│   │   │   └── ...
│   │   ├── settings_home.dart
│   │   └── providers.dart
│   │
│   │
│   └── app.dart
│
│
│
├── core/
│   │
│   ├── config/
│   │
│   │
│   ├── domain/
│   │   ├── flows/
│   │   │   ├── services/
│   │   │   │   ├── flow_service.dart
│   │   │   │   └── flow_runs_service.dart
│   │   │   ├── models/
│   │   │   │   ├── flow.dart
│   │   │   │   ├── flow_runs.dart
│   │   │   │   └── ...
│   │   │   └── providers.dart
│   │   │   
│   │   │   
│   │   ├── stages/
│   │   │   ├── services/
│   │   │   │   ├── stage_service.dart
│   │   │   │   └── stage_runs_service.dart
│   │   │   ├── models/
│   │   │   │   ├── stage.dart
│   │   │   │   ├── stage_runs.dart
│   │   │   │   └── ...
│   │   │   └── providers.dart
│   │   │   
│   │   │   
│   │   ├── logs/
│   │   │   ├── services/
│   │   │   │   ├── logger.dart
│   │   │   │   └── log_manager.dart
│   │   │   ├── models/
│   │   │   │   ├── log.dart
│   │   │   │   ├── log_level.dart
│   │   │   │   └── ...
│   │   │   └── providers.dart
│   │   │   
│   │   │   
│   │   └── servers/
│   │       ├── services/
│   │       │   ├── server_connector.dart
│   │       │   └── server_service.dart
│   │       ├── model/
│   │       │   ├── server.dart
│   │       │   ├── embedded_server.dart
│   │       │   ├── remote_server.dart
│   │       │   └── ...
│   │       └── providers.dart
│   │    
│   │    
│   ├── utils/
│   │   ├── icons/
│   │   │   └── font_icons/
│   │   │       ├── items/
│   │   │       │      ├── items-config.json
│   │   │       │      └── items_icons.dart
│   │   │       └── bulo_logo/
│   │   │              ├── bulo-logo-config.json
│   │   │              └── bulo_logo_icons.dart
│   │   ├── extensions/
│   │   │   └── string_extension.dart
│   │   └── current_system.dart
│   │    
│   │    
│   └── widgets/
│       ├── cards/
│       │   └── ...
│       ├── extensions/
│       │   └── neumorphic_extension.dart
│       ├── forms/
│       │   └── ...
│       ├── interactions/
│       │   ├── popup/
│       │   │   ├── bulo_popup_menu.dart
│       │   │   └── bulo_popup_menu_items.dart
│       │   │
│       │   ├── buttons/
│       │   │   ├── action_button.dart
│       │   │   └── error_button.dart
│       │   │
│       │   └── clickable.dart
│       ├── modals/
│       │   └── modal_framework.dart
│       └── splitters/
│           └── ...
│
│
└──main.dart

Also read about Feature first and consider doing it

@JulienElkaim JulienElkaim converted this from a draft issue Oct 14, 2023
@JulienElkaim JulienElkaim self-assigned this Oct 14, 2023
@JulienElkaim JulienElkaim added documentation Improvements or additions to documentation enhancement New feature or request labels Oct 14, 2023
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
documentation Improvements or additions to documentation enhancement New feature or request
Projects
Status: 🏗 In progress
Development

No branches or pull requests

2 participants