mirror of
https://github.com/bitwarden/browser
synced 2025-12-18 01:03:35 +00:00
* Move DeprecatedVaultFilterService to vault folder * [libs] move VaultItemsComponent * [libs] move AddEditComponent * [libs] move AddEditCustomFields * [libs] move attachmentsComponent * [libs] folderAddEditComponent * [libs] IconComponent * [libs] PasswordRepormptComponent * [libs] PremiumComponent * [libs] ViewCustomFieldsComponent * [libs] ViewComponent * [libs] PasswordRepromptService * [libs] Move FolderService and FolderApiService abstractions * [libs] FolderService imports * [libs] PasswordHistoryComponent * [libs] move Sync and SyncNotifier abstractions * [libs] SyncService imports * [libs] fix file casing for passwordReprompt abstraction * [libs] SyncNotifier import fix * [libs] CipherServiceAbstraction * [libs] PasswordRepromptService abstraction * [libs] Fix file casing for angular passwordReprompt service * [libs] fix file casing for SyncNotifierService * [libs] CipherRepromptType * [libs] rename CipherRepromptType * [libs] CipherType * [libs] Rename CipherType * [libs] CipherData * [libs] FolderData * [libs] PasswordHistoryData * [libs] AttachmentData * [libs] CardData * [libs] FieldData * [libs] IdentityData * [libs] LocalData * [libs] LoginData * [libs] SecureNoteData * [libs] LoginUriData * [libs] Domain classes * [libs] SecureNote * [libs] Request models * [libs] Response models * [libs] View part 1 * [libs] Views part 2 * [libs] Move folder services * [libs] Views fixes * [libs] Move sync services * [libs] cipher service * [libs] Types * [libs] Sync file casing * [libs] Fix folder service import * [libs] Move spec files * [libs] casing fixes on spec files * [browser] Autofill background, clipboard, commands * [browser] Fix ContextMenusBackground casing * [browser] Rename fix * [browser] Autofill content * [browser] autofill.js * [libs] enpass importer spec fix * [browser] autofill models * [browser] autofill manifest path updates * [browser] Autofill notification files * [browser] autofill services * [browser] Fix file casing * [browser] Vault popup loose components * [browser] Vault components * [browser] Manifest fixes * [browser] Vault services * [cli] vault commands and models * [browser] File capitilization fixes * [desktop] Vault components and services * [web] vault loose components * [web] Vault components * [browser] Fix misc-utils import * [libs] Fix psono spec imports * [fix] Add comments to address lint rules
93 lines
3.0 KiB
TypeScript
93 lines
3.0 KiB
TypeScript
import { Directive, EventEmitter, Input, OnInit, Output } from "@angular/core";
|
|
|
|
import { CollectionService } from "@bitwarden/common/abstractions/collection.service";
|
|
import { I18nService } from "@bitwarden/common/abstractions/i18n.service";
|
|
import { LogService } from "@bitwarden/common/abstractions/log.service";
|
|
import { PlatformUtilsService } from "@bitwarden/common/abstractions/platformUtils.service";
|
|
import { CollectionView } from "@bitwarden/common/models/view/collection.view";
|
|
import { CipherService } from "@bitwarden/common/vault/abstractions/cipher.service";
|
|
import { Cipher } from "@bitwarden/common/vault/models/domain/cipher";
|
|
import { CipherView } from "@bitwarden/common/vault/models/view/cipher.view";
|
|
|
|
@Directive()
|
|
export class CollectionsComponent implements OnInit {
|
|
@Input() cipherId: string;
|
|
@Input() allowSelectNone = false;
|
|
@Output() onSavedCollections = new EventEmitter();
|
|
|
|
formPromise: Promise<any>;
|
|
cipher: CipherView;
|
|
collectionIds: string[];
|
|
collections: CollectionView[] = [];
|
|
|
|
protected cipherDomain: Cipher;
|
|
|
|
constructor(
|
|
protected collectionService: CollectionService,
|
|
protected platformUtilsService: PlatformUtilsService,
|
|
protected i18nService: I18nService,
|
|
protected cipherService: CipherService,
|
|
private logService: LogService
|
|
) {}
|
|
|
|
async ngOnInit() {
|
|
await this.load();
|
|
}
|
|
|
|
async load() {
|
|
this.cipherDomain = await this.loadCipher();
|
|
this.collectionIds = this.loadCipherCollections();
|
|
this.cipher = await this.cipherDomain.decrypt();
|
|
this.collections = await this.loadCollections();
|
|
|
|
this.collections.forEach((c) => ((c as any).checked = false));
|
|
if (this.collectionIds != null) {
|
|
this.collections.forEach((c) => {
|
|
(c as any).checked = this.collectionIds != null && this.collectionIds.indexOf(c.id) > -1;
|
|
});
|
|
}
|
|
}
|
|
|
|
async submit() {
|
|
const selectedCollectionIds = this.collections
|
|
.filter((c) => !!(c as any).checked)
|
|
.map((c) => c.id);
|
|
if (!this.allowSelectNone && selectedCollectionIds.length === 0) {
|
|
this.platformUtilsService.showToast(
|
|
"error",
|
|
this.i18nService.t("errorOccurred"),
|
|
this.i18nService.t("selectOneCollection")
|
|
);
|
|
return;
|
|
}
|
|
this.cipherDomain.collectionIds = selectedCollectionIds;
|
|
try {
|
|
this.formPromise = this.saveCollections();
|
|
await this.formPromise;
|
|
this.onSavedCollections.emit();
|
|
this.platformUtilsService.showToast("success", null, this.i18nService.t("editedItem"));
|
|
} catch (e) {
|
|
this.logService.error(e);
|
|
}
|
|
}
|
|
|
|
protected loadCipher() {
|
|
return this.cipherService.get(this.cipherId);
|
|
}
|
|
|
|
protected loadCipherCollections() {
|
|
return this.cipherDomain.collectionIds;
|
|
}
|
|
|
|
protected async loadCollections() {
|
|
const allCollections = await this.collectionService.getAllDecrypted();
|
|
return allCollections.filter(
|
|
(c) => !c.readOnly && c.organizationId === this.cipher.organizationId
|
|
);
|
|
}
|
|
|
|
protected saveCollections() {
|
|
return this.cipherService.saveCollectionsWithServer(this.cipherDomain);
|
|
}
|
|
}
|