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
|
// Copyright 2023 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_icon_button/cr_icon_button.js';
import 'chrome://resources/cr_elements/cr_button/cr_button.js';
import 'chrome://resources/cr_elements/cr_icons.css.js';
import 'chrome://resources/cr_elements/cr_shared_style.css.js';
import './dialogs/edit_password_dialog.js';
import './dialogs/delete_password_disclaimer_dialog.js';
import './dialogs/edit_password_disclaimer_dialog.js';
import './site_favicon.js';
import './shared_style.css.js';
import type {CrIconButtonElement} from 'chrome://resources/cr_elements/cr_icon_button/cr_icon_button.js';
import {I18nMixin} from 'chrome://resources/cr_elements/i18n_mixin.js';
import {assert, assertNotReached} from 'chrome://resources/js/assert.js';
import {OpenWindowProxyImpl} from 'chrome://resources/js/open_window_proxy.js';
import {PolymerElement} from 'chrome://resources/polymer/v3_0/polymer/polymer_bundled.min.js';
import {getTemplate} from './checkup_list_item.html.js';
import {PasswordManagerImpl} from './password_manager_proxy.js';
import type {ShowPasswordMixinInterface} from './show_password_mixin.js';
import {ShowPasswordMixin} from './show_password_mixin.js';
export interface CheckupListItemElement extends ShowPasswordMixinInterface {
$: {
shownUrl: HTMLElement,
username: HTMLElement,
insecurePassword: HTMLInputElement,
more: CrIconButtonElement,
};
}
const CheckupListItemElementBase = ShowPasswordMixin(I18nMixin(PolymerElement));
export class CheckupListItemElement extends CheckupListItemElementBase {
static get is() {
return 'checkup-list-item';
}
static get template() {
return getTemplate();
}
static get properties() {
return {
item: Object,
group: Object,
first: Boolean,
showDetails: Boolean,
showAlreadyChanged: Boolean,
showEditPasswordDialog_: Boolean,
showEditPasswordDisclaimer_: Boolean,
showDeletePasswordDialog_: Boolean,
};
}
declare item: chrome.passwordsPrivate.PasswordUiEntry;
declare group: chrome.passwordsPrivate.CredentialGroup;
declare first: boolean;
declare showDetails: boolean;
declare showAlreadyChanged: boolean;
declare private showEditPasswordDialog_: boolean;
declare private showEditPasswordDisclaimer_: boolean;
declare private showDeletePasswordDialog_: boolean;
private getPasswordValue_(): string|undefined {
return this.isPasswordVisible ? this.item.password : ' '.repeat(10);
}
private getCompromiseDescription_(): string {
assert(this.item.compromisedInfo);
const isLeaked = this.item.compromisedInfo.compromiseTypes.some(
type => type === chrome.passwordsPrivate.CompromiseType.LEAKED);
const isPhished = this.item.compromisedInfo.compromiseTypes.some(
type => type === chrome.passwordsPrivate.CompromiseType.PHISHED);
if (isLeaked && isPhished) {
return this.i18n('phishedAndLeakedPassword');
}
if (isPhished) {
return this.i18n('phishedPassword');
}
if (isLeaked) {
return this.i18n('leakedPassword');
}
assertNotReached(
'Can\'t find a string for type: ' + this.item.compromisedInfo);
}
private onMoreClick_(event: Event) {
this.dispatchEvent(new CustomEvent('more-actions-click', {
bubbles: true,
composed: true,
detail: {
listItem: this,
target: event.target,
},
}));
}
showHidePassword() {
if (this.isPasswordVisible === true) {
this.onShowHidePasswordButtonClick();
this.item.password = undefined;
this.item.note = undefined;
return;
}
PasswordManagerImpl.getInstance()
.requestCredentialsDetails([this.item.id])
.then(entries => {
const entry = entries[0];
assert(!!entry);
this.item.password = entry.password;
this.item.note = entry.note;
this.onShowHidePasswordButtonClick();
})
.catch(() => {});
}
showEditDialog() {
PasswordManagerImpl.getInstance()
.requestCredentialsDetails([this.item.id])
.then(entries => {
const entry = entries[0];
assert(!!entry);
this.item.affiliatedDomains = entry.affiliatedDomains;
this.item.password = entry.password;
this.item.note = entry.note;
this.showEditPasswordDialog_ = true;
})
.catch(() => {});
}
showDeleteDialog() {
this.showDeletePasswordDialog_ = true;
}
private onChangePasswordClick_() {
assert(this.item.changePasswordUrl);
OpenWindowProxyImpl.getInstance().openUrl(this.item.changePasswordUrl);
this.dispatchEvent(new CustomEvent(
'change-password-clicked',
{bubbles: true, composed: true, detail: this.item.id}));
}
private onAlreadyChangedClick_(e: Event) {
this.showEditPasswordDisclaimer_ = true;
e.preventDefault();
}
private onEditPasswordDialogClosed_() {
this.showEditPasswordDialog_ = false;
this.item.password = undefined;
this.item.note = undefined;
}
private onEditPasswordClick_() {
this.showEditDialog();
}
private onEditDisclaimerClosed_() {
this.showEditPasswordDisclaimer_ = false;
}
private onDeletePasswordDialogClosed_() {
this.showDeletePasswordDialog_ = false;
}
private onDeletePasswordClick_() {
PasswordManagerImpl.getInstance().removeCredential(
this.item.id, this.item.storedIn);
this.dispatchEvent(new CustomEvent('password-removed', {
bubbles: true,
composed: true,
detail: {
removedFromStores: this.item.storedIn,
},
}));
}
private getGroupName_(): string {
return !this.group ? '' : this.group.name;
}
private getGroupIcon_(): string {
return !this.group ? '' : this.group.iconUrl;
}
private getChangeButtonAriaLabel_(): string {
return this.i18n('changePasswordAriaDescription', this.getGroupName_());
}
private getMoreButtonAriaLabel_(): string {
return this.i18n('moreActionsAriaDescription', this.getGroupName_());
}
}
declare global {
interface HTMLElementTagNameMap {
'checkup-list-item': CheckupListItemElement;
}
}
customElements.define(CheckupListItemElement.is, CheckupListItemElement);
|