1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-17 16:53:34 +00:00

[PM-22313] Refactor organization vault component (#16017)

* refactor organization, userId, and filter

* refactor collections

* refactor allGroups to observable

* Refactor ciphers WIP

* fix filter$

* refactor collections$, refresh$, isEmpty$, proccesingEvents$

* resolve remaining ts-strict errors

* refactor *ngIf to @if syntax

* rename function

* clean up

* fix issues from merge conflict

* better error handling, clean up

* wip add feature flag

* refactor org vault: improve null safety & loading

* add take(2) to firstLoadComplete observable

* add real feature flag

* cleanup

* fix icon

* Add comments

* refactor org vault with null checks, update util function

* fix type

---------

Co-authored-by: Thomas Rittson <trittson@bitwarden.com>
This commit is contained in:
Brandon Treston
2025-09-04 11:07:52 -04:00
committed by GitHub
parent 8c7faf49d5
commit 7247f4987e
9 changed files with 2373 additions and 613 deletions

View File

@@ -80,6 +80,18 @@ export class CipherViewLikeUtils {
return cipher.isDeleted;
};
/** @returns `true` when the cipher is not assigned to a collection, `false` otherwise. */
static isUnassigned = (cipher: CipherViewLike): boolean => {
if (this.isCipherListView(cipher)) {
return (
cipher.organizationId != null &&
(cipher.collectionIds == null || cipher.collectionIds.length === 0)
);
}
return cipher.isUnassigned;
};
/** @returns `true` when the user can assign the cipher to a collection, `false` otherwise. */
static canAssignToCollections = (cipher: CipherViewLike): boolean => {
if (this.isCipherListView(cipher)) {