Permalink
Show file tree
Hide file tree
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Merge branch 'CB-6976-win-universal-apps' of https://github.com/MSOpe…
- Loading branch information
Showing
5 changed files
with
207 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,89 @@ | ||
/* | ||
* | ||
* 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. | ||
* | ||
*/ | ||
|
||
/*jslint sloppy:true, plusplus:true*/ | ||
/*global require, module, console */ | ||
|
||
var cordova = require('cordova'); | ||
var execProxy = require('cordova/exec/proxy'); | ||
|
||
/** | ||
* Execute a cordova command. It is up to the native side whether this action | ||
* is synchronous or asynchronous. The native side can return: | ||
* Synchronous: PluginResult object as a JSON string | ||
* Asynchronous: Empty string "" | ||
* If async, the native side will cordova.callbackSuccess or cordova.callbackError, | ||
* depending upon the result of the action. | ||
* | ||
* @param {Function} success The success callback | ||
* @param {Function} fail The fail callback | ||
* @param {String} service The name of the service to use | ||
* @param {String} action Action to be run in cordova | ||
* @param {String[]} [args] Zero or more arguments to pass to the method | ||
*/ | ||
module.exports = function (success, fail, service, action, args) { | ||
|
||
var proxy = execProxy.get(service, action), | ||
callbackId, | ||
onSuccess, | ||
onError; | ||
|
||
args = args || []; | ||
|
||
if (proxy) { | ||
callbackId = service + cordova.callbackId++; | ||
// console.log("EXEC:" + service + " : " + action); | ||
if (typeof success === "function" || typeof fail === "function") { | ||
cordova.callbacks[callbackId] = {success: success, fail: fail}; | ||
} | ||
try { | ||
// callbackOptions param represents additional optional parameters command could pass back, like keepCallback or | ||
// custom callbackId, for example {callbackId: id, keepCallback: true, status: cordova.callbackStatus.JSON_EXCEPTION } | ||
// CB-5806 [Windows8] Add keepCallback support to proxy | ||
onSuccess = function (result, callbackOptions) { | ||
callbackOptions = callbackOptions || {}; | ||
cordova.callbackSuccess(callbackOptions.callbackId || callbackId, | ||
{ | ||
status: callbackOptions.status || cordova.callbackStatus.OK, | ||
message: result, | ||
keepCallback: callbackOptions.keepCallback || false | ||
}); | ||
}; | ||
onError = function (err, callbackOptions) { | ||
callbackOptions = callbackOptions || {}; | ||
cordova.callbackError(callbackOptions.callbackId || callbackId, | ||
{ | ||
status: callbackOptions.status || cordova.callbackStatus.ERROR, | ||
message: err, | ||
keepCallback: callbackOptions.keepCallback || false | ||
}); | ||
}; | ||
proxy(onSuccess, onError, args); | ||
|
||
} catch (e) { | ||
console.log("Exception calling native with command :: " + service + " :: " + action + " ::exception=" + e); | ||
} | ||
} else { | ||
if (typeof fail === "function") { | ||
fail("Missing Command Error"); | ||
} | ||
} | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,70 @@ | ||
/* | ||
* | ||
* 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. | ||
* | ||
*/ | ||
|
||
module.exports = { | ||
// for backward compatibility we report 'windows8' when run on Windows 8.0 and | ||
// 'windows' for Windows 8.1 and Windows Phone 8.1 | ||
id: (navigator.appVersion.indexOf("MSAppHost/1.0") !== -1) ? 'windows8' : 'windows', | ||
bootstrap:function() { | ||
var cordova = require('cordova'), | ||
exec = require('cordova/exec'), | ||
channel = cordova.require('cordova/channel'), | ||
modulemapper = require('cordova/modulemapper'); | ||
|
||
modulemapper.clobbers('cordova/exec/proxy', 'cordova.commandProxy'); | ||
channel.onNativeReady.fire(); | ||
|
||
var onWinJSReady = function () { | ||
var app = WinJS.Application; | ||
var checkpointHandler = function checkpointHandler() { | ||
cordova.fireDocumentEvent('pause',null,true); | ||
}; | ||
|
||
var resumingHandler = function resumingHandler() { | ||
cordova.fireDocumentEvent('resume',null,true); | ||
}; | ||
|
||
app.addEventListener("checkpoint", checkpointHandler); | ||
Windows.UI.WebUI.WebUIApplication.addEventListener("resuming", resumingHandler, false); | ||
app.start(); | ||
}; | ||
|
||
if (!window.WinJS) { | ||
var scriptElem = document.createElement("script"); | ||
|
||
if (navigator.appVersion.indexOf("Windows Phone 8.1;") !== -1) { | ||
// windows phone 8.1 + Mobile IE 11 | ||
scriptElem.src = "//Microsoft.Phone.WinJS.2.1/js/base.js"; | ||
} else if (navigator.appVersion.indexOf("MSAppHost/2.0;") !== -1) { | ||
// windows 8.1 + IE 11 | ||
scriptElem.src = "//Microsoft.WinJS.2.0/js/base.js"; | ||
} else { | ||
// windows 8.0 + IE 10 | ||
scriptElem.src = "//Microsoft.WinJS.1.0/js/base.js"; | ||
} | ||
scriptElem.addEventListener("load", onWinJSReady); | ||
document.head.appendChild(scriptElem); | ||
} | ||
else { | ||
onWinJSReady(); | ||
} | ||
} | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
/* | ||
* | ||
* 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. | ||
* | ||
*/ | ||
|
||
console.log('WARNING: please require cordova/exec/proxy instead'); | ||
module.exports = require('cordova/exec/proxy'); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
/* | ||
* | ||
* 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. | ||
* | ||
*/ | ||
|
||
console.log('WARNING: please require cordova/exec/proxy instead'); | ||
module.exports = require('cordova/exec/proxy'); |