cordova-plugin-printer/www/printer.js

155 lines
4.0 KiB
JavaScript
Raw Normal View History

2013-12-11 20:00:16 +08:00
/*
Copyright 2013-2016 appPlant GmbH
2013-12-11 20:00:16 +08:00
Licensed to the Apache Software Foundation (ASF) under one
or more contributor license agreements. See the NOTICE file
distributed with this work for additional information
regarding copyright ownership. The ASF licenses this file
to you 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.
*/
2014-09-08 04:52:47 +08:00
var exec = require('cordova/exec');
2014-10-14 05:31:12 +08:00
/**
* List of all available options with their default value.
*
* @return {Object}
*/
exports.getDefaults = function () {
return {
name: 'unknown',
duplex: 'none',
2014-10-14 05:31:12 +08:00
landscape: false,
graystyle: false,
2014-10-14 05:31:12 +08:00
bounds: [40, 30, 0, 0]
};
};
2014-09-08 04:52:47 +08:00
/**
* Checks if the printer service is avaible (iOS)
* or if connected to the Internet (Android).
*
* @param {Function} callback
* A callback function
* @param {Object?} scope
* The scope of the callback (default: window)
*
* @return {Boolean}
*/
exports.isAvailable = function (callback, scope) {
var fn = this._createCallbackFn(callback);
2014-09-08 04:52:47 +08:00
exec(fn, null, 'Printer', 'isAvailable', []);
};
2014-09-08 04:52:47 +08:00
/**
* Sends the content to the Google Cloud Print service.
*
* @param {String} content
* HTML string or DOM node
* if latter, innerHTML is used to get the content
* @param {Object} options
* Options for the print job
* @param {Function?} callback
* A callback function
* @param {Object?} scope
* The scope of the callback (default: window)
*/
exports.print = function (content, options, callback, scope) {
var page = content.innerHTML || content,
params = options || {},
fn = this._createCallbackFn(callback);
2014-09-08 04:52:47 +08:00
if (typeof page != 'string') {
console.log('Print function requires an HTML string. Not an object');
return;
}
2015-04-23 05:24:57 +08:00
if (typeof params == 'string') {
2014-09-08 04:52:47 +08:00
params = { name: params };
2015-04-23 05:24:57 +08:00
}
2014-10-14 05:31:12 +08:00
params = this.mergeWithDefaults(params);
2015-04-23 05:24:57 +08:00
if ([null, undefined, ''].indexOf(params.name) > -1) {
params.name = this.getDefaults().name;
2015-04-23 05:24:57 +08:00
}
2014-09-08 04:52:47 +08:00
exec(fn, null, 'Printer', 'print', [page, params]);
};
2014-10-14 05:31:12 +08:00
/**
* @private
*
* Merge settings with default values.
*
* @param {Object} options
* The custom options
*
* @retrun {Object}
* Default values merged
* with custom values
*/
exports.mergeWithDefaults = function (options) {
var defaults = this.getDefaults();
if (options.bounds && !options.bounds.length) {
options.bounds = [
options.bounds.left || defaults.bounds[0],
options.bounds.top || defaults.bounds[1],
options.bounds.width || defaults.bounds[2],
options.bounds.height || defaults.bounds[3],
];
}
if (options.duplex && typeof options.duplex == 'boolean') {
options.duplex = options.duplex ? 'long' : 'none';
}
2014-10-14 05:31:12 +08:00
for (var key in defaults) {
if (!options.hasOwnProperty(key)) {
options[key] = defaults[key];
continue;
}
if (typeof options[key] != typeof defaults[key]) {
delete options[key];
}
}
return options;
};
2014-09-08 04:52:47 +08:00
/**
* @private
*
* Creates a callback, which will be executed within a specific scope.
*
* @param {Function} callbackFn
* The callback function
* @param {Object} scope
* The scope for the function
*
* @return {Function}
* The new callback function
*/
exports._createCallbackFn = function (callbackFn, scope) {
if (typeof callbackFn != 'function')
return;
2014-09-08 04:52:47 +08:00
return function () {
callbackFn.apply(scope || this, arguments);
};
2014-10-14 05:31:12 +08:00
};