1
0
mirror of https://github.com/bitwarden/browser synced 2026-02-06 11:43:51 +00:00

update state references to use new guid library

This commit is contained in:
addisonbeck
2025-07-18 22:16:29 -04:00
parent 9e200b4452
commit 3d64b4ea74
2 changed files with 5 additions and 4 deletions

View File

@@ -7,11 +7,12 @@ import { mock } from "jest-mock-extended";
import { firstValueFrom, of } from "rxjs";
import { Jsonify } from "type-fest";
import { newGuid } from "@bitwarden/guid";
import { trackEmissions, awaitAsync } from "../../../../spec";
import { FakeStorageService } from "../../../../spec/fake-storage.service";
import { UserId } from "../../../types/guid";
import { LogService } from "../../abstractions/log.service";
import { Utils } from "../../misc/utils";
import { StateDefinition } from "../state-definition";
import { StateEventRegistrarService } from "../state-event-registrar.service";
import { UserKeyDefinition } from "../user-key-definition";
@@ -39,7 +40,7 @@ const testKeyDefinition = new UserKeyDefinition<TestState>(testStateDefinition,
cleanupDelayMs,
clearOn: [],
});
const userId = Utils.newGuid() as UserId;
const userId = newGuid() as UserId;
const userKey = testKeyDefinition.buildKey(userId);
describe("DefaultSingleUserState", () => {

View File

@@ -1,10 +1,10 @@
// FIXME: Update this file to be type safe and remove this and next line
// @ts-strict-ignore
import { array, record } from "@bitwarden/serialization";
import { isGuid } from "@bitwarden/guid";
import { UserId } from "../../types/guid";
import { StorageKey } from "../../types/state";
import { Utils } from "../misc/utils";
import { DebugOptions, KeyDefinitionOptions } from "./key-definition";
import { StateDefinition } from "./state-definition";
@@ -129,7 +129,7 @@ export class UserKeyDefinition<T> {
}
buildKey(userId: UserId) {
if (!Utils.isGuid(userId)) {
if (!isGuid(userId)) {
throw new Error(
`You cannot build a user key without a valid UserId, building for key ${this.fullName}`,
);