2013-11-19 07:51:06 +09:00
|
|
|
/* Copyright 2013 Mozilla Foundation
|
|
|
|
*
|
|
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
* you may not use this file except in compliance with the License.
|
|
|
|
* You may obtain a copy of the License at
|
|
|
|
*
|
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
*
|
|
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
* See the License for the specific language governing permissions and
|
|
|
|
* limitations under the License.
|
|
|
|
*/
|
|
|
|
|
2017-10-22 23:23:38 +09:00
|
|
|
let defaultPreferences = null;
|
2017-01-10 23:33:32 +09:00
|
|
|
function getDefaultPreferences() {
|
|
|
|
if (!defaultPreferences) {
|
|
|
|
if (typeof PDFJSDev !== 'undefined' && PDFJSDev.test('PRODUCTION')) {
|
|
|
|
defaultPreferences = Promise.resolve(
|
2019-02-13 22:00:23 +09:00
|
|
|
PDFJSDev.json('$ROOT/build/default_preferences.json'));
|
2017-01-10 23:33:32 +09:00
|
|
|
} else {
|
2019-02-13 22:00:23 +09:00
|
|
|
defaultPreferences = new Promise(function(resolve, reject) {
|
|
|
|
if (typeof SystemJS === 'object') {
|
|
|
|
SystemJS.import('./app_options').then(resolve, reject);
|
|
|
|
} else if (typeof require === 'function') {
|
2017-01-10 23:33:32 +09:00
|
|
|
try {
|
2019-02-13 22:00:23 +09:00
|
|
|
resolve(require('./app_options.js'));
|
|
|
|
} catch (ex) {
|
|
|
|
reject(ex);
|
2017-01-10 23:33:32 +09:00
|
|
|
}
|
2019-02-13 22:00:23 +09:00
|
|
|
} else {
|
|
|
|
reject(new Error(
|
|
|
|
'SystemJS or CommonJS must be used to load AppOptions.'));
|
|
|
|
}
|
|
|
|
}).then(function({ AppOptions, OptionKind, }) {
|
|
|
|
return AppOptions.getAll(OptionKind.PREFERENCE);
|
2017-01-10 23:33:32 +09:00
|
|
|
});
|
2016-05-12 07:58:17 +09:00
|
|
|
}
|
2017-01-10 23:33:32 +09:00
|
|
|
}
|
|
|
|
return defaultPreferences;
|
2016-10-15 00:57:53 +09:00
|
|
|
}
|
2016-05-12 07:58:17 +09:00
|
|
|
|
2014-03-17 06:33:39 +09:00
|
|
|
/**
|
2017-04-17 20:21:11 +09:00
|
|
|
* BasePreferences - Abstract base class for storing persistent settings.
|
2014-03-17 06:33:39 +09:00
|
|
|
* Used for settings that should be applied to all opened documents,
|
|
|
|
* or every time the viewer is loaded.
|
|
|
|
*/
|
2017-04-17 20:21:11 +09:00
|
|
|
class BasePreferences {
|
|
|
|
constructor() {
|
|
|
|
if (this.constructor === BasePreferences) {
|
|
|
|
throw new Error('Cannot initialize BasePreferences.');
|
|
|
|
}
|
|
|
|
this.prefs = null;
|
2016-05-12 07:58:17 +09:00
|
|
|
|
2017-04-17 20:21:11 +09:00
|
|
|
this._initializedPromise = getDefaultPreferences().then((defaults) => {
|
2016-05-12 07:58:17 +09:00
|
|
|
Object.defineProperty(this, 'defaults', {
|
|
|
|
value: Object.freeze(defaults),
|
|
|
|
writable: false,
|
|
|
|
enumerable: true,
|
Fix inconsistent spacing and trailing commas in objects in `web/` files, so we can enable the `comma-dangle` and `object-curly-spacing` ESLint rules later on
http://eslint.org/docs/rules/comma-dangle
http://eslint.org/docs/rules/object-curly-spacing
Given that we currently have quite inconsistent object formatting, fixing this in in *one* big patch probably wouldn't be feasible (since I cannot imagine anyone wanting to review that); hence I've opted to try and do this piecewise instead.
*Please note:* This patch was created automatically, using the ESLint `--fix` command line option. In a couple of places this caused lines to become too long, and I've fixed those manually; please refer to the interdiff below for the only hand-edits in this patch.
```diff
diff --git a/web/pdf_thumbnail_view.js b/web/pdf_thumbnail_view.js
index 002dbf29..1de4e530 100644
--- a/web/pdf_thumbnail_view.js
+++ b/web/pdf_thumbnail_view.js
@@ -420,8 +420,8 @@ var PDFThumbnailView = (function PDFThumbnailViewClosure() {
setPageLabel: function PDFThumbnailView_setPageLabel(label) {
this.pageLabel = (typeof label === 'string' ? label : null);
- this.l10n.get('thumb_page_title', { page: this.pageId, }, 'Page {{page}}').
- then((msg) => {
+ this.l10n.get('thumb_page_title', { page: this.pageId, },
+ 'Page {{page}}').then((msg) => {
this.anchor.title = msg;
});
diff --git a/web/secondary_toolbar.js b/web/secondary_toolbar.js
index 160e0410..6495fc5e 100644
--- a/web/secondary_toolbar.js
+++ b/web/secondary_toolbar.js
@@ -65,7 +65,8 @@ class SecondaryToolbar {
{ element: options.printButton, eventName: 'print', close: true, },
{ element: options.downloadButton, eventName: 'download', close: true, },
{ element: options.viewBookmarkButton, eventName: null, close: true, },
- { element: options.firstPageButton, eventName: 'firstpage', close: true, },
+ { element: options.firstPageButton, eventName: 'firstpage',
+ close: true, },
{ element: options.lastPageButton, eventName: 'lastpage', close: true, },
{ element: options.pageRotateCwButton, eventName: 'rotatecw',
close: false, },
@@ -76,7 +77,7 @@ class SecondaryToolbar {
{ element: options.cursorHandToolButton, eventName: 'switchcursortool',
eventDetails: { tool: CursorTool.HAND, }, close: true, },
{ element: options.documentPropertiesButton,
- eventName: 'documentproperties', close: true, }
+ eventName: 'documentproperties', close: true, },
];
this.items = {
firstPage: options.firstPageButton,
```
2017-06-01 19:46:12 +09:00
|
|
|
configurable: false,
|
2016-05-12 07:58:17 +09:00
|
|
|
});
|
|
|
|
|
2018-06-28 03:39:39 +09:00
|
|
|
this.prefs = Object.assign(Object.create(null), defaults);
|
2016-05-12 07:58:17 +09:00
|
|
|
return this._readFromStorage(defaults);
|
2018-07-28 20:19:35 +09:00
|
|
|
}).then((prefs) => {
|
|
|
|
if (!prefs) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
for (let name in prefs) {
|
|
|
|
const defaultValue = this.defaults[name], prefValue = prefs[name];
|
|
|
|
// Ignore preferences not present in, or whose types don't match,
|
|
|
|
// the default values.
|
|
|
|
if (defaultValue === undefined ||
|
|
|
|
typeof prefValue !== typeof defaultValue) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
this.prefs[name] = prefValue;
|
2014-03-17 06:33:39 +09:00
|
|
|
}
|
2017-04-17 20:21:11 +09:00
|
|
|
});
|
|
|
|
}
|
2014-03-17 06:33:39 +09:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Stub function for writing preferences to storage.
|
|
|
|
* @param {Object} prefObj The preferences that should be written to storage.
|
|
|
|
* @return {Promise} A promise that is resolved when the preference values
|
|
|
|
* have been written.
|
|
|
|
*/
|
2018-07-30 23:48:16 +09:00
|
|
|
async _writeToStorage(prefObj) {
|
|
|
|
throw new Error('Not implemented: _writeToStorage');
|
2017-04-17 20:21:11 +09:00
|
|
|
}
|
2014-03-17 06:33:39 +09:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Stub function for reading preferences from storage.
|
|
|
|
* @param {Object} prefObj The preferences that should be read from storage.
|
|
|
|
* @return {Promise} A promise that is resolved with an {Object} containing
|
|
|
|
* the preferences that have been read.
|
|
|
|
*/
|
2018-07-30 23:48:16 +09:00
|
|
|
async _readFromStorage(prefObj) {
|
|
|
|
throw new Error('Not implemented: _readFromStorage');
|
2017-04-17 20:21:11 +09:00
|
|
|
}
|
2014-03-17 06:33:39 +09:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Reset the preferences to their default values and update storage.
|
|
|
|
* @return {Promise} A promise that is resolved when the preference values
|
|
|
|
* have been reset.
|
|
|
|
*/
|
2018-07-30 23:48:16 +09:00
|
|
|
async reset() {
|
|
|
|
await this._initializedPromise;
|
|
|
|
this.prefs = Object.assign(Object.create(null), this.defaults);
|
|
|
|
return this._writeToStorage(this.defaults);
|
2017-04-17 20:21:11 +09:00
|
|
|
}
|
2014-03-17 06:33:39 +09:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Set the value of a preference.
|
|
|
|
* @param {string} name The name of the preference that should be changed.
|
|
|
|
* @param {boolean|number|string} value The new value of the preference.
|
|
|
|
* @return {Promise} A promise that is resolved when the value has been set,
|
|
|
|
* provided that the preference exists and the types match.
|
|
|
|
*/
|
2018-07-30 23:48:16 +09:00
|
|
|
async set(name, value) {
|
|
|
|
await this._initializedPromise;
|
|
|
|
let defaultValue = this.defaults[name];
|
2013-11-19 07:51:06 +09:00
|
|
|
|
2018-07-30 23:48:16 +09:00
|
|
|
if (defaultValue === undefined) {
|
|
|
|
throw new Error(`Set preference: "${name}" is undefined.`);
|
|
|
|
} else if (value === undefined) {
|
|
|
|
throw new Error('Set preference: no value is specified.');
|
|
|
|
}
|
|
|
|
let valueType = typeof value;
|
|
|
|
let defaultType = typeof defaultValue;
|
|
|
|
|
|
|
|
if (valueType !== defaultType) {
|
|
|
|
if (valueType === 'number' && defaultType === 'string') {
|
|
|
|
value = value.toString();
|
2014-01-31 02:09:31 +09:00
|
|
|
} else {
|
2018-07-30 23:48:16 +09:00
|
|
|
throw new Error(`Set preference: "${value}" is a ${valueType}, ` +
|
|
|
|
`expected a ${defaultType}.`);
|
2013-11-19 07:51:06 +09:00
|
|
|
}
|
2018-07-30 23:48:16 +09:00
|
|
|
} else {
|
|
|
|
if (valueType === 'number' && !Number.isInteger(value)) {
|
|
|
|
throw new Error(`Set preference: "${value}" must be an integer.`);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
this.prefs[name] = value;
|
|
|
|
return this._writeToStorage(this.prefs);
|
2017-04-17 20:21:11 +09:00
|
|
|
}
|
2013-11-19 07:51:06 +09:00
|
|
|
|
2014-03-17 06:33:39 +09:00
|
|
|
/**
|
|
|
|
* Get the value of a preference.
|
|
|
|
* @param {string} name The name of the preference whose value is requested.
|
|
|
|
* @return {Promise} A promise that is resolved with a {boolean|number|string}
|
|
|
|
* containing the value of the preference.
|
|
|
|
*/
|
2018-07-30 23:48:16 +09:00
|
|
|
async get(name) {
|
|
|
|
await this._initializedPromise;
|
|
|
|
let defaultValue = this.defaults[name];
|
2013-11-19 07:51:06 +09:00
|
|
|
|
2018-07-30 23:48:16 +09:00
|
|
|
if (defaultValue === undefined) {
|
|
|
|
throw new Error(`Get preference: "${name}" is undefined.`);
|
|
|
|
} else {
|
|
|
|
let prefValue = this.prefs[name];
|
2013-11-19 07:51:06 +09:00
|
|
|
|
2018-07-30 23:48:16 +09:00
|
|
|
if (prefValue !== undefined) {
|
|
|
|
return prefValue;
|
2013-11-19 07:51:06 +09:00
|
|
|
}
|
2018-07-30 23:48:16 +09:00
|
|
|
}
|
|
|
|
return defaultValue;
|
2017-04-17 20:21:11 +09:00
|
|
|
}
|
2018-07-24 03:12:30 +09:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Get the values of all preferences.
|
|
|
|
* @return {Promise} A promise that is resolved with an {Object} containing
|
|
|
|
* the values of all preferences.
|
|
|
|
*/
|
2018-07-30 23:48:16 +09:00
|
|
|
async getAll() {
|
|
|
|
await this._initializedPromise;
|
|
|
|
return Object.assign(Object.create(null), this.defaults, this.prefs);
|
2018-07-24 03:12:30 +09:00
|
|
|
}
|
2016-10-15 00:57:53 +09:00
|
|
|
}
|
2016-04-09 02:34:27 +09:00
|
|
|
|
2017-03-28 08:07:27 +09:00
|
|
|
export {
|
2017-04-17 20:21:11 +09:00
|
|
|
BasePreferences,
|
2017-03-28 08:07:27 +09:00
|
|
|
};
|