This project is the web-client application for the phenology observation offer PhaenoNet by GLOBE Switzerland.
PhaenoNet is set up with two Firebase projects instances. These projects have a separate Firestore and storage instance as well as access rules.
- phaenonet as the production instance
- phaenonet-test as the test instance
This structure organizes the app into core
, shared
, and domain
areas, each serving distinct purposes.
/
├── src/
│ ├── app/
│ │ ├── core/ # Core application services and utilities
│ │ │ ├── components/ # Core reusable components
│ │ │ ├── providers/ # App-wide providers (e.g., global error handler)
│ │ │ ├── services/ # Singleton services (e.g., auth service)
│ │ │ ├── models/ # App-wide data models
│ │ │ └── utils/ # Utility functions and helpers
│ │ │
│ │ ├── shared/ # Shared resources across modules
│ │ │ ├── components/ # Shared UI components
│ │ │ ├── services/ # Reusable, stateless services
│ │ │ ├── models/ # Shared data models
│ │ │ └── utils/ # Utility functions and helpers
│ │ │
│ │ ├── domains/ # Business domains and feature areas
│ │ │ ├── auth/ # Authentication domain
│ │ │ │ ├── feature-login/ # Specific feature, e.g., login
│ │ │ │ └── shared/ # Auth domain-specific shared items
│ │ │ ├── individual/ # Individual user-related domain
│ │ │ │ └── feature-profile/ # Feature folder for profile functions
│ │ │ ├── map/ # Map domain
│ │ │ ├── profile/ # Profile domain
: : : └── statistics/ # Statistics domain
- page: Components that have a route (e.g.,
login.page.ts
). - widget: "Smart" components interacting with services or managing complex data (e.g.,
user.widget.ts
). - component: "Dumb" UI-only components that e.g. communicate via
@Input()
and@Output()
(e.g.,button.component.ts
).
The CSS is developed according to BEM.
e.g.
individual-detail.component.html (with the Block individual-detail
and the element header
):
<div class="individual-detail">
<div class="individual-detail__header">...</div>
</div>
individual-detail.component.scss:
.individual-detail {
@include detail-view &__header {
// the `&` will be replaced with the parent selector, so this will become `individual-detail__header`
@include left-right-padding;
}
}
mixins.scss:
@mixin detail-view {
...
}
@mixin left-right-padding{
...
}
The application will be using the database and access rules of the phaenonet-test
project for all use-cases described in this section.
Launch the Codespace in GitHub using the codespace
branch. It will checkout the master branch, initialize the submodules, and rebuild the container. This process may take some minutes to finish.
Initially copy init.json credential file for local development in the src/local/
folder.
Run a dev server.
pnpm exec ng serve --c=local
Navigate to http://localhost:4200/. The app will automatically reload if you change any of the source files.
To run e2e-test first run a local server as described in the previous chapter.
Install the required dependencies and run the tests:
pnpm --filter e2e install
pnpm --filter e2e exec codeceptjs run --steps
Test output will be located in /e2e/output
.
To run all stylelint
checks
pnpm exec stylelint "**/*.scss"
To recreate the map_pins with the '+' install imagemagick and run the script src/create_map_pins_with_plus_icon.sh
.
Whenever possible use the GitHub action deploy and channel to deploy applications to Firebase.
Code merged to the master
branch will be deployed to https://phaenonet-test.web.app/ for final acceptance. This deployment will also include all rules and indexes.
Intermediate development states of the application can be deployed to hosting channels.
pnpm exec ng build && pnpm exec firebase hosting:channel:deploy my_channel_name --project phaenonet-test
Rules and indexes for Firestore and Storage will need to be deployed manually if needed.
Be aware that the rules are shared between the hosting channel and the test
application.
pnpm exec firebase deploy --only storage,firestore --project phaenonet-test
To manually deploy a test version:
pnpm exec firebase login
pnpm exec ng build && pnpm exec firebase deploy --project phaenonet-test
git checkout v<version>
pnpm exec firebase login
rm -r node_modules && CI=true pnpm install && pnpm exec ng build --c=production && pnpm exec firebase deploy --project phaenonet