Commit 3e04acd
committed
fix(plugins): address multiple minor issues and inconsistencies
This commit addresses several minor issues across different packages:
- **RequestContext:** Corrected a typo in the `RequestContext.currentRequest()` call.
- **Available Users Effects:** Implemented pagination for loading users by applying `slice` with `currentSkip` and `currentTake`.
- **Plugin Subscription Plan Creator:**
- Added a check for `normalizedPlanValue` to prevent errors when it's undefined.
- Corrected the spread syntax for `normalizedPlanValue.id` to ensure it's only included if `id` exists.
- **Plugin Settings Management:** Removed an unused `scope` variable.
- **Plugin Subscription Hierarchy:** Added optional chaining (`?.`) to `subscription.plan.price` to safely access the price.
- **Plugin Subscription Plan Selection:**
- Updated `window.removeEventListener` and `window.addEventListener` to use a bound handler for `handleKeyboardShortcut` to ensure correct context.
- Added optional chaining (`?.`) to `currentPlan?.id` for safe access.
- **Plan Comparison Service:** Added a check for `currentPlan` to return early if it's null.
- **Form Data Builder:**
- Filtered out falsy values from `plans` before mapping in `appendSubscriptionPlans`.
- Corrected the spread syntax for `plan.id` to ensure it's only included if `id` exists.
- **List Plugin Subscription Plans Handler:** Removed an unused `relations` variable.
- **Auto Tag Plugin Handler:** Removed an unused `overwriteExisting` option from `options`.
- **Manage Plugin Tenant Users Handler:** Adjusted logging to correctly display the number of users, handling cases where `userIds` might be null.
- **Update Plugin Command Handler:** Added optional chaining (`?.`) to all input properties being mapped to `pluginUpdate` for safer access.
- **Plugin Billing Factory:** Removed unnecessary status assignment for `PluginBillingStatus.PENDING`.
- **Plugin Subscription Access Service:** Removed the `SubscriptionValiditySpecification` as it was not being used.
- **Plugin Subscription Plan DTO:** Removed the unused `transformToNumber` helper function.1 parent 642e3a1 commit 3e04acd
File tree
15 files changed
+56
-72
lines changed- packages
- core/src/lib/core/context
- desktop-ui-lib/src/lib/settings/plugins
- component/plugin-marketplace
- +state/effects
- plugin-marketplace-upload/plugin-subscription-plan-creator
- plugin-settings-management
- plugin-subscription-hierarchy
- plugin-subscription-plan-selection
- services
- services/builders
- plugins/registry/src/lib
- application
- plugin-subscription/queries/handlers
- plugin-tag/commands/handlers
- plugin-tenant/commands/handlers
- plugin/commands/handlers
- domain
- factories
- services
15 files changed
+56
-72
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
192 | 192 | | |
193 | 193 | | |
194 | 194 | | |
195 | | - | |
| 195 | + | |
196 | 196 | | |
197 | 197 | | |
198 | 198 | | |
| |||
Lines changed: 4 additions & 1 deletion
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
76 | 76 | | |
77 | 77 | | |
78 | 78 | | |
| 79 | + | |
| 80 | + | |
| 81 | + | |
79 | 82 | | |
80 | | - | |
| 83 | + | |
81 | 84 | | |
82 | 85 | | |
83 | 86 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
508 | 508 | | |
509 | 509 | | |
510 | 510 | | |
| 511 | + | |
| 512 | + | |
| 513 | + | |
| 514 | + | |
511 | 515 | | |
512 | 516 | | |
513 | 517 | | |
514 | | - | |
| 518 | + | |
515 | 519 | | |
516 | 520 | | |
517 | 521 | | |
| |||
Lines changed: 0 additions & 1 deletion
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
146 | 146 | | |
147 | 147 | | |
148 | 148 | | |
149 | | - | |
150 | 149 | | |
151 | 150 | | |
152 | 151 | | |
| |||
Lines changed: 1 addition & 1 deletion
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
57 | 57 | | |
58 | 58 | | |
59 | 59 | | |
60 | | - | |
| 60 | + | |
61 | 61 | | |
62 | 62 | | |
63 | 63 | | |
| |||
Lines changed: 22 additions & 22 deletions
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
1 | 1 | | |
2 | 2 | | |
3 | 3 | | |
4 | | - | |
5 | | - | |
6 | | - | |
7 | | - | |
8 | | - | |
9 | | - | |
10 | | - | |
| 4 | + | |
| 5 | + | |
| 6 | + | |
| 7 | + | |
| 8 | + | |
| 9 | + | |
| 10 | + | |
11 | 11 | | |
12 | 12 | | |
13 | 13 | | |
14 | 14 | | |
15 | 15 | | |
16 | | - | |
17 | | - | |
18 | | - | |
19 | | - | |
20 | | - | |
21 | | - | |
22 | | - | |
23 | | - | |
24 | | - | |
25 | | - | |
| 16 | + | |
| 17 | + | |
| 18 | + | |
| 19 | + | |
| 20 | + | |
| 21 | + | |
| 22 | + | |
| 23 | + | |
| 24 | + | |
| 25 | + | |
26 | 26 | | |
27 | 27 | | |
28 | 28 | | |
| |||
153 | 153 | | |
154 | 154 | | |
155 | 155 | | |
156 | | - | |
| 156 | + | |
157 | 157 | | |
158 | 158 | | |
159 | 159 | | |
| |||
297 | 297 | | |
298 | 298 | | |
299 | 299 | | |
300 | | - | |
301 | | - | |
302 | 300 | | |
303 | 301 | | |
304 | 302 | | |
| |||
819 | 817 | | |
820 | 818 | | |
821 | 819 | | |
822 | | - | |
| 820 | + | |
823 | 821 | | |
824 | 822 | | |
825 | 823 | | |
| |||
837 | 835 | | |
838 | 836 | | |
839 | 837 | | |
| 838 | + | |
| 839 | + | |
840 | 840 | | |
841 | 841 | | |
842 | 842 | | |
843 | | - | |
| 843 | + | |
844 | 844 | | |
845 | 845 | | |
846 | 846 | | |
| |||
Lines changed: 6 additions & 4 deletions
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
291 | 291 | | |
292 | 292 | | |
293 | 293 | | |
294 | | - | |
295 | | - | |
296 | | - | |
297 | | - | |
| 294 | + | |
| 295 | + | |
| 296 | + | |
| 297 | + | |
| 298 | + | |
| 299 | + | |
298 | 300 | | |
299 | 301 | | |
300 | 302 | | |
| |||
Lines changed: 2 additions & 2 deletions
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
69 | 69 | | |
70 | 70 | | |
71 | 71 | | |
72 | | - | |
| 72 | + | |
73 | 73 | | |
74 | 74 | | |
75 | 75 | | |
| |||
102 | 102 | | |
103 | 103 | | |
104 | 104 | | |
105 | | - | |
| 105 | + | |
106 | 106 | | |
107 | 107 | | |
108 | 108 | | |
| |||
Lines changed: 1 addition & 1 deletion
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
9 | 9 | | |
10 | 10 | | |
11 | 11 | | |
12 | | - | |
| 12 | + | |
13 | 13 | | |
14 | 14 | | |
15 | 15 | | |
| |||
Lines changed: 1 addition & 1 deletion
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
26 | 26 | | |
27 | 27 | | |
28 | 28 | | |
29 | | - | |
| 29 | + | |
30 | 30 | | |
31 | 31 | | |
32 | 32 | | |
| |||
0 commit comments