cordova-plugin-clipboard
Version:
BlackBerry 10 Community Contributed API to access the system clipboard
105 lines (87 loc) • 2.94 kB
JavaScript
/*
* Copyright (c) 2013 BlackBerry Limited.
*
* 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.
*/
var clipboardjs,
resultObjs = {},
threadCallback = null,
_utils = require("../../lib/utils");
module.exports = {
// Code can be declared and used outside the module.exports object,
// but any functions to be called by client.js need to be declared
// here in this object.
setText: function (success, fail, args, env) {
var result = new PluginResult(args, env);
args = JSON.parse(decodeURIComponent(args["input"]));
var values = { value: args };
result.ok(clipboardjs.getInstance().setText(result.callbackId, values), false);
},
getText: function (success, fail, args, env) {
var result = new PluginResult(args, env);
result.ok(clipboardjs.getInstance().getText(), false);
}
};
///////////////////////////////////////////////////////////////////
// JavaScript wrapper for JNEXT plugin for connection
///////////////////////////////////////////////////////////////////
JNEXT.clipboardjs = function () {
var self = this,
hasInstance = false;
self.getId = function () {
return self.m_id;
};
self.init = function () {
if (!JNEXT.require("libclipboard3")) {
return false;
}
self.m_id = JNEXT.createObject("libclipboard3.ClipboardJS");
if (self.m_id === "") {
return false;
}
JNEXT.registerEvents(self);
};
// ************************
// Enter your methods here
// ************************
// calls into InvokeMethod(string command) in template_js.cpp
self.setText = function (callbackId, input) {
return JNEXT.invoke(self.m_id, "setText " + callbackId + " " + JSON.stringify(input));
};
self.getText = function () {
return JNEXT.invoke(self.m_id, "getText");
};
// Fired by the Event framework (used by asynchronous callbacks)
self.onEvent = function (strData) {
var arData = strData.split(" "),
callbackId = arData[0],
result = resultObjs[callbackId],
data = arData.slice(1, arData.length).join(" ");
if (result) {
result.callbackOk(data, false);
delete resultObjs[callbackId];
}
};
// ************************
// End of methods to edit
// ************************
self.m_id = "";
self.getInstance = function () {
if (!hasInstance) {
hasInstance = true;
self.init();
}
return self;
};
};
clipboardjs = new JNEXT.clipboardjs();