mirror of
https://github.com/bitwarden/browser
synced 2025-12-12 14:23:32 +00:00
* Begin migration of autofill settings Co-authored-by: Cesar Gonzalez <cagonzalezcs@users.noreply.github.com> Co-authored-by: Thomas Avery <Thomas-Avery@users.noreply.github.com> Co-authored-by: Jonathan Prusik <jprusik@users.noreply.github.com> Co-authored-by: Colton Hurst <coltonhurst@users.noreply.github.com> * add browser dependency for AutofillSettingsService Co-authored-by: Matt Gibson <mgibson@bitwarden.com> * update autofill settings service * replace usages of stateService get/set autofillOnPageLoad with autofillSettingsService * replace usages of stateService get/set autofillOnPageLoadDefault with autofillSettingsService * replace usages of stateService get/set autoCopyTotp with autofillSettingsService * replace usages of stateService get/set autoFillOnPageLoadCalloutIsDismissed with autofillSettingsService * replace usages of stateService get/set activateAutoFillOnPageLoadFromPolicy with autofillSettingsService * replace usages of get/set autoFillOverlayVisibility with autofillSettingsService * inlineMenuVisibility should use global state * add the AutofillSettingsService to background scripts * fix typing * replace additional usages of get/set autoFillOverlayVisibility and disableAutoTotpCopy with autofillSettingsService equivalents * replace additional usages of get/set autofillOnPageLoadDefault with autofillSettingsService equivalent * replace additional usages of get/set activateAutoFillOnPageLoadFromPolicy with autofillSettingsService equivalent * remove additional deprecated and unused state service calls * improve naming conventions and consistency * fix missing mock for policy service test * replace missing overlay background tests * cleanup * fix double inversion * fix reference to wrong setter * move handleActivateAutofillPolicy out of BrowserPolicyService * create state migration script * resolve linting issues * remove migrated setting properties * add AutofillSettingsSErvice to jslib-services * handle conditional content script loading via autofillOnPageLoad check * add deprecated note to getFromLocalStorage * add jsdoc decorators to new autofill service methods * handle undefined globalState * move autofill settings out of BrowserPolicyService * Move autofill settings code out of policyService * fix tests * fix typo in state definition --------- Co-authored-by: Matt Gibson <mgibson@bitwarden.com> Co-authored-by: Cesar Gonzalez <cagonzalezcs@users.noreply.github.com> Co-authored-by: Thomas Avery <Thomas-Avery@users.noreply.github.com> Co-authored-by: Colton Hurst <coltonhurst@users.noreply.github.com> Co-authored-by: Thomas Rittson <trittson@bitwarden.com>
57 lines
2.4 KiB
TypeScript
57 lines
2.4 KiB
TypeScript
import { StateDefinition } from "./state-definition";
|
|
|
|
/**
|
|
* `StateDefinition`s comes with some rules, to facilitate a quick review from
|
|
* platform of this file, ensure you follow these rules, the ones marked with (tested)
|
|
* have unit tests that you can run locally.
|
|
*
|
|
* 1. (tested) Names should not be null or undefined
|
|
* 2. (tested) Name and storage location should be unique
|
|
* 3. (tested) Name and storage location can't differ from another export by only casing
|
|
* 4. (tested) Name should be longer than 3 characters. It should be descriptive, but brief.
|
|
* 5. (tested) Name should not contain spaces or underscores
|
|
* 6. Name should be human readable
|
|
* 7. Name should be in camelCase format (unit tests ensure the first character is lowercase)
|
|
* 8. Teams should only use state definitions they have created
|
|
* 9. StateDefinitions should only be used for keys relating to the state name they chose
|
|
*
|
|
*/
|
|
|
|
export const ACCOUNT_MEMORY = new StateDefinition("account", "memory");
|
|
|
|
export const BILLING_BANNERS_DISK = new StateDefinition("billingBanners", "disk");
|
|
|
|
export const CRYPTO_DISK = new StateDefinition("crypto", "disk");
|
|
|
|
export const SSO_DISK = new StateDefinition("ssoLogin", "disk");
|
|
|
|
export const ENVIRONMENT_DISK = new StateDefinition("environment", "disk");
|
|
|
|
export const VAULT_ONBOARDING = new StateDefinition("vaultOnboarding", "disk", {
|
|
web: "disk-local",
|
|
});
|
|
|
|
export const GENERATOR_DISK = new StateDefinition("generator", "disk");
|
|
export const GENERATOR_MEMORY = new StateDefinition("generator", "memory");
|
|
|
|
export const BIOMETRIC_SETTINGS_DISK = new StateDefinition("biometricSettings", "disk");
|
|
|
|
// Admin Console
|
|
export const ORGANIZATIONS_DISK = new StateDefinition("organizations", "disk");
|
|
export const POLICIES_DISK = new StateDefinition("policies", "disk");
|
|
export const POLICIES_MEMORY = new StateDefinition("policies", "memory");
|
|
export const PROVIDERS_DISK = new StateDefinition("providers", "disk");
|
|
|
|
export const FOLDER_DISK = new StateDefinition("folder", "disk", { web: "memory" });
|
|
|
|
export const SYNC_STATE = new StateDefinition("sync", "disk", { web: "memory" });
|
|
|
|
export const VAULT_SETTINGS_DISK = new StateDefinition("vaultSettings", "disk", {
|
|
web: "disk-local",
|
|
});
|
|
|
|
export const AUTOFILL_SETTINGS_DISK = new StateDefinition("autofillSettings", "disk");
|
|
export const AUTOFILL_SETTINGS_DISK_LOCAL = new StateDefinition("autofillSettingsLocal", "disk", {
|
|
web: "disk-local",
|
|
});
|