mirror of
https://github.com/bitwarden/browser
synced 2025-12-10 05:13:29 +00:00
* Rename service-factory folder * Move cryptographic service factories * Move crypto models * Move crypto services * Move domain base class * Platform code owners * Move desktop log services * Move log files * Establish component library ownership * Move background listeners * Move background background * Move localization to Platform * Move browser alarms to Platform * Move browser state to Platform * Move CLI state to Platform * Move Desktop native concerns to Platform * Move flag and misc to Platform * Lint fixes * Move electron state to platform * Move web state to Platform * Move lib state to Platform * Fix broken tests * Rename interface to idiomatic TS * `npm run prettier` 🤖 * Resolve review feedback * Set platform as owners of web core and shared * Expand moved services * Fix test types --------- Co-authored-by: Hinton <hinton@users.noreply.github.com>
51 lines
1.8 KiB
TypeScript
51 lines
1.8 KiB
TypeScript
import { VaultTimeoutSettingsService as AbstractVaultTimeoutSettingsService } from "@bitwarden/common/abstractions/vaultTimeout/vaultTimeoutSettings.service";
|
|
import { VaultTimeoutSettingsService } from "@bitwarden/common/services/vaultTimeout/vaultTimeoutSettings.service";
|
|
|
|
import {
|
|
policyServiceFactory,
|
|
PolicyServiceInitOptions,
|
|
} from "../../admin-console/background/service-factories/policy-service.factory";
|
|
import {
|
|
tokenServiceFactory,
|
|
TokenServiceInitOptions,
|
|
} from "../../auth/background/service-factories/token-service.factory";
|
|
import {
|
|
CryptoServiceInitOptions,
|
|
cryptoServiceFactory,
|
|
} from "../../platform/background/service-factories/crypto-service.factory";
|
|
import {
|
|
CachedServices,
|
|
factory,
|
|
FactoryOptions,
|
|
} from "../../platform/background/service-factories/factory-options";
|
|
import {
|
|
StateServiceInitOptions,
|
|
stateServiceFactory,
|
|
} from "../../platform/background/service-factories/state-service.factory";
|
|
|
|
type VaultTimeoutSettingsServiceFactoryOptions = FactoryOptions;
|
|
|
|
export type VaultTimeoutSettingsServiceInitOptions = VaultTimeoutSettingsServiceFactoryOptions &
|
|
CryptoServiceInitOptions &
|
|
TokenServiceInitOptions &
|
|
PolicyServiceInitOptions &
|
|
StateServiceInitOptions;
|
|
|
|
export function vaultTimeoutSettingsServiceFactory(
|
|
cache: { vaultTimeoutSettingsService?: AbstractVaultTimeoutSettingsService } & CachedServices,
|
|
opts: VaultTimeoutSettingsServiceInitOptions
|
|
): Promise<AbstractVaultTimeoutSettingsService> {
|
|
return factory(
|
|
cache,
|
|
"vaultTimeoutSettingsService",
|
|
opts,
|
|
async () =>
|
|
new VaultTimeoutSettingsService(
|
|
await cryptoServiceFactory(cache, opts),
|
|
await tokenServiceFactory(cache, opts),
|
|
await policyServiceFactory(cache, opts),
|
|
await stateServiceFactory(cache, opts)
|
|
)
|
|
);
|
|
}
|