diff options
Diffstat (limited to 'js/components/prompt.reel')
-rw-r--r-- | js/components/prompt.reel/prompt.js | 135 |
1 files changed, 68 insertions, 67 deletions
diff --git a/js/components/prompt.reel/prompt.js b/js/components/prompt.reel/prompt.js index 52f8e4e0..1464c3d6 100644 --- a/js/components/prompt.reel/prompt.js +++ b/js/components/prompt.reel/prompt.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,68 +31,68 @@ 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.NinjaPrompt = Montage.create(Component, { | 38 | exports.NinjaPrompt = Montage.create(Component, { |
38 | //////////////////////////////////////////////////////////////////// | 39 | //////////////////////////////////////////////////////////////////// |
39 | //TODO: This should have an UI template eventually | 40 | //TODO: This should have an UI template eventually |
40 | hasTemplate: { | 41 | hasTemplate: { |
41 | value: false | 42 | value: false |
42 | }, | 43 | }, |
43 | //////////////////////////////////////////////////////////////////// | 44 | //////////////////////////////////////////////////////////////////// |
44 | //Type of prompt window (should be confirm, prompt, alert, or input) | 45 | //Type of prompt window (should be confirm, prompt, alert, or input) |
45 | _type: { | 46 | _type: { |
46 | value: null | 47 | value: null |
47 | }, | 48 | }, |
48 | //////////////////////////////////////////////////////////////////// | 49 | //////////////////////////////////////////////////////////////////// |
49 | // | 50 | // |
50 | _params: { | 51 | _params: { |
51 | value: null | 52 | value: null |
52 | }, | 53 | }, |
53 | //////////////////////////////////////////////////////////////////// | 54 | //////////////////////////////////////////////////////////////////// |
54 | // | 55 | // |
55 | _callback: { | 56 | _callback: { |
56 | value: null | 57 | value: null |
57 | }, | 58 | }, |
59 | //////////////////////////////////////////////////////////////////// | ||
60 | // | ||
61 | initialize: { | ||
62 | value: function (type, params, callback) { | ||
63 | // | ||
64 | this._type = type.toLowerCase(); | ||
65 | this._params = params; | ||
66 | this._callback = callback; | ||
67 | } | ||
68 | }, | ||
69 | //////////////////////////////////////////////////////////////////// | ||
70 | // | ||
71 | show: { | ||
72 | value: function () { | ||
73 | // | ||
74 | var input; | ||
75 | // | ||
76 | switch (this._type) { | ||
77 | case 'confirm': | ||
78 | input = confirm(this._params.message); | ||
79 | if (this._callback) this._callback(input); | ||
80 | break; | ||
81 | default: | ||
82 | //TODO: Add support for other standard box types | ||
83 | break; | ||
84 | } | ||
85 | } | ||
86 | }, | ||
87 | //////////////////////////////////////////////////////////////////// | ||
88 | //This is for later, need to hide if need (overwrite) | ||
89 | hide: { | ||
90 | value: function () { | ||
91 | //TODO: Add support as real UI component | ||
92 | } | ||
93 | } | ||
94 | //////////////////////////////////////////////////////////////////// | ||
58 | //////////////////////////////////////////////////////////////////// | 95 | //////////////////////////////////////////////////////////////////// |
59 | // | ||
60 | initialize: { | ||
61 | value: function (type, params, callback) { | ||
62 | // | ||
63 | this._type = type.toLowerCase(); | ||
64 | this._params = params; | ||
65 | this._callback = callback; | ||
66 | } | ||
67 | }, | ||
68 | //////////////////////////////////////////////////////////////////// | ||
69 | // | ||
70 | show: { | ||
71 | value: function () { | ||
72 | // | ||
73 | var input; | ||
74 | // | ||
75 | switch (this._type) { | ||
76 | case 'confirm': | ||
77 | input = confirm(this._params.message); | ||
78 | if (this._callback) this._callback(input); | ||
79 | break; | ||
80 | default: | ||
81 | //TODO: Add support for other standard box types | ||
82 | break; | ||
83 | } | ||
84 | } | ||
85 | }, | ||
86 | //////////////////////////////////////////////////////////////////// | ||
87 | //This is for later, need to hide if need (overwrite) | ||
88 | hide: { | ||
89 | value: function () { | ||
90 | //TODO: Add support as real UI component | ||
91 | } | ||
92 | } | ||
93 | //////////////////////////////////////////////////////////////////// | ||
94 | //////////////////////////////////////////////////////////////////// | ||
95 | }); | 96 | }); |
96 | //////////////////////////////////////////////////////////////////////// | 97 | //////////////////////////////////////////////////////////////////////// |
97 | //////////////////////////////////////////////////////////////////////// | 98 | //////////////////////////////////////////////////////////////////////// |