summaryrefslogtreecommitdiffstats
path: root/chrome/browser/resources/options/manage_profile_overlay.js
diff options
context:
space:
mode:
Diffstat (limited to 'chrome/browser/resources/options/manage_profile_overlay.js')
-rw-r--r--chrome/browser/resources/options/manage_profile_overlay.js207
1 files changed, 207 insertions, 0 deletions
diff --git a/chrome/browser/resources/options/manage_profile_overlay.js b/chrome/browser/resources/options/manage_profile_overlay.js
new file mode 100644
index 0000000..2c902d9
--- /dev/null
+++ b/chrome/browser/resources/options/manage_profile_overlay.js
@@ -0,0 +1,207 @@
+// Copyright (c) 2011 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.
+
+cr.define('options', function() {
+ var OptionsPage = options.OptionsPage;
+ var ArrayDataModel = cr.ui.ArrayDataModel;
+
+ const localStrings = new LocalStrings();
+
+ /**
+ * ManageProfileOverlay class
+ * Encapsulated handling of the 'Manage profile...' overlay page.
+ * @constructor
+ * @class
+ */
+ function ManageProfileOverlay() {
+ OptionsPage.call(this,
+ 'manageProfile',
+ templateData.manageProfileOverlayTabTitle,
+ 'manage-profile-overlay');
+ };
+
+ cr.addSingletonGetter(ManageProfileOverlay);
+
+ ManageProfileOverlay.prototype = {
+ // Inherit from OptionsPage.
+ __proto__: OptionsPage.prototype,
+
+ // Info about the currently managed/deleted profile.
+ profileInfo_: null,
+
+ // An object containing all known profile names.
+ profileNames_: {},
+
+ /**
+ * Initialize the page.
+ */
+ initializePage: function() {
+ // Call base class implementation to start preference initialization.
+ OptionsPage.prototype.initializePage.call(this);
+
+ var self = this;
+ var iconGrid = $('manage-profile-icon-grid');
+ options.ProfilesIconGrid.decorate(iconGrid);
+
+ $('manage-profile-name').oninput = this.onNameChanged_.bind(this);
+ $('manage-profile-cancel').onclick =
+ $('delete-profile-cancel').onclick = function(event) {
+ OptionsPage.closeOverlay();
+ };
+ $('manage-profile-ok').onclick = function(event) {
+ OptionsPage.closeOverlay();
+ self.submitManageChanges_();
+ };
+ $('delete-profile-ok').onclick = function(event) {
+ OptionsPage.closeOverlay();
+ chrome.send('deleteProfile', [self.profileInfo_.filePath]);
+ };
+ },
+
+ /** @inheritDoc */
+ didShowPage: function() {
+ $('manage-profile-icon-grid').redraw();
+ $('manage-profile-name').focus();
+ },
+
+ /**
+ * Set the profile info used in the dialog.
+ * @param {Object} profileInfo An object of the form:
+ * profileInfo = {
+ * name: "Profile Name",
+ * iconURL: "chrome://path/to/icon/image",
+ * filePath: "/path/to/profile/data/on/disk"
+ * isCurrentProfile: false,
+ * };
+ * @private
+ */
+ setProfileInfo_: function(profileInfo) {
+ this.profileInfo_ = profileInfo;
+ $('manage-profile-name').value = profileInfo.name;
+ $('manage-profile-icon-grid').selectedItem = profileInfo.iconURL;
+ },
+
+ /**
+ * Set an array of default icon URLs. These will be added to the grid that
+ * the user will use to choose their profile icon.
+ * @param {Array.<string>} iconURLs An array of icon URLs.
+ * @private
+ */
+ receiveDefaultProfileIcons_: function(iconURLs) {
+ $('manage-profile-icon-grid').dataModel = new ArrayDataModel(iconURLs);
+ },
+
+ /**
+ * Set a dictionary of all profile names. These are used to prevent the
+ * user from naming two profiles the same.
+ * @param {Object} profileNames A dictionary of profile names.
+ * @private
+ */
+ receiveProfileNames_: function(profileNames) {
+ this.profileNames_ = profileNames;
+ },
+
+ /**
+ * Determine whether |name| is valid; i.e. not equal to any other profile
+ * name.
+ * @param {string} name The profile name to validate.
+ * @return true if the name is not equal to any other profile name.
+ * @private
+ */
+ isNameValid_: function(name) {
+ // if the name hasn't changed, assume it is valid.
+ if (name == this.profileInfo_.name)
+ return true;
+
+ return this.profileNames_[name] == undefined;
+ },
+
+ /**
+ * Update the UI elements accordingly if the profile name is valid/invalid.
+ * @param {boolean} isValid True if the UI should be updated as if the name
+ * were valid.
+ * @private
+ */
+ setNameIsValid_: function(isValid) {
+ var dupeNameErrorEl = $('manage-profile-duplicate-name-error');
+ if (isValid)
+ dupeNameErrorEl.classList.add('hiding');
+ else
+ dupeNameErrorEl.classList.remove('hiding');
+
+ $('manage-profile-ok').disabled = !isValid;
+ },
+
+ /**
+ * oninput callback for <input> field.
+ * @param event The event object
+ * @private
+ */
+ onNameChanged_: function(event) {
+ this.setNameIsValid_(this.isNameValid_(event.target.value));
+ },
+
+ /**
+ * Called when the user clicks "OK". Saves the newly changed profile info.
+ * @private
+ */
+ submitManageChanges_: function() {
+ var name = $('manage-profile-name').value;
+ var iconURL = $('manage-profile-icon-grid').selectedItem;
+ chrome.send('setProfileNameAndIcon',
+ [this.profileInfo_.filePath, name, iconURL]);
+ },
+
+ /**
+ * Display the "Manage Profile" dialog.
+ * @param {Object} profileInfo The profile object of the profile to manage.
+ * @private
+ */
+ showManageDialog_: function(profileInfo) {
+ ManageProfileOverlay.setProfileInfo(profileInfo);
+ $('manage-profile-overlay-manage').hidden = false;
+ $('manage-profile-overlay-delete').hidden = true;
+ ManageProfileOverlay.getInstance().setNameIsValid_(true);
+
+ // Intentionally don't show the URL in the location bar as we don't want
+ // people trying to navigate here by hand.
+ OptionsPage.showPageByName('manageProfile', false);
+ },
+
+ /**
+ * Display the "Delete Profile" dialog.
+ * @param {Object} profileInfo The profile object of the profile to delete.
+ * @private
+ */
+ showDeleteDialog_: function(profileInfo) {
+ ManageProfileOverlay.setProfileInfo(profileInfo);
+ $('manage-profile-overlay-manage').hidden = true;
+ $('manage-profile-overlay-delete').hidden = false;
+ $('delete-profile-message').textContent =
+ localStrings.getStringF('deleteProfileMessage', profileInfo.name);
+
+ // Intentionally don't show the URL in the location bar as we don't want
+ // people trying to navigate here by hand.
+ OptionsPage.showPageByName('manageProfile', false);
+ },
+ };
+
+ // Forward public APIs to private implementations.
+ [
+ 'receiveDefaultProfileIcons',
+ 'receiveProfileNames',
+ 'setProfileInfo',
+ 'showManageDialog',
+ 'showDeleteDialog',
+ ].forEach(function(name) {
+ ManageProfileOverlay[name] = function(value) {
+ ManageProfileOverlay.getInstance()[name + '_'](value);
+ };
+ });
+
+ // Export
+ return {
+ ManageProfileOverlay: ManageProfileOverlay
+ };
+});