Files
clients/libs/angular/src/components/collections.component.ts

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

93 lines
3.0 KiB
TypeScript
Raw Normal View History

2018-10-23 12:04:21 -04:00
import { Directive, EventEmitter, Input, OnInit, Output } from "@angular/core";
2022-06-14 17:10:53 +02:00
import { CipherService } from "@bitwarden/common/abstractions/cipher.service";
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 { Cipher } from "@bitwarden/common/models/domain/cipher";
import { CipherView } from "@bitwarden/common/models/view/cipher.view";
import { CollectionView } from "@bitwarden/common/models/view/collection.view";
2018-10-23 12:04:21 -04:00
@Directive()
2018-10-23 12:04:21 -04:00
export class CollectionsComponent implements OnInit {
@Input() cipherId: string;
2019-06-26 17:43:03 -04:00
@Input() allowSelectNone = false;
2018-10-23 12:04:21 -04:00
@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
) {}
2018-10-23 12:04:21 -04:00
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));
2018-10-23 12:04:21 -04:00
if (this.collectionIds != null) {
this.collections.forEach((c) => {
2018-10-23 12:04:21 -04:00
(c as any).checked = this.collectionIds != null && this.collectionIds.indexOf(c.id) > -1;
});
}
2021-12-16 13:36:21 +01:00
}
2018-10-23 12:04:21 -04:00
async submit() {
2019-06-26 17:43:03 -04:00
const selectedCollectionIds = this.collections
.filter((c) => !!(c as any).checked)
.map((c) => c.id);
2019-06-26 17:43:03 -04:00
if (!this.allowSelectNone && selectedCollectionIds.length === 0) {
this.platformUtilsService.showToast(
"error",
this.i18nService.t("errorOccurred"),
this.i18nService.t("selectOneCollection")
);
2019-06-26 17:50:37 -04:00
return;
2018-10-23 12:04:21 -04:00
}
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) {
2018-10-23 12:04:21 -04:00
this.logService.error(e);
}
2021-12-16 13:36:21 +01:00
}
2018-10-23 12:04:21 -04:00
protected loadCipher() {
return this.cipherService.get(this.cipherId);
}
protected loadCipherCollections() {
return this.cipherDomain.collectionIds;
2018-10-23 12:04:21 -04:00
}
protected async loadCollections() {
const allCollections = await this.collectionService.getAllDecrypted();
return allCollections.filter(
(c) => !c.readOnly && c.organizationId === this.cipher.organizationId
2021-12-16 13:36:21 +01:00
);
}
2018-10-23 12:04:21 -04:00
protected saveCollections() {
return this.cipherService.saveCollectionsWithServer(this.cipherDomain);
}
}