-
Notifications
You must be signed in to change notification settings - Fork 1.3k
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
[PM-12681] Enable new Send Add/Edit Dialog on web #13361
base: main
Are you sure you want to change the base?
Conversation
Codecov ReportAttention: Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## main #13361 +/- ##
==========================================
- Coverage 35.29% 35.28% -0.01%
==========================================
Files 3124 3129 +5
Lines 92358 92622 +264
Branches 16794 16824 +30
==========================================
+ Hits 32597 32683 +86
- Misses 57304 57494 +190
+ Partials 2457 2445 -12 ☔ View full report in Codecov by Sentry. |
This comment was marked as resolved.
This comment was marked as resolved.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Approving platform changes
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
👍🏻 Overall this is looking great! I pointed out a few things I was happy to see in the review.
📝 There's a bunch of nits and some questions.
apps/web/src/app/tools/send/new-send/new-send-dropdown.component.ts
Outdated
Show resolved
Hide resolved
this.hasNoPremium = !(await firstValueFrom( | ||
this.billingAccountProfileStateService.hasPremiumFromAnySource$(account.id), | ||
)); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
🎨 Consider subscribing to hasPremiumFromAnySource$
so that when premium status changes, the control updates immediately.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Added with fc57d15
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
⛏️ Do you need to add takeUntil(this.destroyed$)
to the operators? It doesn't seem to be triggering the lint, but might be a good idea regardless.
apps/web/src/app/tools/send/new-send/new-send-dropdown.component.html
Outdated
Show resolved
Hide resolved
…romise for assignment
|
🎟️ Tracking
https://bitwarden.atlassian.net/browse/PM-12681
📔 Objective
Re-using the new Send Add/Edit form, which was introduced with the browser extension refresh, on the web vault.
Changes
📸 Screenshots
⏰ Reminders before review
🦮 Reviewer guidelines
:+1:
) or similar for great changes:memo:
) or ℹ️ (:information_source:
) for notes or general info:question:
) for questions:thinking:
) or 💭 (:thought_balloon:
) for more open inquiry that's not quite a confirmed issue and could potentially benefit from discussion:art:
) for suggestions / improvements:x:
) or:warning:
) for more significant problems or concerns needing attention:seedling:
) or ♻️ (:recycle:
) for future improvements or indications of technical debt:pick:
) for minor or nitpick changes