]> git.evergreen-ils.org Git - Evergreen.git/blob - Open-ILS/xul/staff_client/chrome/content/util/deck.js
*** empty log message ***
[Evergreen.git] / Open-ILS / xul / staff_client / chrome / content / util / deck.js
1 dump('entering util/deck.js\n');
2
3 if (typeof util == 'undefined') util = {};
4 util.deck = function (id) {
5
6         this.node = document.getElementById(id);
7
8         JSAN.use('util.error'); this.error = new util.error();
9
10         if (!this.node) {
11                 var error = 'util.deck: Could not find element ' + id;
12                 this.error.sdump('D_ERROR',error);
13                 throw(error);
14         }
15         if (this.node.nodeName != 'deck') {
16                 var error = 'util.deck: ' + id + 'is not a deck' + "\nIt's a " + this.node.nodeName;
17                 this.error.sdump('D_ERROR',error);
18                 throw(error);
19         }
20
21         return this;
22 };
23
24 util.deck.prototype = {
25
26         'find_index' : function (url) {
27                 var idx = -1;
28                 var nodes = this.node.childNodes;
29                 for (var i = 0; i < nodes.length; i++) {
30                         if (nodes[i].getAttribute('src') == url) idx = i;
31                 }
32                 return idx;
33         },
34
35         'set_iframe' : function (url,params,content_params) {
36                 this.error.sdump('D_TRACE','util.deck.set_iframe: url = ' + url);
37                 var idx = this.find_index(url);
38                 if (idx>-1) {
39                         this.node.selectedIndex = idx;
40
41                         var iframe = this.node.childNodes[idx];
42
43                         if (content_params) {
44                                 try {
45                                         netscape.security.PrivilegeManager.enablePrivilege("UniversalXPConnect");
46                                         this.error.sdump('D_DECK', 'set_iframe\nurl = ' + url + '\nframe.contentWindow = ' + iframe.contentWindow + '\n' + 'content_params = ' + js2JSON(content_params) );
47                                         iframe.contentWindow.IAMXUL = true;
48                                         iframe.contentWindow.xulG = content_params;
49                                 } catch(E) {
50                                         this.error.sdump('D_ERROR','E: ' + E + '\n');
51                                 }
52                         }
53
54                         return iframe;
55                 } else {
56                         return this.new_iframe(url,params,content_params);
57                 }
58                 
59         },
60
61         'reset_iframe' : function (url,params,content_params) {
62                 this.remove_iframe(url);
63                 return this.new_iframe(url,params,content_params);
64         },
65
66         'new_iframe' : function (url,params,content_params) {
67                 var idx = this.find_index(url);
68                 if (idx>-1) throw('An iframe already exists in deck with url = ' + url);
69
70                 var iframe = document.createElement('iframe');
71                 iframe.setAttribute('src',url);
72                 //iframe.setAttribute('flex','1');
73                 //iframe.setAttribute('style','overflow: scroll');
74                 //iframe.setAttribute('style','border: solid thin red');
75                 this.node.appendChild( iframe );
76                 this.node.selectedIndex = this.node.childNodes.length - 1;
77                 if (content_params) {
78                         try {
79                                 netscape.security.PrivilegeManager.enablePrivilege("UniversalXPConnect");
80                                 this.error.sdump('D_DECK', 'new_iframe\nurl = ' + url + '\nframe.contentWindow = ' + iframe.contentWindow + '\n' + 'content_params = ' + js2JSON(content_params) );
81                                 iframe.contentWindow.IAMXUL = true;
82                                 iframe.contentWindow.xulG = content_params;
83                         } catch(E) {
84                                 this.error.sdump('D_ERROR','E: ' + E + '\n');
85                         }
86                 }
87                 return iframe;
88         },
89
90         'remove_iframe' : function (url) {
91                 var idx = this.find_index(url);
92                 if (idx>-1) {
93                         this.node.removeChild( this.node.childNodes[ idx ] );
94                 }
95         },
96
97         /* FIXME -- consider all the browser stuff broken.. very weird behavior in new_browser */
98
99         'set_browser' : function (url,params,content_params) {
100                 this.error.sdump('D_TRACE','util.deck.set_browser: url = ' + url);
101                 var idx = this.find_index(url);
102                 if (idx>-1) {
103                         this.node.selectedIndex = idx;
104
105                         var browser = this.node.childNodes[idx];
106
107                         if (content_params) {
108                                 /* FIXME -- we'd need to reach in and change the passthru_content_params for the browser, as well as the xulG for the content */ 
109                                 alert("we're in set_browser, content_params = true");
110                         }
111
112                         return browser;
113                 } else {
114                         return this.new_browser(url,params,content_params);
115                 }
116                 
117         },
118
119         'reset_browser' : function (url,params,content_params) {
120                 this.remove_browser(url);
121                 return this.new_browser(url,params,content_params);
122         },
123
124         'new_browser' : function (url,params,content_params) {
125                 try {
126                 alert('in new_browser.. typeof xulG == ' + typeof xulG);
127                 alert('in new_browser.. typeof content_params == ' + typeof content_params);
128                 var obj = this;
129                 var idx = this.find_index(url);
130                 if (idx>-1) throw('A browser already exists in deck with url = ' + url);
131
132                 var browser = document.createElement('browser');
133                 obj.id_incr++;
134                 browser.setAttribute('type','content');
135                 browser.setAttribute('id','frame_'+obj.id_incr);
136                 browser.setAttribute('src',url);
137                 this.node.appendChild( browser );
138                 alert('after append');
139                 this.node.selectedIndex = this.node.childNodes.length - 1;
140                         dump('creating browser with src = ' + url + '\n');
141                         alert('content_params = ' + content_params);
142                         JSAN.use('util.browser');
143                         var b = new util.browser();
144                         b.init(
145                                 {
146                                         'url' : url,
147                                         'push_xulG' : true,
148                                         'alt_print' : false,
149                                         'browser_id' : 'frame_'+obj.id_incr,
150                                         'passthru_content_params' : content_params,
151                                 }
152                         );
153                 return browser;
154                 } catch(E) {
155                         alert(E);
156                 }
157         },
158
159         'remove_browser' : function (url) {
160                 var idx = this.find_index(url);
161                 if (idx>-1) {
162                         this.node.removeChild( this.node.childNodes[ idx ] );
163                 }
164         },
165
166         'id_incr' : 0,
167 }       
168
169 dump('exiting util/deck.js\n');