-
Couldn't load subscription status.
- Fork 0
feat(dashboard): initial core persona developer dashboard implementation #119
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
Merged
+1,833
−33
Merged
Changes from 5 commits
Commits
Show all changes
14 commits
Select commit
Hold shift + click to select a range
5a7a1fe
wip(dashboard): initial core persona developer dashboard implementation
jordane 5a4ce16
feat(dashboard): improve core developer persona dashboard UI
jordane 33b014a
fix(layout): prevent sidebar from floating during horizontal scroll
jordane 6b1ed50
style(dashboard): further reduce section header sizes
jordane 89a31a3
feat(dashboard): integrate meetings API with occurrence-based filtering
jordane 6d02a96
feat(dashboard): implement persona-based dashboard architecture
asithade 6ee11e3
refactor(sidebar): replace function calls with computed signals
asithade faf61c6
Merge branch 'main' into jme/LFXV2-644
asithade c11c8fe
fix(dashboard): resolve pr comments
asithade 52f816d
fix(yarn): yarn.lock update
asithade c245f33
feat(dashboard): implement dashboard meeting card component
asithade bd48147
refactor(dashboard): update pending actions and meeting card layout
asithade 29db102
refactor(dashboard): update my-projects with table layout
asithade 8f7b0b4
ci(gha): disable automatic quality check workflow
asithade File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
14 changes: 14 additions & 0 deletions
14
apps/lfx-one/src/app/layouts/main-layout/main-layout.component.html
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,14 @@ | ||
| <!-- Copyright The Linux Foundation and each contributor to LFX. --> | ||
| <!-- SPDX-License-Identifier: MIT --> | ||
|
|
||
| <div class="flex min-h-screen pt-20"> | ||
| <!-- Sidebar --> | ||
| <div class="w-72 flex-shrink-0"> | ||
| <lfx-sidebar [items]="sidebarItems"></lfx-sidebar> | ||
| </div> | ||
|
|
||
| <!-- Main Content Area --> | ||
| <main class="flex-1 min-w-0 transition-all duration-300" data-testid="main-content"> | ||
| <router-outlet /> | ||
| </main> | ||
| </div> |
6 changes: 6 additions & 0 deletions
6
apps/lfx-one/src/app/layouts/main-layout/main-layout.component.scss
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,6 @@ | ||
| // Copyright The Linux Foundation and each contributor to LFX. | ||
| // SPDX-License-Identifier: MIT | ||
|
|
||
| :host { | ||
| display: block; | ||
| } |
50 changes: 50 additions & 0 deletions
50
apps/lfx-one/src/app/layouts/main-layout/main-layout.component.ts
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,50 @@ | ||
| // Copyright The Linux Foundation and each contributor to LFX. | ||
| // SPDX-License-Identifier: MIT | ||
|
|
||
| import { CommonModule } from '@angular/common'; | ||
| import { Component } from '@angular/core'; | ||
| import { RouterModule } from '@angular/router'; | ||
| import { SidebarComponent } from '@components/sidebar/sidebar.component'; | ||
| import { SidebarMenuItem } from '@lfx-one/shared/interfaces'; | ||
|
|
||
| @Component({ | ||
| selector: 'lfx-main-layout', | ||
| standalone: true, | ||
| imports: [CommonModule, RouterModule, SidebarComponent], | ||
| templateUrl: './main-layout.component.html', | ||
| styleUrl: './main-layout.component.scss', | ||
| }) | ||
| export class MainLayoutComponent { | ||
| // Sidebar navigation items | ||
| protected readonly sidebarItems: SidebarMenuItem[] = [ | ||
| { | ||
| label: 'Home', | ||
| icon: 'fa-light fa-house', | ||
| routerLink: '/', | ||
| }, | ||
| { | ||
| label: 'My Meetings', | ||
| icon: 'fa-light fa-video', | ||
| routerLink: '/my-meetings', | ||
| disabled: true, | ||
| }, | ||
| { | ||
| label: 'Project Health', | ||
| icon: 'fa-light fa-heart-pulse', | ||
| routerLink: '/project-health', | ||
| disabled: true, | ||
| }, | ||
| { | ||
| label: 'Events & Community', | ||
| icon: 'fa-light fa-calendar', | ||
| routerLink: '/events-community', | ||
| disabled: true, | ||
| }, | ||
| { | ||
| label: 'Training & Certification', | ||
| icon: 'fa-light fa-book-open', | ||
| routerLink: '/training-certification', | ||
| disabled: true, | ||
| }, | ||
| ]; | ||
| } |
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.