Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(4205)

Unified Diff: chrome/browser/resources/settings/people_page/fingerprint_list.js

Issue 2538303002: md-settings: Added settings for fingerprint unlock. (Closed)
Patch Set: Rebased. Created 3 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: chrome/browser/resources/settings/people_page/fingerprint_list.js
diff --git a/chrome/browser/resources/settings/people_page/fingerprint_list.js b/chrome/browser/resources/settings/people_page/fingerprint_list.js
new file mode 100644
index 0000000000000000000000000000000000000000..069b38578b6a0ee8bb145698ed4c0426d8f42517
--- /dev/null
+++ b/chrome/browser/resources/settings/people_page/fingerprint_list.js
@@ -0,0 +1,85 @@
+// Copyright 2016 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+(function() {
+'use strict';
+
+/**
+ * The max number of fingerprints this list can hold.
+ * @const {number}
+ */
+var MAX_NUMBER_FINGERPRINTS_ALLOWED = 5;
+
+Polymer({
+ is: 'settings-fingerprint-list',
+
+ behaviors: [
+ I18nBehavior,
+ ],
+
+ properties: {
+ /**
+ * The list of fingerprint objects.
+ * @private {!Array<string>}
+ */
+ fingerprints_: {
+ type: Array,
+ value: function() {
+ return [];
+ }
+ }
+ },
+
+ /**
+ * Adds a fingerprint with a default name.
+ * @private
+ */
+ onAddFingerprint_: function() {
+ // Determines what the newly added fingerprint's name should be.
+ // TODO(sammiequon): Add fingerprint using private API once it is ready.
+
+ var fingerprintName;
+ for (var i = 1; i <= MAX_NUMBER_FINGERPRINTS_ALLOWED; ++i) {
+ fingerprintName = this.i18n('lockScreenFingerprintNewName', i);
+ if (this.fingerprints_.includes(fingerprintName))
+ continue;
+ break;
+ }
+ this.push('fingerprints_', fingerprintName);
Dan Beam 2017/01/26 00:27:27 this.push('fingerprints_', this.i18n('lockScre
sammiequon 2017/01/26 00:48:23 This is a bit different behavior. For example if w
Dan Beam 2017/01/26 04:12:04 how can you rename fingerprints?
sammiequon 2017/01/26 15:56:45 The fingerprint names on displayed on paper-inputs
+ },
+
+ /**
+ * Deletes a fingerprint from |fingerprints_|.
+ * @private
+ */
+ onFingerprintDelete_: function(e) {
+ // TODO(sammiequon): Remove fingerprint using private API once it is ready.
+ this.splice('fingerprints_', e.model.index, 1);
+ },
+
+ /**
+ * Returns the text to be displayed for the add fingerprint button.
+ * @param {number} numFingerprints
+ * @return {string}
+ * @private
+ */
+ getFingerprintButtonText_: function(numFingerprints) {
+ if (this.canAddNewFingerprint_(numFingerprints))
+ return this.i18n('lockScreenAddFingerprint');
+
+ return this.i18n('lockScreenCannotAddFingerprint',
+ MAX_NUMBER_FINGERPRINTS_ALLOWED);
+ },
+
+ /**
+ * Checks whether another fingerprint can be added.
+ * @param {number} numFingerprints
+ * @return {boolean}
+ * @private
+ */
+ canAddNewFingerprint_: function(numFingerprints) {
Dan Beam 2017/01/26 00:27:27 canAddNewFingerprint_: function() { return this.
sammiequon 2017/01/26 00:48:23 I tried that but this function does not fire when
Dan Beam 2017/01/26 04:12:04 fingerprints_.*?
sammiequon 2017/01/26 15:56:45 Done.
Dan Beam 2017/01/27 01:14:15 no, i mean, in the binding, [[canAddNewFingerprint
sammiequon 2017/01/27 23:04:58 Done.
+ return numFingerprints < MAX_NUMBER_FINGERPRINTS_ALLOWED;
+ }
+});
+})();

Powered by Google App Engine
This is Rietveld 408576698