blob: a3fe71765512d9dd176c6dfa17b236399ee5e085 [file] [log] [blame]
// 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.
cr.define('extensions', function() {
'use strict';
/**
* @return {!Promise} A signal that the document is ready. Need to wait for
* this, otherwise the custom ExtensionOptions element might not have been
* registered yet.
*/
function whenDocumentReady() {
if (document.readyState == 'complete') {
return Promise.resolve();
}
return new Promise(function(resolve) {
document.addEventListener('readystatechange', function f() {
if (document.readyState == 'complete') {
document.removeEventListener('readystatechange', f);
resolve();
}
});
});
}
// The minimum width in pixels for the options dialog.
const MIN_WIDTH = 400;
// The maximum height in pixels for the options dialog.
const MAX_HEIGHT = 640;
const OptionsDialog = Polymer({
is: 'extensions-options-dialog',
behaviors: [extensions.ItemBehavior],
properties: {
/** @private {Object} */
extensionOptions_: Object,
/** @private {chrome.developerPrivate.ExtensionInfo} */
data_: Object,
},
/** @private {?Function} */
boundUpdateDialogSize_: null,
/** @private {?{height: number, width: number}} */
preferredSize_: null,
get open() {
return this.$.dialog.open;
},
/**
* Resizes the dialog to the width/height stored in |preferredSize_|, taking
* into account the window width/height.
* @private
*/
updateDialogSize_: function() {
const headerHeight = this.$.body.offsetTop;
const maxHeight = Math.min(0.9 * window.innerHeight, MAX_HEIGHT);
const effectiveHeight =
Math.min(maxHeight, headerHeight + this.preferredSize_.height);
const effectiveWidth = Math.max(MIN_WIDTH, this.preferredSize_.width);
const nativeDialog = this.$.dialog.getNative();
nativeDialog.style.height = `${effectiveHeight}px`;
nativeDialog.style.width = `${effectiveWidth}px`;
nativeDialog.style.opacity = '1';
},
/** @param {chrome.developerPrivate.ExtensionInfo} data */
show: function(data) {
this.data_ = data;
whenDocumentReady().then(() => {
if (!this.extensionOptions_) {
this.extensionOptions_ = document.createElement('ExtensionOptions');
}
this.extensionOptions_.extension = this.data_.id;
this.extensionOptions_.onclose = () => this.$.dialog.close();
const boundUpdateDialogSize = this.updateDialogSize_.bind(this);
this.boundUpdateDialogSize_ = boundUpdateDialogSize;
this.extensionOptions_.onpreferredsizechanged = e => {
if (!this.$.dialog.open) {
this.$.dialog.showModal();
}
this.preferredSize_ = e;
this.debounce('updateDialogSize_', boundUpdateDialogSize, 50);
};
// Add a 'resize' such that the dialog is resized when window size
// changes.
window.addEventListener('resize', this.boundUpdateDialogSize_);
this.$.body.appendChild(this.extensionOptions_);
});
},
/** @private */
onClose_: function() {
this.extensionOptions_.onpreferredsizechanged = null;
if (this.boundUpdateDialogSize_) {
window.removeEventListener('resize', this.boundUpdateDialogSize_);
this.boundUpdateDialogSize_ = null;
}
const currentPage = extensions.navigation.getCurrentPage();
// We update the page when the options dialog closes, but only if we're
// still on the details page. We could be on a different page if the
// user hit back while the options dialog was visible; in that case, the
// new page is already correct.
if (currentPage && currentPage.page == Page.DETAILS) {
// This will update the currentPage_ and the NavigationHelper; since
// the active page is already the details page, no main page
// transition occurs.
extensions.navigation.navigateTo(
{page: Page.DETAILS, extensionId: currentPage.extensionId});
}
},
});
return {
OptionsDialog: OptionsDialog,
OptionsDialogMinWidth: MIN_WIDTH,
OptionsDialogMaxHeight: MAX_HEIGHT,
};
});