diff options
author | John Mayhew | 2012-07-09 17:28:24 -0700 |
---|---|---|
committer | John Mayhew | 2012-07-09 17:28:24 -0700 |
commit | 770bcb52422742ff741a88a75ecefbeb90bc9247 (patch) | |
tree | 64cb3e09a8daeb340261dd7f3869c73f7b90b643 /js/io/ui/cloudpopup.reel/cloudpopup.js | |
parent | 8c5ecaf90062f9e030386f338bdc19fd62b826c8 (diff) | |
parent | 2b2b5fbb4b6a786daa4e9d4ee9eba9ac78924842 (diff) | |
download | ninja-770bcb52422742ff741a88a75ecefbeb90bc9247.tar.gz |
Merge branch 'master' of github.com:Motorola-Mobility/ninja-internal
Conflicts:
manifest.json
Diffstat (limited to 'js/io/ui/cloudpopup.reel/cloudpopup.js')
-rwxr-xr-x | js/io/ui/cloudpopup.reel/cloudpopup.js | 193 |
1 files changed, 97 insertions, 96 deletions
diff --git a/js/io/ui/cloudpopup.reel/cloudpopup.js b/js/io/ui/cloudpopup.reel/cloudpopup.js index c64d8974..200eb703 100755 --- a/js/io/ui/cloudpopup.reel/cloudpopup.js +++ b/js/io/ui/cloudpopup.reel/cloudpopup.js | |||
@@ -1,24 +1,25 @@ | |||
1 | /* <copyright> | 1 | /* <copyright> |
2 | Copyright (c) 2012, Motorola Mobility, Inc | 2 | Copyright (c) 2012, Motorola Mobility LLC. |
3 | All Rights Reserved. | 3 | All Rights Reserved. |
4 | BSD License. | ||
5 | 4 | ||
6 | Redistribution and use in source and binary forms, with or without | 5 | Redistribution and use in source and binary forms, with or without |
7 | modification, are permitted provided that the following conditions are met: | 6 | modification, are permitted provided that the following conditions are met: |
8 | 7 | ||
9 | - Redistributions of source code must retain the above copyright notice, | 8 | * Redistributions of source code must retain the above copyright notice, |
10 | this list of conditions and the following disclaimer. | 9 | this list of conditions and the following disclaimer. |
11 | - Redistributions in binary form must reproduce the above copyright | 10 | |
12 | notice, this list of conditions and the following disclaimer in the | 11 | * Redistributions in binary form must reproduce the above copyright notice, |
13 | documentation and/or other materials provided with the distribution. | 12 | this list of conditions and the following disclaimer in the documentation |
14 | - Neither the name of Motorola Mobility nor the names of its contributors | 13 | and/or other materials provided with the distribution. |
15 | may be used to endorse or promote products derived from this software | 14 | |
16 | without specific prior written permission. | 15 | * Neither the name of Motorola Mobility LLC nor the names of its |
16 | contributors may be used to endorse or promote products derived from this | ||
17 | software without specific prior written permission. | ||
17 | 18 | ||
18 | THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" | 19 | THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" |
19 | AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE | 20 | AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
20 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE | 21 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
21 | ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE | 22 | ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE |
22 | LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR | 23 | LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR |
23 | CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF | 24 | CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF |
24 | SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS | 25 | SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS |
@@ -30,136 +31,136 @@ POSSIBILITY OF SUCH DAMAGE. | |||
30 | 31 | ||
31 | //////////////////////////////////////////////////////////////////////// | 32 | //////////////////////////////////////////////////////////////////////// |
32 | // | 33 | // |
33 | var Montage = require("montage/core/core").Montage, | 34 | var Montage = require("montage/core/core").Montage, |
34 | Component = require("montage/ui/component").Component; | 35 | Component = require("montage/ui/component").Component; |
35 | //////////////////////////////////////////////////////////////////////// | 36 | //////////////////////////////////////////////////////////////////////// |
36 | // | 37 | // |
37 | exports.CloudPopup = Montage.create(Component, { | 38 | exports.CloudPopup = Montage.create(Component, { |
38 | //////////////////////////////////////////////////////////////////// | 39 | //////////////////////////////////////////////////////////////////// |
39 | // | 40 | // |
40 | hasTemplate: { | 41 | hasTemplate: { |
41 | value: true | 42 | value: true |
42 | }, | 43 | }, |
43 | //////////////////////////////////////////////////////////////////// | 44 | //////////////////////////////////////////////////////////////////// |
44 | // | 45 | // |
45 | _os: { | 46 | _os: { |
46 | value: null | 47 | value: null |
47 | }, | 48 | }, |
48 | //////////////////////////////////////////////////////////////////// | 49 | //////////////////////////////////////////////////////////////////// |
49 | // | 50 | // |
50 | components: { | 51 | components: { |
51 | enumerable: false, | 52 | enumerable: false, |
52 | value: {test_btn: null, ok_btn: null, cancel_btn: null, download_btn: null, status: null, url: null} | 53 | value: {test_btn: null, ok_btn: null, cancel_btn: null, download_btn: null, status: null, url: null} |
53 | }, | 54 | }, |
54 | //////////////////////////////////////////////////////////////////// | 55 | //////////////////////////////////////////////////////////////////// |
55 | // | 56 | // |
56 | prepareForDraw: { | 57 | prepareForDraw: { |
57 | enumerable: false, | 58 | enumerable: false, |
58 | value: function () { | 59 | value: function () { |
59 | // | 60 | // |
60 | this.components.test_btn = this.element.getElementsByClassName('btn_test nj-skinned')[0]; | 61 | this.components.test_btn = this.element.getElementsByClassName('btn_test nj-skinned')[0]; |
61 | this.components.ok_btn = this.element.getElementsByClassName('btn_ok nj-skinned')[0]; | 62 | this.components.ok_btn = this.element.getElementsByClassName('btn_ok nj-skinned')[0]; |
62 | this.components.cancel_btn = this.element.getElementsByClassName('btn_cancel nj-skinned')[0]; | 63 | this.components.cancel_btn = this.element.getElementsByClassName('btn_cancel nj-skinned')[0]; |
63 | this.components.status = this.element.getElementsByClassName('status')[0]; | 64 | this.components.status = this.element.getElementsByClassName('status')[0]; |
64 | this.components.url = this.element.getElementsByClassName('cloud_url')[0]; | 65 | this.components.url = this.element.getElementsByClassName('cloud_url')[0]; |
65 | this.components.download_btn = this.element.getElementsByClassName('btn_download nj-skinned')[0]; | 66 | this.components.download_btn = this.element.getElementsByClassName('btn_download nj-skinned')[0]; |
66 | } | 67 | } |
67 | }, | 68 | }, |
68 | //////////////////////////////////////////////////////////////////// | 69 | //////////////////////////////////////////////////////////////////// |
69 | // | 70 | // |
70 | willDraw: { | 71 | willDraw: { |
71 | enumerable: false, | 72 | enumerable: false, |
72 | value: function() { | 73 | value: function() { |
73 | // | 74 | // |
74 | if (navigator.appVersion.indexOf("Win")!=-1) { | 75 | if (navigator.appVersion.indexOf("Win")!=-1) { |
75 | this._os = 'windows'; | 76 | this._os = 'windows'; |
76 | } else if (navigator.appVersion.indexOf("Mac")!=-1) { | 77 | } else if (navigator.appVersion.indexOf("Mac")!=-1) { |
77 | this._os = 'mac'; | 78 | this._os = 'mac'; |
78 | } else { | 79 | } else { |
79 | //Alternate message for no OS detected (probably Linux) | 80 | //Alternate message for no OS detected (probably Linux) |
80 | this.element.getElementsByTagName('section')[0].style.display = 'none'; | 81 | this.element.getElementsByTagName('section')[0].style.display = 'none'; |
81 | } | 82 | } |
82 | } | 83 | } |
83 | }, | 84 | }, |
84 | //////////////////////////////////////////////////////////////////// | 85 | //////////////////////////////////////////////////////////////////// |
85 | // | 86 | // |
86 | draw: { | 87 | draw: { |
87 | enumerable: false, | 88 | enumerable: false, |
88 | value: function() { | 89 | value: function() { |
89 | // | 90 | // |
90 | if (this.application.localStorage.getItem("ioRootUrl")) { | 91 | if (this.application.localStorage.getItem("ioRootUrl")) { |
91 | this.components.url.value = this.application.localStorage.getItem("ioRootUrl"); | 92 | this.components.url.value = this.application.localStorage.getItem("ioRootUrl"); |
92 | } | 93 | } |
93 | // | 94 | // |
94 | this.testConnection(); | 95 | this.testConnection(); |
95 | if (this.application.ninja.coreIoApi.cloudAvailable()) { | 96 | if (this.application.ninja.coreIoApi.cloudAvailable()) { |
96 | this.closeDialog(); | 97 | this.closeDialog(); |
97 | } | 98 | } |
98 | } | 99 | } |
99 | }, | 100 | }, |
100 | //////////////////////////////////////////////////////////////////// | 101 | //////////////////////////////////////////////////////////////////// |
101 | // | 102 | // |
102 | didDraw: { | 103 | didDraw: { |
103 | enumerable: false, | 104 | enumerable: false, |
104 | value: function() { | 105 | value: function() { |
105 | // | 106 | // |
106 | this.components.download_btn.addEventListener('click', this.downloadCloudApp.bind(this), false); | 107 | this.components.download_btn.addEventListener('click', this.downloadCloudApp.bind(this), false); |
107 | // | 108 | // |
108 | this.components.test_btn.addEventListener('click', this.testConnection.bind(this), false); | 109 | this.components.test_btn.addEventListener('click', this.testConnection.bind(this), false); |
109 | // | 110 | // |
110 | this.components.ok_btn.addEventListener('click', this.closeDialog.bind(this), false); | 111 | this.components.ok_btn.addEventListener('click', this.closeDialog.bind(this), false); |
111 | this.components.cancel_btn.addEventListener('click', this.cancelDialog.bind(this), false); | 112 | this.components.cancel_btn.addEventListener('click', this.cancelDialog.bind(this), false); |
112 | } | 113 | } |
113 | }, | 114 | }, |
114 | //////////////////////////////////////////////////////////////////// | 115 | //////////////////////////////////////////////////////////////////// |
115 | // | 116 | // |
116 | downloadCloudApp: { | 117 | downloadCloudApp: { |
117 | enumerable: false, | 118 | enumerable: false, |
118 | value: function() { | 119 | value: function() { |
119 | if(this._os === 'mac') { | 120 | if(this._os === 'mac') { |
120 | location.href = '/ninja_localcloud_for_mac.zip'; | 121 | location.href = '/ninja_localcloud_for_mac.zip'; |
121 | } else if (this._os === 'windows') { | 122 | } else if (this._os === 'windows') { |
122 | location.href = '/ninja_localcloud_for_windows.zip'; | 123 | location.href = '/ninja_localcloud_for_windows.zip'; |
123 | } else { | 124 | } else { |
124 | alert('Your operating system is not supported by the Ninja Local Cloud App.'); | 125 | alert('Your operating system is not supported by the Ninja Local Cloud App.'); |
125 | } | 126 | } |
126 | } | 127 | } |
127 | }, | 128 | }, |
128 | //////////////////////////////////////////////////////////////////// | 129 | //////////////////////////////////////////////////////////////////// |
129 | // | 130 | // |
130 | testConnection: { | 131 | testConnection: { |
131 | enumerable: false, | 132 | enumerable: false, |
132 | value: function() { | 133 | value: function() { |
133 | // | 134 | // |
134 | this.application.ninja.coreIoApi.rootUrl = this.components.url.value; | 135 | this.application.ninja.coreIoApi.rootUrl = this.components.url.value; |
135 | // | 136 | // |
136 | if (this.application.ninja.coreIoApi.cloudAvailable()) { | 137 | if (this.application.ninja.coreIoApi.cloudAvailable()) { |
137 | this.components.status.style.color = '#77FF00'; |