Convert the existing overlays to use the OverlayManager
This commit is contained in:
parent
6dc7a52e35
commit
5cd6dddeee
@ -14,15 +14,14 @@
|
|||||||
* See the License for the specific language governing permissions and
|
* See the License for the specific language governing permissions and
|
||||||
* limitations under the License.
|
* limitations under the License.
|
||||||
*/
|
*/
|
||||||
/* globals PDFView, Promise, mozL10n, getPDFFileNameFromURL */
|
/* globals PDFView, Promise, mozL10n, getPDFFileNameFromURL, OverlayManager */
|
||||||
|
|
||||||
'use strict';
|
'use strict';
|
||||||
|
|
||||||
var DocumentProperties = {
|
var DocumentProperties = {
|
||||||
overlayContainer: null,
|
overlayName: null,
|
||||||
fileName: '',
|
fileName: '',
|
||||||
fileSize: '',
|
fileSize: '',
|
||||||
visible: false,
|
|
||||||
|
|
||||||
// Document property fields (in the viewer).
|
// Document property fields (in the viewer).
|
||||||
fileNameField: null,
|
fileNameField: null,
|
||||||
@ -39,7 +38,7 @@ var DocumentProperties = {
|
|||||||
pageCountField: null,
|
pageCountField: null,
|
||||||
|
|
||||||
initialize: function documentPropertiesInitialize(options) {
|
initialize: function documentPropertiesInitialize(options) {
|
||||||
this.overlayContainer = options.overlayContainer;
|
this.overlayName = options.overlayName;
|
||||||
|
|
||||||
// Set the document property fields.
|
// Set the document property fields.
|
||||||
this.fileNameField = options.fileNameField;
|
this.fileNameField = options.fileNameField;
|
||||||
@ -57,24 +56,18 @@ var DocumentProperties = {
|
|||||||
|
|
||||||
// Bind the event listener for the Close button.
|
// Bind the event listener for the Close button.
|
||||||
if (options.closeButton) {
|
if (options.closeButton) {
|
||||||
options.closeButton.addEventListener('click', this.hide.bind(this));
|
options.closeButton.addEventListener('click', this.close.bind(this));
|
||||||
}
|
}
|
||||||
|
|
||||||
this.dataAvailablePromise = new Promise(function (resolve) {
|
this.dataAvailablePromise = new Promise(function (resolve) {
|
||||||
this.resolveDataAvailable = resolve;
|
this.resolveDataAvailable = resolve;
|
||||||
}.bind(this));
|
}.bind(this));
|
||||||
|
|
||||||
// Bind the event listener for the Esc key (to close the dialog).
|
OverlayManager.register(this.overlayName, this.close.bind(this));
|
||||||
window.addEventListener('keydown',
|
|
||||||
function (e) {
|
|
||||||
if (e.keyCode === 27) { // Esc key
|
|
||||||
this.hide();
|
|
||||||
}
|
|
||||||
}.bind(this));
|
|
||||||
},
|
},
|
||||||
|
|
||||||
getProperties: function documentPropertiesGetProperties() {
|
getProperties: function documentPropertiesGetProperties() {
|
||||||
if (!this.visible) {
|
if (!OverlayManager.active) {
|
||||||
// If the dialog was closed before dataAvailablePromise was resolved,
|
// If the dialog was closed before dataAvailablePromise was resolved,
|
||||||
// don't bother updating the properties.
|
// don't bother updating the properties.
|
||||||
return;
|
return;
|
||||||
@ -136,26 +129,15 @@ var DocumentProperties = {
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
||||||
show: function documentPropertiesShow() {
|
open: function documentPropertiesOpen() {
|
||||||
if (this.visible) {
|
Promise.all([OverlayManager.open(this.overlayName),
|
||||||
return;
|
this.dataAvailablePromise]).then(function () {
|
||||||
}
|
|
||||||
this.visible = true;
|
|
||||||
this.overlayContainer.classList.remove('hidden');
|
|
||||||
this.overlayContainer.lastElementChild.classList.remove('hidden');
|
|
||||||
|
|
||||||
this.dataAvailablePromise.then(function () {
|
|
||||||
this.getProperties();
|
this.getProperties();
|
||||||
}.bind(this));
|
}.bind(this));
|
||||||
},
|
},
|
||||||
|
|
||||||
hide: function documentPropertiesClose() {
|
close: function documentPropertiesClose() {
|
||||||
if (!this.visible) {
|
OverlayManager.close(this.overlayName);
|
||||||
return;
|
|
||||||
}
|
|
||||||
this.visible = false;
|
|
||||||
this.overlayContainer.classList.add('hidden');
|
|
||||||
this.overlayContainer.lastElementChild.classList.add('hidden');
|
|
||||||
},
|
},
|
||||||
|
|
||||||
parseDate: function documentPropertiesParseDate(inputDate) {
|
parseDate: function documentPropertiesParseDate(inputDate) {
|
||||||
|
@ -14,22 +14,21 @@
|
|||||||
* See the License for the specific language governing permissions and
|
* See the License for the specific language governing permissions and
|
||||||
* limitations under the License.
|
* limitations under the License.
|
||||||
*/
|
*/
|
||||||
/* globals PDFJS, mozL10n */
|
/* globals PDFJS, mozL10n, OverlayManager */
|
||||||
|
|
||||||
'use strict';
|
'use strict';
|
||||||
|
|
||||||
var PasswordPrompt = {
|
var PasswordPrompt = {
|
||||||
visible: false,
|
overlayName: null,
|
||||||
updatePassword: null,
|
updatePassword: null,
|
||||||
reason: null,
|
reason: null,
|
||||||
overlayContainer: null,
|
|
||||||
passwordField: null,
|
passwordField: null,
|
||||||
passwordText: null,
|
passwordText: null,
|
||||||
passwordSubmit: null,
|
passwordSubmit: null,
|
||||||
passwordCancel: null,
|
passwordCancel: null,
|
||||||
|
|
||||||
initialize: function secondaryToolbarInitialize(options) {
|
initialize: function secondaryToolbarInitialize(options) {
|
||||||
this.overlayContainer = options.overlayContainer;
|
this.overlayName = options.overlayName;
|
||||||
this.passwordField = options.passwordField;
|
this.passwordField = options.passwordField;
|
||||||
this.passwordText = options.passwordText;
|
this.passwordText = options.passwordText;
|
||||||
this.passwordSubmit = options.passwordSubmit;
|
this.passwordSubmit = options.passwordSubmit;
|
||||||
@ -39,57 +38,43 @@ var PasswordPrompt = {
|
|||||||
this.passwordSubmit.addEventListener('click',
|
this.passwordSubmit.addEventListener('click',
|
||||||
this.verifyPassword.bind(this));
|
this.verifyPassword.bind(this));
|
||||||
|
|
||||||
this.passwordCancel.addEventListener('click', this.hide.bind(this));
|
this.passwordCancel.addEventListener('click', this.close.bind(this));
|
||||||
|
|
||||||
this.passwordField.addEventListener('keydown',
|
this.passwordField.addEventListener('keydown', function (e) {
|
||||||
function (e) {
|
if (e.keyCode === 13) { // Enter key
|
||||||
if (e.keyCode === 13) { // Enter key
|
this.verifyPassword();
|
||||||
this.verifyPassword();
|
}
|
||||||
}
|
}.bind(this));
|
||||||
}.bind(this));
|
|
||||||
|
|
||||||
window.addEventListener('keydown',
|
OverlayManager.register(this.overlayName, this.close.bind(this), true);
|
||||||
function (e) {
|
|
||||||
if (e.keyCode === 27) { // Esc key
|
|
||||||
this.hide();
|
|
||||||
}
|
|
||||||
}.bind(this));
|
|
||||||
},
|
},
|
||||||
|
|
||||||
show: function passwordPromptShow() {
|
open: function passwordPromptOpen() {
|
||||||
if (this.visible) {
|
OverlayManager.open(this.overlayName).then(function () {
|
||||||
return;
|
this.passwordField.focus();
|
||||||
}
|
|
||||||
this.visible = true;
|
|
||||||
this.overlayContainer.classList.remove('hidden');
|
|
||||||
this.overlayContainer.firstElementChild.classList.remove('hidden');
|
|
||||||
this.passwordField.focus();
|
|
||||||
|
|
||||||
var promptString = mozL10n.get('password_label', null,
|
var promptString = mozL10n.get('password_label', null,
|
||||||
'Enter the password to open this PDF file.');
|
'Enter the password to open this PDF file.');
|
||||||
|
|
||||||
if (this.reason === PDFJS.PasswordResponses.INCORRECT_PASSWORD) {
|
if (this.reason === PDFJS.PasswordResponses.INCORRECT_PASSWORD) {
|
||||||
promptString = mozL10n.get('password_invalid', null,
|
promptString = mozL10n.get('password_invalid', null,
|
||||||
'Invalid password. Please try again.');
|
'Invalid password. Please try again.');
|
||||||
}
|
}
|
||||||
|
|
||||||
this.passwordText.textContent = promptString;
|
this.passwordText.textContent = promptString;
|
||||||
|
}.bind(this));
|
||||||
},
|
},
|
||||||
|
|
||||||
hide: function passwordPromptClose() {
|
close: function passwordPromptClose() {
|
||||||
if (!this.visible) {
|
OverlayManager.close(this.overlayName).then(function () {
|
||||||
return;
|
this.passwordField.value = '';
|
||||||
}
|
}.bind(this));
|
||||||
this.visible = false;
|
|
||||||
this.passwordField.value = '';
|
|
||||||
this.overlayContainer.classList.add('hidden');
|
|
||||||
this.overlayContainer.firstElementChild.classList.add('hidden');
|
|
||||||
},
|
},
|
||||||
|
|
||||||
verifyPassword: function passwordPromptVerifyPassword() {
|
verifyPassword: function passwordPromptVerifyPassword() {
|
||||||
var password = this.passwordField.value;
|
var password = this.passwordField.value;
|
||||||
if (password && password.length > 0) {
|
if (password && password.length > 0) {
|
||||||
this.hide();
|
this.close();
|
||||||
return this.updatePassword(password);
|
return this.updatePassword(password);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -114,7 +114,7 @@ var SecondaryToolbar = {
|
|||||||
},
|
},
|
||||||
|
|
||||||
documentPropertiesClick: function secondaryToolbarDocumentPropsClick(evt) {
|
documentPropertiesClick: function secondaryToolbarDocumentPropsClick(evt) {
|
||||||
this.documentProperties.show();
|
this.documentProperties.open();
|
||||||
this.close();
|
this.close();
|
||||||
},
|
},
|
||||||
|
|
||||||
|
@ -77,10 +77,11 @@ http://sourceforge.net/adobe/cmap/wiki/License/
|
|||||||
<script src="pdf_find_controller.js"></script>
|
<script src="pdf_find_controller.js"></script>
|
||||||
<script src="pdf_history.js"></script>
|
<script src="pdf_history.js"></script>
|
||||||
<script src="secondary_toolbar.js"></script>
|
<script src="secondary_toolbar.js"></script>
|
||||||
<script src="password_prompt.js"></script>
|
|
||||||
<script src="presentation_mode.js"></script>
|
<script src="presentation_mode.js"></script>
|
||||||
<script src="grab_to_pan.js"></script>
|
<script src="grab_to_pan.js"></script>
|
||||||
<script src="hand_tool.js"></script>
|
<script src="hand_tool.js"></script>
|
||||||
|
<script src="overlay_manager.js"></script>
|
||||||
|
<script src="password_prompt.js"></script>
|
||||||
<script src="document_properties.js"></script>
|
<script src="document_properties.js"></script>
|
||||||
<!--#endif-->
|
<!--#endif-->
|
||||||
|
|
||||||
|
@ -20,7 +20,7 @@
|
|||||||
Preferences, SidebarView, ViewHistory, PageView, ThumbnailView, URL,
|
Preferences, SidebarView, ViewHistory, PageView, ThumbnailView, URL,
|
||||||
noContextMenuHandler, SecondaryToolbar, PasswordPrompt,
|
noContextMenuHandler, SecondaryToolbar, PasswordPrompt,
|
||||||
PresentationMode, HandTool, Promise, DocumentProperties,
|
PresentationMode, HandTool, Promise, DocumentProperties,
|
||||||
DocumentOutlineView, DocumentAttachmentsView */
|
DocumentOutlineView, DocumentAttachmentsView, OverlayManager */
|
||||||
|
|
||||||
'use strict';
|
'use strict';
|
||||||
|
|
||||||
@ -100,9 +100,10 @@ var currentPageNumber = 1;
|
|||||||
//#include pdf_find_controller.js
|
//#include pdf_find_controller.js
|
||||||
//#include pdf_history.js
|
//#include pdf_history.js
|
||||||
//#include secondary_toolbar.js
|
//#include secondary_toolbar.js
|
||||||
//#include password_prompt.js
|
|
||||||
//#include presentation_mode.js
|
//#include presentation_mode.js
|
||||||
//#include hand_tool.js
|
//#include hand_tool.js
|
||||||
|
//#include overlay_manager.js
|
||||||
|
//#include password_prompt.js
|
||||||
//#include document_properties.js
|
//#include document_properties.js
|
||||||
|
|
||||||
var PDFView = {
|
var PDFView = {
|
||||||
@ -183,14 +184,6 @@ var PDFView = {
|
|||||||
documentPropertiesButton: document.getElementById('documentProperties')
|
documentPropertiesButton: document.getElementById('documentProperties')
|
||||||
});
|
});
|
||||||
|
|
||||||
PasswordPrompt.initialize({
|
|
||||||
overlayContainer: document.getElementById('overlayContainer'),
|
|
||||||
passwordField: document.getElementById('password'),
|
|
||||||
passwordText: document.getElementById('passwordText'),
|
|
||||||
passwordSubmit: document.getElementById('passwordSubmit'),
|
|
||||||
passwordCancel: document.getElementById('passwordCancel')
|
|
||||||
});
|
|
||||||
|
|
||||||
PresentationMode.initialize({
|
PresentationMode.initialize({
|
||||||
container: container,
|
container: container,
|
||||||
secondaryToolbar: SecondaryToolbar,
|
secondaryToolbar: SecondaryToolbar,
|
||||||
@ -200,8 +193,16 @@ var PDFView = {
|
|||||||
pageRotateCcw: document.getElementById('contextPageRotateCcw')
|
pageRotateCcw: document.getElementById('contextPageRotateCcw')
|
||||||
});
|
});
|
||||||
|
|
||||||
|
PasswordPrompt.initialize({
|
||||||
|
overlayName: 'passwordOverlay',
|
||||||
|
passwordField: document.getElementById('password'),
|
||||||
|
passwordText: document.getElementById('passwordText'),
|
||||||
|
passwordSubmit: document.getElementById('passwordSubmit'),
|
||||||
|
passwordCancel: document.getElementById('passwordCancel')
|
||||||
|
});
|
||||||
|
|
||||||
DocumentProperties.initialize({
|
DocumentProperties.initialize({
|
||||||
overlayContainer: document.getElementById('overlayContainer'),
|
overlayName: 'documentPropertiesOverlay',
|
||||||
closeButton: document.getElementById('documentPropertiesClose'),
|
closeButton: document.getElementById('documentPropertiesClose'),
|
||||||
fileNameField: document.getElementById('fileNameField'),
|
fileNameField: document.getElementById('fileNameField'),
|
||||||
fileSizeField: document.getElementById('fileSizeField'),
|
fileSizeField: document.getElementById('fileSizeField'),
|
||||||
@ -626,7 +627,7 @@ var PDFView = {
|
|||||||
var passwordNeeded = function passwordNeeded(updatePassword, reason) {
|
var passwordNeeded = function passwordNeeded(updatePassword, reason) {
|
||||||
PasswordPrompt.updatePassword = updatePassword;
|
PasswordPrompt.updatePassword = updatePassword;
|
||||||
PasswordPrompt.reason = reason;
|
PasswordPrompt.reason = reason;
|
||||||
PasswordPrompt.show();
|
PasswordPrompt.open();
|
||||||
};
|
};
|
||||||
|
|
||||||
function getDocumentProgress(progressData) {
|
function getDocumentProgress(progressData) {
|
||||||
@ -2165,7 +2166,7 @@ window.addEventListener('click', function click(evt) {
|
|||||||
}, false);
|
}, false);
|
||||||
|
|
||||||
window.addEventListener('keydown', function keydown(evt) {
|
window.addEventListener('keydown', function keydown(evt) {
|
||||||
if (PasswordPrompt.visible) {
|
if (OverlayManager.active) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user