Commit 92ffbd9
authored
feat: enhance meeting cards with participant response breakdown and improved link visibility (#27)
* feat: implement committee management for meetings
- Add committee association functionality to meetings with modal interface
- Display committee members with deduplication and enhanced table styling
- Prevent editing of committee members with informational messages
- Support multi-select committee dropdown with dynamic helper text
- Cache committee member data to optimize API calls
- Show voting columns only when committees have voting enabled
🤖 Generated with [Claude Code](https://claude.ai/code)
Signed-off-by: Asitha de Silva <[email protected]>
* refactor: optimize committee modal table and member display
- Fix incorrect colspan calculation using computed property
- Replace forEach with flatMap for better performance in member collection
- Implement single-pass deduplication instead of array mutation
- Add duplicate committee name prevention for members
🤖 Generated with [Claude Code](https://claude.ai/code)
Signed-off-by: Asitha de Silva <[email protected]>
* feat: enhance committee modal with testing support and memory leak prevention
- Add data-testid attributes to multi-select and action buttons for reliable E2E testing
- Implement takeUntilDestroyed for automatic subscription cleanup
- Follow project testing guidelines with hierarchical testid naming convention
- Prevent memory leaks in valueChanges subscription
🤖 Generated with [Claude Code](https://claude.ai/code)
Signed-off-by: Asitha de Silva <[email protected]>
* feat: enhance meeting cards with participant response breakdown and improved link visibility
- Add participants_accepted_count, participants_declined_count, and participants_pending_count fields to Meeting interface
- Update meeting card component to display response breakdown (e.g., "5 Guests (3 Attending, 1 Not Attending, 1 Pending Response)")
- Move important links outside expandable text for better visibility and immediate access
- Only show response breakdown when there are individual participants with response data
- Improve meeting organizer visibility into participation status and key meeting resources
🤖 Generated with [Claude Code](https://claude.ai/code)
Signed-off-by: Asitha de Silva <[email protected]>
---------
Signed-off-by: Asitha de Silva <[email protected]>1 parent d82de57 commit 92ffbd9
File tree
3 files changed
+55
-25
lines changed- apps/lfx-pcc/src/app/modules/project/meetings/components/meeting-card
3 files changed
+55
-25
lines changedLines changed: 22 additions & 22 deletions
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
105 | 105 | | |
106 | 106 | | |
107 | 107 | | |
| 108 | + | |
| 109 | + | |
| 110 | + | |
| 111 | + | |
| 112 | + | |
| 113 | + | |
| 114 | + | |
| 115 | + | |
| 116 | + | |
| 117 | + | |
| 118 | + | |
| 119 | + | |
| 120 | + | |
| 121 | + | |
| 122 | + | |
| 123 | + | |
| 124 | + | |
| 125 | + | |
| 126 | + | |
| 127 | + | |
| 128 | + | |
| 129 | + | |
108 | 130 | | |
109 | 131 | | |
110 | 132 | | |
111 | | - | |
112 | | - | |
113 | | - | |
114 | | - | |
115 | | - | |
116 | | - | |
117 | | - | |
118 | | - | |
119 | | - | |
120 | | - | |
121 | | - | |
122 | | - | |
123 | | - | |
124 | | - | |
125 | | - | |
126 | | - | |
127 | | - | |
128 | | - | |
129 | | - | |
130 | | - | |
131 | | - | |
132 | | - | |
133 | 133 | | |
134 | 134 | | |
135 | 135 | | |
| |||
Lines changed: 30 additions & 3 deletions
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
62 | 62 | | |
63 | 63 | | |
64 | 64 | | |
| 65 | + | |
65 | 66 | | |
66 | 67 | | |
67 | 68 | | |
| |||
188 | 189 | | |
189 | 190 | | |
190 | 191 | | |
191 | | - | |
192 | | - | |
| 192 | + | |
| 193 | + | |
| 194 | + | |
| 195 | + | |
| 196 | + | |
| 197 | + | |
| 198 | + | |
| 199 | + | |
| 200 | + | |
| 201 | + | |
| 202 | + | |
| 203 | + | |
| 204 | + | |
| 205 | + | |
| 206 | + | |
| 207 | + | |
| 208 | + | |
| 209 | + | |
| 210 | + | |
| 211 | + | |
| 212 | + | |
| 213 | + | |
| 214 | + | |
193 | 215 | | |
194 | 216 | | |
195 | | - | |
| 217 | + | |
| 218 | + | |
| 219 | + | |
| 220 | + | |
| 221 | + | |
| 222 | + | |
196 | 223 | | |
197 | 224 | | |
198 | 225 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
61 | 61 | | |
62 | 62 | | |
63 | 63 | | |
| 64 | + | |
| 65 | + | |
| 66 | + | |
64 | 67 | | |
65 | 68 | | |
66 | 69 | | |
| |||
0 commit comments