You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cordova.apache.org by pu...@apache.org on 2014/11/13 03:05:20 UTC

[3/5] cordova-plugin-statusbar git commit: Renamed to proxy

Renamed to proxy


Project: http://git-wip-us.apache.org/repos/asf/cordova-plugin-statusbar/repo
Commit: http://git-wip-us.apache.org/repos/asf/cordova-plugin-statusbar/commit/7bc7c326
Tree: http://git-wip-us.apache.org/repos/asf/cordova-plugin-statusbar/tree/7bc7c326
Diff: http://git-wip-us.apache.org/repos/asf/cordova-plugin-statusbar/diff/7bc7c326

Branch: refs/heads/master
Commit: 7bc7c326c8a3ed7f2ec03e5dd099233cf90bf98a
Parents: 8397851
Author: Jesse MacFadyen <pu...@gmail.com>
Authored: Wed Nov 12 14:53:06 2014 -0800
Committer: Jesse MacFadyen <pu...@gmail.com>
Committed: Wed Nov 12 14:53:06 2014 -0800

----------------------------------------------------------------------
 src/windows/StatusBar.js      | 90 ------------------------------------
 src/windows/StatusBarProxy.js | 94 ++++++++++++++++++++++++++++++++++++++
 2 files changed, 94 insertions(+), 90 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/cordova-plugin-statusbar/blob/7bc7c326/src/windows/StatusBar.js
----------------------------------------------------------------------
diff --git a/src/windows/StatusBar.js b/src/windows/StatusBar.js
deleted file mode 100644
index 1d5a60a..0000000
--- a/src/windows/StatusBar.js
+++ /dev/null
@@ -1,90 +0,0 @@
-/*
- *
- * 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.
- *
- */
-var statusBar = Windows.UI.ViewManagement.StatusBar.getForCurrentView();
-
-function darkForeground () {
-    // dark text ( to be used on a light background )
-    statusBar.foregroundColor = { a: 0, r: 0, g: 0, b: 0 };
-}
-
-function lightForeground() {
-    // light text ( to be used on a dark background )
-    statusBar.foregroundColor = { a: 0, r: 255, g: 255, b: 255 };
-}
-
-function hexToRgb(hex) {
-    // Expand shorthand form (e.g. "03F") to full form (e.g. "0033FF")
-    var shorthandRegex = /^#?([a-f\d])([a-f\d])([a-f\d])$/i;
-    hex = hex.replace(shorthandRegex, function (m, r, g, b) {
-        return r + r + g + g + b + b;
-    });
-
-    var result = /^#?([a-f\d]{2})([a-f\d]{2})([a-f\d]{2})$/i.exec(hex);
-    return result ? {
-        r: parseInt(result[1], 16),
-        g: parseInt(result[2], 16),
-        b: parseInt(result[3], 16)
-    } : null;
-}
-
-var StatusBar = {
-    _ready: function(win, fail) {
-        win(statusBar.occludedRect.height !== 0);
-    },
-
-    overlaysWebView: function () {
-        // not supported
-    },
-
-    styleDefault: function () {
-        darkForeground();
-    },
-
-    styleLightContent: function () {
-        lightForeground();
-    },
-
-    styleBlackTranslucent: function () {
-        // #88000000 ? Apple says to use lightContent instead
-        lightForeground();
-    },
-
-    styleBlackOpaque: function () {
-        // #FF000000 ? Apple says to use lightContent instead
-        lightForeground();
-    },
-
-    backgroundColorByHexString: function (win, fail, args) {
-        var rgb = hexToRgb(args[0]);
-        statusBar.backgroundColor = { a: 0, r: rgb.r, g: rgb.g, b: rgb.b };
-        statusBar.backgroundOpacity = 1;
-    },
-
-    show: function (win, fail) {
-        statusBar.showAsync().done(win, fail);
-    },
-
-    hide: function (win, fail) {
-        statusBar.hideAsync().done(win, fail);
-    }
-};
-
-require("cordova/exec/proxy").add("StatusBar", StatusBar);

http://git-wip-us.apache.org/repos/asf/cordova-plugin-statusbar/blob/7bc7c326/src/windows/StatusBarProxy.js
----------------------------------------------------------------------
diff --git a/src/windows/StatusBarProxy.js b/src/windows/StatusBarProxy.js
new file mode 100644
index 0000000..086c0ac
--- /dev/null
+++ b/src/windows/StatusBarProxy.js
@@ -0,0 +1,94 @@
+/*
+ *
+ * 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.
+ *
+ */
+
+function getViewStatusBar() {
+    return Windows.UI.ViewManagement.StatusBar.getForCurrentView();
+}
+
+function darkForeground () {
+    
+}
+
+function lightForeground() {
+    
+}
+
+function hexToRgb(hex) {
+    // Expand shorthand form (e.g. "03F") to full form (e.g. "0033FF")
+    var shorthandRegex = /^#?([a-f\d])([a-f\d])([a-f\d])$/i;
+    hex = hex.replace(shorthandRegex, function (m, r, g, b) {
+        return r + r + g + g + b + b;
+    });
+
+    var result = /^#?([a-f\d]{2})([a-f\d]{2})([a-f\d]{2})$/i.exec(hex);
+    return result ? {
+        r: parseInt(result[1], 16),
+        g: parseInt(result[2], 16),
+        b: parseInt(result[3], 16)
+    } : null;
+}
+
+module.exports = {
+    _ready: function(win, fail) {
+        win(statusBar.occludedRect.height !== 0);
+    },
+
+    overlaysWebView: function () {
+        // not supported
+    },
+
+    styleDefault: function () {
+        // dark text ( to be used on a light background )
+        getViewStatusBar().foregroundColor = { a: 0, r: 0, g: 0, b: 0 };
+    },
+
+    styleLightContent: function () {
+        // light text ( to be used on a dark background )
+        getViewStatusBar().foregroundColor = { a: 0, r: 255, g: 255, b: 255 };
+    },
+
+    styleBlackTranslucent: function () {
+        // #88000000 ? Apple says to use lightContent instead
+        return this.styleLightContent();
+    },
+
+    styleBlackOpaque: function () {
+        // #FF000000 ? Apple says to use lightContent instead
+        return this.styleLightContent();
+    },
+
+    backgroundColorByHexString: function (win, fail, args) {
+        var rgb = hexToRgb(args[0]);
+        var statusBar = getViewStatusBar();
+        statusBar.backgroundColor = { a: 0, r: rgb.r, g: rgb.g, b: rgb.b };
+        statusBar.backgroundOpacity = 1;
+    },
+
+    show: function (win, fail) {
+        getViewStatusBar().showAsync().done(win, fail);
+    },
+
+    hide: function (win, fail) {
+        getViewStatusBar().hideAsync().done(win, fail);
+    }
+};
+
+require("cordova/exec/proxy").add("StatusBar", module.exports);


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@cordova.apache.org
For additional commands, e-mail: commits-help@cordova.apache.org