1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-15 07:43:35 +00:00

[deps] Autofill: Update prettier to v3 (#7014)

* [deps] Autofill: Update prettier to v3

* prettier formatting updates

---------

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: Jonathan Prusik <jprusik@classynemesis.com>
This commit is contained in:
renovate[bot]
2023-11-29 16:15:20 -05:00
committed by GitHub
parent 4ff5f38e89
commit 28de9439be
1145 changed files with 5898 additions and 5612 deletions

View File

@@ -130,7 +130,7 @@ export class VaultComponent implements OnInit, OnDestroy {
protected currentSearchText$: Observable<string>;
protected showBulkEditCollectionAccess$ = this.configService.getFeatureFlag$(
FeatureFlag.BulkCollectionAccess,
false
false,
);
private searchText$ = new Subject<string>();
@@ -163,27 +163,27 @@ export class VaultComponent implements OnInit, OnDestroy {
private eventCollectionService: EventCollectionService,
private totpService: TotpService,
private apiService: ApiService,
protected configService: ConfigServiceAbstraction
protected configService: ConfigServiceAbstraction,
) {}
async ngOnInit() {
this.trashCleanupWarning = this.i18nService.t(
this.platformUtilsService.isSelfHost()
? "trashCleanupWarningSelfHosted"
: "trashCleanupWarning"
: "trashCleanupWarning",
);
const filter$ = this.routedVaultFilterService.filter$;
const organizationId$ = filter$.pipe(
map((filter) => filter.organizationId),
filter((filter) => filter !== undefined),
distinctUntilChanged()
distinctUntilChanged(),
);
const organization$ = organizationId$.pipe(
switchMap((organizationId) => this.organizationService.get$(organizationId)),
takeUntil(this.destroy$),
shareReplay({ refCount: false, bufferSize: 1 })
shareReplay({ refCount: false, bufferSize: 1 }),
);
const firstSetup$ = combineLatest([organization$, this.route.queryParams]).pipe(
@@ -197,7 +197,7 @@ export class VaultComponent implements OnInit, OnDestroy {
return undefined;
}),
shareReplay({ refCount: true, bufferSize: 1 })
shareReplay({ refCount: true, bufferSize: 1 }),
);
this.broadcasterService.subscribe(BroadcasterSubscriptionId, (message: any) => {
@@ -226,14 +226,14 @@ export class VaultComponent implements OnInit, OnDestroy {
queryParams: { search: Utils.isNullOrEmpty(searchText) ? null : searchText },
queryParamsHandling: "merge",
replaceUrl: true,
})
}),
);
this.currentSearchText$ = this.route.queryParams.pipe(map((queryParams) => queryParams.search));
const allCollectionsWithoutUnassigned$ = organizationId$.pipe(
switchMap((orgId) => this.collectionAdminService.getAll(orgId)),
shareReplay({ refCount: true, bufferSize: 1 })
shareReplay({ refCount: true, bufferSize: 1 }),
);
const allCollections$ = combineLatest([organizationId$, allCollectionsWithoutUnassigned$]).pipe(
@@ -243,12 +243,12 @@ export class VaultComponent implements OnInit, OnDestroy {
noneCollection.id = Unassigned;
noneCollection.organizationId = organizationId;
return allCollections.concat(noneCollection);
})
}),
);
const allGroups$ = organizationId$.pipe(
switchMap((organizationId) => this.groupService.getAll(organizationId)),
shareReplay({ refCount: true, bufferSize: 1 })
shareReplay({ refCount: true, bufferSize: 1 }),
);
const allCiphers$ = organization$.pipe(
@@ -258,12 +258,12 @@ export class VaultComponent implements OnInit, OnDestroy {
ciphers = await this.cipherService.getAllFromApiForOrganization(organization.id);
} else {
ciphers = (await this.cipherService.getAllDecrypted()).filter(
(c) => c.organizationId === organization.id
(c) => c.organizationId === organization.id,
);
}
await this.searchService.indexCiphers(ciphers, organization.id);
return ciphers;
})
}),
);
const ciphers$ = combineLatest([allCiphers$, filter$, this.currentSearchText$]).pipe(
@@ -281,12 +281,12 @@ export class VaultComponent implements OnInit, OnDestroy {
return ciphers.filter(filterFunction);
}),
shareReplay({ refCount: true, bufferSize: 1 })
shareReplay({ refCount: true, bufferSize: 1 }),
);
const nestedCollections$ = allCollections$.pipe(
map((collections) => getNestedCollectionTree(collections)),
shareReplay({ refCount: true, bufferSize: 1 })
shareReplay({ refCount: true, bufferSize: 1 }),
);
const collections$ = combineLatest([nestedCollections$, filter$, this.currentSearchText$]).pipe(
@@ -305,7 +305,7 @@ export class VaultComponent implements OnInit, OnDestroy {
} else {
const selectedCollection = ServiceUtils.getTreeNodeObjectFromList(
collections,
filter.collectionId
filter.collectionId,
);
collectionsToReturn = selectedCollection?.children.map((c) => c.node) ?? [];
}
@@ -315,14 +315,14 @@ export class VaultComponent implements OnInit, OnDestroy {
collectionsToReturn,
searchText,
(collection) => collection.name,
(collection) => collection.id
(collection) => collection.id,
);
}
return collectionsToReturn;
}),
takeUntil(this.destroy$),
shareReplay({ refCount: true, bufferSize: 1 })
shareReplay({ refCount: true, bufferSize: 1 }),
);
const selectedCollection$ = combineLatest([nestedCollections$, filter$]).pipe(
@@ -338,7 +338,7 @@ export class VaultComponent implements OnInit, OnDestroy {
return ServiceUtils.getTreeNodeObjectFromList(collections, filter.collectionId);
}),
shareReplay({ refCount: true, bufferSize: 1 })
shareReplay({ refCount: true, bufferSize: 1 }),
);
const showMissingCollectionPermissionMessage$ = combineLatest([
@@ -356,7 +356,7 @@ export class VaultComponent implements OnInit, OnDestroy {
!organization.canUseAdminCollections)
);
}),
shareReplay({ refCount: true, bufferSize: 1 })
shareReplay({ refCount: true, bufferSize: 1 }),
);
firstSetup$
@@ -377,7 +377,7 @@ export class VaultComponent implements OnInit, OnDestroy {
this.platformUtilsService.showToast(
"error",
this.i18nService.t("errorOccurred"),
this.i18nService.t("unknownCipher")
this.i18nService.t("unknownCipher"),
);
this.router.navigate([], {
queryParams: { cipherId: null, itemId: null },
@@ -385,7 +385,7 @@ export class VaultComponent implements OnInit, OnDestroy {
});
}
}),
takeUntil(this.destroy$)
takeUntil(this.destroy$),
)
.subscribe();
@@ -404,7 +404,7 @@ export class VaultComponent implements OnInit, OnDestroy {
this.platformUtilsService.showToast(
"error",
this.i18nService.t("errorOccurred"),
this.i18nService.t("unknownCipher")
this.i18nService.t("unknownCipher"),
);
this.router.navigate([], {
queryParams: { viewEvents: null },
@@ -412,7 +412,7 @@ export class VaultComponent implements OnInit, OnDestroy {
});
}
}),
takeUntil(this.destroy$)
takeUntil(this.destroy$),
)
.subscribe();
@@ -430,9 +430,9 @@ export class VaultComponent implements OnInit, OnDestroy {
collections$,
selectedCollection$,
showMissingCollectionPermissionMessage$,
])
]),
),
takeUntil(this.destroy$)
takeUntil(this.destroy$),
)
.subscribe(
([
@@ -462,7 +462,7 @@ export class VaultComponent implements OnInit, OnDestroy {
this.refreshing = false;
this.performingInitialLoad = false;
}
},
);
}
@@ -549,7 +549,7 @@ export class VaultComponent implements OnInit, OnDestroy {
comp.onDeletedAttachment
.pipe(takeUntil(this.destroy$))
.subscribe(() => (madeAttachmentChanges = true));
}
},
);
modal.onClosed.pipe(takeUntil(this.destroy$)).subscribe(() => {
@@ -574,13 +574,13 @@ export class VaultComponent implements OnInit, OnDestroy {
modal.close();
this.refresh();
});
}
},
);
}
async addCipher() {
const collections = (await firstValueFrom(this.vaultFilterService.filteredCollections$)).filter(
(c) => !c.readOnly && c.id != Unassigned
(c) => !c.readOnly && c.id != Unassigned,
);
await this.editCipher(null, (comp) => {
@@ -598,14 +598,14 @@ export class VaultComponent implements OnInit, OnDestroy {
async editCipher(
cipher: CipherView,
additionalComponentParameters?: (comp: AddEditComponent) => void
additionalComponentParameters?: (comp: AddEditComponent) => void,
) {
return this.editCipherId(cipher?.id, additionalComponentParameters);
}
async editCipherId(
cipherId: string,
additionalComponentParameters?: (comp: AddEditComponent) => void
additionalComponentParameters?: (comp: AddEditComponent) => void,
) {
const cipher = await this.cipherService.get(cipherId);
// if cipher exists (cipher is null when new) and MP reprompt
@@ -646,7 +646,7 @@ export class VaultComponent implements OnInit, OnDestroy {
: (comp) => {
defaultComponentParameters(comp);
additionalComponentParameters(comp);
}
},
);
modal.onClosedPromise().then(() => {
@@ -670,7 +670,7 @@ export class VaultComponent implements OnInit, OnDestroy {
}
const collections = (await firstValueFrom(this.vaultFilterService.filteredCollections$)).filter(
(c) => !c.readOnly && c.id != Unassigned
(c) => !c.readOnly && c.id != Unassigned,
);
await this.editCipher(cipher, (comp) => {
@@ -709,7 +709,7 @@ export class VaultComponent implements OnInit, OnDestroy {
this.platformUtilsService.showToast(
"error",
this.i18nService.t("errorOccurred"),
this.i18nService.t("nothingSelected")
this.i18nService.t("nothingSelected"),
);
return;
}
@@ -741,7 +741,7 @@ export class VaultComponent implements OnInit, OnDestroy {
this.platformUtilsService.showToast(
"success",
null,
this.i18nService.t(permanent ? "permanentlyDeletedItem" : "deletedItem")
this.i18nService.t(permanent ? "permanentlyDeletedItem" : "deletedItem"),
);
this.refresh();
} catch (e) {
@@ -757,7 +757,7 @@ export class VaultComponent implements OnInit, OnDestroy {
this.platformUtilsService.showToast(
"error",
this.i18nService.t("errorOccurred"),
this.i18nService.t("missingPermissions")
this.i18nService.t("missingPermissions"),
);
return;
}
@@ -775,7 +775,7 @@ export class VaultComponent implements OnInit, OnDestroy {
this.platformUtilsService.showToast(
"success",
null,
this.i18nService.t("deletedCollectionId", collection.name)
this.i18nService.t("deletedCollectionId", collection.name),
);
// Navigate away if we deleted the colletion we were viewing
@@ -796,7 +796,7 @@ export class VaultComponent implements OnInit, OnDestroy {
async bulkDelete(
ciphers: CipherView[],
collections: CollectionView[],
organization: Organization
organization: Organization,
) {
if (!(await this.repromptCipher(ciphers))) {
return;
@@ -806,7 +806,7 @@ export class VaultComponent implements OnInit, OnDestroy {
this.platformUtilsService.showToast(
"error",
this.i18nService.t("errorOccurred"),
this.i18nService.t("nothingSelected")
this.i18nService.t("nothingSelected"),
);
return;
}
@@ -862,7 +862,7 @@ export class VaultComponent implements OnInit, OnDestroy {
this.platformUtilsService.showToast(
"info",
null,
this.i18nService.t("valueCopied", this.i18nService.t(typeI18nKey))
this.i18nService.t("valueCopied", this.i18nService.t(typeI18nKey)),
);
if (field === "password") {
@@ -908,7 +908,7 @@ export class VaultComponent implements OnInit, OnDestroy {
this.platformUtilsService.showToast(
"error",
this.i18nService.t("errorOccurred"),
this.i18nService.t("nothingSelected")
this.i18nService.t("nothingSelected"),
);
return;
}