1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381
|
// Copyright 2022 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
import 'chrome://resources/cr_elements/cr_page_host_style.css.js';
import 'chrome://resources/cr_elements/cr_page_selector/cr_page_selector.js';
import 'chrome://resources/cr_elements/cr_shared_style.css.js';
import 'chrome://resources/cr_elements/cr_toast/cr_toast.js';
import '/shared/settings/prefs/prefs.js';
import './checkup_section.js';
import './checkup_details_section.js';
import './password_details_section.js';
import './password_change_details.js';
import './passwords_exporter.js';
import './passwords_section.js';
import './settings_section.js';
import './shared_style.css.js';
import './side_bar.js';
import './toolbar.js';
import type {CrToastElement} from '//resources/cr_elements/cr_toast/cr_toast.js';
import {focusWithoutInk} from '//resources/js/focus_without_ink.js';
import {loadTimeData} from '//resources/js/load_time_data.js';
import type {SettingsPrefsElement} from '/shared/settings/prefs/prefs.js';
import {CrContainerShadowMixin} from 'chrome://resources/cr_elements/cr_container_shadow_mixin.js';
import type {CrDrawerElement} from 'chrome://resources/cr_elements/cr_drawer/cr_drawer.js';
import type {CrPageSelectorElement} from 'chrome://resources/cr_elements/cr_page_selector/cr_page_selector.js';
import {FindShortcutMixin} from 'chrome://resources/cr_elements/find_shortcut_mixin.js';
import {I18nMixin} from 'chrome://resources/cr_elements/i18n_mixin.js';
import {EventTracker} from 'chrome://resources/js/event_tracker.js';
import {PluralStringProxyImpl} from 'chrome://resources/js/plural_string_proxy.js';
import {getDeepActiveElement, listenOnce} from 'chrome://resources/js/util.js';
import type {DomIf} from 'chrome://resources/polymer/v3_0/polymer/polymer_bundled.min.js';
import {PolymerElement} from 'chrome://resources/polymer/v3_0/polymer/polymer_bundled.min.js';
import type {CheckupSectionElement} from './checkup_section.js';
import type {PasswordRemovedEvent} from './credential_details/password_details_card.js';
import type {FocusConfig} from './focus_config.js';
import {getTemplate} from './password_manager_app.html.js';
import {PasswordManagerImpl} from './password_manager_proxy.js';
import type {PasswordsSectionElement} from './passwords_section.js';
import type {Route} from './router.js';
import {Page, RouteObserverMixin, Router} from './router.js';
import type {SettingsSectionElement} from './settings_section.js';
import type {PasswordManagerSideBarElement} from './side_bar.js';
import type {PasswordManagerToolbarElement} from './toolbar.js';
/**
* Checks if an HTML element is an editable. An editable is either a text
* input or a text area.
*/
function isEditable(element: Element): boolean {
const nodeName = element.nodeName.toLowerCase();
return element.nodeType === Node.ELEMENT_NODE &&
(nodeName === 'textarea' ||
(nodeName === 'input' &&
/^(?:text|search|email|number|tel|url|password)$/i.test(
(element as HTMLInputElement).type)));
}
export type PasswordsMovedEvent =
CustomEvent<{accountEmail: string, numberOfPasswords: number}>;
export type ValueCopiedEvent = CustomEvent<{toastMessage: string}>;
export interface PasswordManagerAppElement {
$: {
checkup: CheckupSectionElement,
content: CrPageSelectorElement,
drawer: CrDrawerElement,
drawerTemplate: DomIf,
passwords: PasswordsSectionElement,
prefs: SettingsPrefsElement,
toast: CrToastElement,
settings: SettingsSectionElement,
sidebar: PasswordManagerSideBarElement,
toolbar: PasswordManagerToolbarElement,
};
}
const PasswordManagerAppElementBase = FindShortcutMixin(
I18nMixin(CrContainerShadowMixin(RouteObserverMixin(PolymerElement))));
export class PasswordManagerAppElement extends PasswordManagerAppElementBase {
static get is() {
return 'password-manager-app';
}
static get template() {
return getTemplate();
}
static get properties() {
return {
/**
* Preferences state.
*/
prefs_: Object,
selectedPage_: {
type: String,
value: Page.PASSWORDS,
},
narrow_: {
type: Boolean,
observer: 'onMaxWidthChanged_',
},
collapsed_: {
type: Boolean,
observer: 'onMaxWidthChanged_',
},
pageTitle_: {
type: String,
value: () => loadTimeData.getString('passwordManagerTitle'),
},
/*
* Mirroring the enum so that it can be used from HTML bindings.
*/
pagesValueEnum_: {
type: Object,
value: Page,
},
toastMessage_: String,
/**
* Whether to show an "undo" button on the removal toast.
*/
showUndo_: Boolean,
/**
* A Map specifying which element should be focused when exiting a
* subpage. The key of the map holds a Route path, and the value holds
* either a query selector that identifies the desired element, an element
* or a function to be run when a neon-animation-finish event is handled.
*/
focusConfig_: {
type: Object,
value() {
const map = new Map();
return map;
},
},
};
}
declare private prefs_: {[key: string]: any};
declare private selectedPage_: Page;
declare private narrow_: boolean;
declare private collapsed_: boolean;
declare private pageTitle_: string;
declare private toastMessage_: string;
declare private showUndo_: boolean;
declare private focusConfig_: FocusConfig;
private eventTracker_: EventTracker = new EventTracker();
override connectedCallback() {
super.connectedCallback();
const narrowQuery = window.matchMedia('(max-width: 1036px)');
this.narrow_ = narrowQuery.matches;
this.eventTracker_.add(
narrowQuery, 'change',
(e: MediaQueryListEvent) => this.narrow_ = e.matches);
const collapsedQuery = window.matchMedia('(max-width: 1200px)');
this.collapsed_ = collapsedQuery.matches;
this.eventTracker_.add(
collapsedQuery, 'change',
(e: MediaQueryListEvent) => this.collapsed_ = e.matches);
}
override disconnectedCallback() {
super.disconnectedCallback();
this.eventTracker_.removeAll();
}
override ready() {
super.ready();
window.CrPolicyStrings = {
controlledSettingExtension:
loadTimeData.getString('controlledSettingExtension'),
controlledSettingExtensionWithoutName:
loadTimeData.getString('controlledSettingExtensionWithoutName'),
controlledSettingPolicy:
loadTimeData.getString('controlledSettingPolicy'),
controlledSettingRecommendedMatches:
loadTimeData.getString('controlledSettingRecommendedMatches'),
controlledSettingRecommendedDiffers:
loadTimeData.getString('controlledSettingRecommendedDiffers'),
controlledSettingChildRestriction:
loadTimeData.getString('controlledSettingChildRestriction'),
controlledSettingParent:
loadTimeData.getString('controlledSettingParent'),
// <if expr="chromeos_ash">
controlledSettingShared:
loadTimeData.getString('controlledSettingShared'),
controlledSettingWithOwner:
loadTimeData.getString('controlledSettingWithOwner'),
controlledSettingNoOwner:
loadTimeData.getString('controlledSettingNoOwner'),
// </if>
};
document.addEventListener('keydown', e => {
// <if expr="is_macosx">
if (e.metaKey && e.key === 'z') {
this.onUndoKeyBinding_(e);
}
// </if>
// <if expr="not is_macosx">
if (e.ctrlKey && e.key === 'z') {
this.onUndoKeyBinding_(e);
}
// </if>
});
// Lazy-create the drawer the first time it is opened or swiped into view.
listenOnce(this.$.drawer, 'cr-drawer-opening', () => {
this.$.drawerTemplate.if = true;
});
this.addEventListener('cr-toolbar-menu-click', this.onMenuButtonClick_);
this.addEventListener('close-drawer', this.closeDrawer_);
}
override currentRouteChanged(route: Route): void {
this.selectedPage_ = route.page;
setTimeout(() => { // Async to allow page to load.
if (route.page === Page.CHECKUP_DETAILS ||
route.page === Page.PASSWORD_CHANGE) {
this.enableScrollObservation(false);
this.setForceDropShadows(true);
} else {
this.setForceDropShadows(false);
this.enableScrollObservation(true);
}
}, 0);
}
// Override FindShortcutMixin methods.
override handleFindShortcut(modalContextOpen: boolean): boolean {
if (modalContextOpen) {
return false;
}
// Redirect to Password Manager search on Passwords page.
if (Router.getInstance().currentRoute.page === Page.PASSWORDS) {
this.$.toolbar.searchField.showAndFocus();
return true;
}
return false;
}
// Override FindShortcutMixin methods.
override searchInputHasFocus(): boolean {
return this.$.toolbar.searchField.isSearchFocused();
}
private onMaxWidthChanged_() {
if (this.$.drawer.open && !this.narrow_) {
this.$.drawer.close();
}
// Window is greater than 980px but less than 1200px.
if (!this.narrow_ && this.collapsed_) {
this.pageTitle_ = this.i18n('passwordManagerString');
} else {
this.pageTitle_ = this.i18n('passwordManagerTitle');
}
}
private onMenuButtonClick_() {
this.$.drawer.toggle();
}
private closeDrawer_() {
if (this.$.drawer && this.$.drawer.open) {
this.$.drawer.close();
}
}
setNarrowForTesting(state: boolean) {
this.narrow_ = state;
}
private showPage(currentPage: string, pageToShow: string): boolean {
return currentPage === pageToShow;
}
/**
* Handle the shortcut to undo a removal of passwords/exceptions. This must
* be handled here and not at the PasswordDetailsCard level because that
* component does not know about exception deletions.
*/
private onUndoKeyBinding_(event: Event) {
const activeElement = getDeepActiveElement();
// If the focused element is editable (e.g. search box) the undo event
// should be handled there and not here.
if (!activeElement || !isEditable(activeElement)) {
this.onUndoButtonClick_();
// Preventing the default is necessary to not conflict with a possible
// search action.
event.preventDefault();
}
}
private onPasswordRemoved_(_event: PasswordRemovedEvent) {
// TODO(crbug.com/40234318): Show different message if account store user.
this.showUndo_ = true;
this.toastMessage_ = this.i18n('passwordDeleted');
this.$.toast.show();
}
private onPasskeyRemoved_() {
this.showUndo_ = false;
this.toastMessage_ = this.i18n('passkeyDeleted');
this.$.toast.show();
}
private async onPasswordsMoved_(event: PasswordsMovedEvent) {
this.showUndo_ = false;
this.toastMessage_ =
await PluralStringProxyImpl.getInstance()
.getPluralString(
'passwordsMovedToastMessage', event.detail.numberOfPasswords)
.then(label => label.replace('$1', event.detail.accountEmail));
this.$.toast.show();
}
private onValueCopied_(event: ValueCopiedEvent) {
this.showUndo_ = false;
this.toastMessage_ = event.detail.toastMessage;
this.$.toast.show();
}
private onUndoButtonClick_() {
PasswordManagerImpl.getInstance().undoRemoveSavedPasswordOrException();
this.$.toast.hide();
}
private onSearchEnterClick_() {
this.$.passwords.focusFirstResult();
}
private onIronSelect_(e: Event) {
// Ignore bubbling 'iron-select' events not originating from
// |content| itself.
if (e.target !== this.$.content) {
return;
}
if (!this.focusConfig_ || Router.getInstance().previousRoute === null) {
return;
}
const pathConfig =
this.focusConfig_.get(Router.getInstance().previousRoute!.page);
if (pathConfig) {
let handler;
if (typeof pathConfig === 'function') {
handler = pathConfig;
} else {
handler = () => {
focusWithoutInk(pathConfig as HTMLElement);
};
}
handler();
}
}
}
declare global {
interface HTMLElementTagNameMap {
'password-manager-app': PasswordManagerAppElement;
}
}
customElements.define(PasswordManagerAppElement.is, PasswordManagerAppElement);
|