]> git.evergreen-ils.org Git - Evergreen.git/blob - Open-ILS/web/conify/global/permission/perm_list.html
Prepare Conify for XMLENT
[Evergreen.git] / Open-ILS / web / conify / global / permission / perm_list.html
1 <!--
2 # Copyright (C) 2008  Georgia Public Library Service / Equinox Software, Inc
3 # Mike Rylander <miker@esilibrary.com>
4
5 # This program is free software; you can redistribute it and/or
6 # modify it under the terms of the GNU General Public License
7 # as published by the Free Software Foundation; either version 2
8 # of the License, or (at your option) any later version.
9
10 # This program is distributed in the hope that it will be useful,
11 # but WITHOUT ANY WARRANTY; without even the implied warranty of
12 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13 # GNU General Public License for more details.
14 -->
15 <html xmlns="http://www.w3.org/1999/xhtml">
16         <head>
17                 <title>Conify :: Global :: Permission :: Permission List</title>
18
19                 <style type="text/css">
20                         @import url('/js/dojo/dojox/grid/_grid/tundraGrid.css');
21                         @import url('/js/dojo/dojo/resources/dojo.css');
22                         @import url('/js/dojo/dijit/themes/tundra/tundra.css');
23                         @import url('/js/dojo/dojox/widget/Toaster/Toaster.css');
24                 </style>
25
26                 <style>
27                         html, body {
28                                 height: 100%;
29                                 width: 100%;
30                                 margin: 0px 0px 0px 0px;
31                                 padding: 0px 0px 0px 0px;
32                                 overflow: hidden;
33                         }
34
35                         #perm_grid {
36                                 border: 0px;
37                                 width: 100%;
38                                 height: 100%;
39                         }
40
41                         #grid_container {
42                                 width: 100%;
43                                 height: 100%;
44                         }
45                 </style>
46
47                 <!-- The OpenSRF API writ JS -->
48                 <script language='javascript' src='/opac/common/js/utils.js' type='text/javascript'></script>
49                 <script language='javascript' src='/opac/common/js/Cookies.js' type='text/javascript'></script>
50                 <script language='javascript' src='/opac/common/js/CGI.js' type='text/javascript'></script>
51                 <script language='javascript' src='/opac/common/js/JSON_v1.js' type='text/javascript'></script>
52
53                 <!-- Dojo goodness -->
54                 <script type="text/javascript" src="/js/dojo/dojo/dojo.js" djConfig="parseOnLoad: true"></script>
55                 <script type="text/javascript" src="/js/dojo/dijit/dijit.js"></script>
56
57                 <script type="text/javascript" src="perm_list.js"></script>
58
59         </head>
60
61         <body class="tundra" id='pagebody'>
62
63                 <div dojoType="dijit.layout.LayoutContainer" id="grid_container" jsId="grid_container" orientation="vertical">
64                         <script type="dojo/method">
65 <!--
66                                 window.highlighter= {};
67                                 window.highlighter.green = dojox.fx.highlight( { color : '#B4FFB4', node : 'grid_container', duration : 500 } );
68                                 window.highlighter.red = dojox.fx.highlight( { color : '#FF2018', node : 'grid_container', duration : 500 } );
69
70                                 window.dirtyStore = [];
71
72                 pCRUD.request({
73                     method : 'open-ils.permacrud.search.ppl.atomic',
74                     timeout : 10,
75                     params : [ ses, { id : { "!=" : null } }, { order_by : { ppl : 'code' } } ],
76                     onerror : function (r) { status_update('Problem fetching perms') },
77                     oncomplete : function (r) {
78
79                         window._perm_list = r.recv().content();
80                         window._perm_data = ppl.toStoreData( window._perm_list, 'code' );
81                         window.perm_store = new dojo.data.ItemFileWriteStore({ data : window._perm_data });
82
83                             perm_store.onSet = function (item, attr, o, n) {
84                             if (attr == 'ischanged') return;
85                             if (n == o) return;
86                             this.setValue( item, 'ischanged', 1);
87                         };
88
89                                                 window.perm_grid_layout = [
90                                                         {       cells : [
91                                                                         [
92                                                                                 { name : "Code",        field : "code",        width : "300px", editor : dojox.grid.editors.Dijit, rowSpan : "2" },
93                                                                                 { name : "Description", field : "description", width : "auto",  editor : dojox.grid.editors.Editor, style : "minHeight:1em;" }
94                                                                         ],
95                                                                         [
96                                                                                 { name : "Translation",
97                                                                                   width : "10em",
98                                                                                   height : "2em",
99                                                                                   get : function (row) {
100                                                                                         if (!window.perm_rows) window.perm_rows = [];
101                                                                                         var r = window.perm_data_model.getRow(row);
102                                                                                         if (r) {
103                                                                                                 window.perm_rows[row] = new ccs().fromHash(window.perm_data_model.getRow(row));
104                                                                                                 setTimeout(
105                                                                                                         'dojo.query(".perm_grid_trans_desc_' + row + '").'+
106                                                                                                                 'instantiate(openils.widget.TranslatorPopup,{field:"description",'+
107                                                                                                                 'targetObject:"window.perm_rows['+row+']"});'+
108                                                                                                                 'perm_grid.rowHeightChanged('+row+')',
109                                                                                                         0
110                                                                                                 );
111                                                                                                 var oldnode = dojo.byId('description_translation_' + row);
112                                                                                                 if (oldnode) dijit.byNode(oldnode).destroyRecursive();
113                                                                                                 return '<span class="perm_grid_trans_desc_'+row+'"></span>';
114                                                                                         }
115                                                                                         return '';
116                                                                                   }
117                                                                                 }
118                                                                         ]
119                                                                 ]
120                                                         }
121                                                 ];
122
123                         dojo.addOnUnload( function (event) {
124
125                             perm_store.fetch({
126                                 query : { ischanged : 1 },
127                                 onItem : function (item, req) { try { if (this.isItem( item )) window.dirtyStore.push( item ); } catch (e) { /* meh */ } },
128                                 scope : perm_store
129                             });
130
131                             if (dirtyStore.length > 0) {
132                                 var confirmation = confirm(
133                                     'There are unsaved modified Permissions!  '+
134                                     'OK to save these changes, Cancel to abandon them.'
135                                 );
136
137                                 if (confirmation) {
138                                     for (var i in window.dirtyStore) {
139                                         window.current_perm = window.dirtyStore[i];
140                                         save_perm(true);
141                                     }
142                                 }
143                             }
144
145                         });
146                     }
147                 }).send();
148 -->
149                         </script>
150
151                         <div dojoType="dijit.layout.LayoutContainer" orientation="horizontal" style="margin-top: 5px;" layoutAlign="top">
152                                 <span>New Permission:</span>
153                                 <div dojoType="dijit.form.TextBox" id="new_perm_code" jsId="new_perm_code" label="New Code"></div>
154                                 <button dojoType="dijit.form.Button" id="save_new_perm_code" jsId="save_new_perm_code" label="Add"> 
155                                         <script type="dojo/connect" event="onClick">
156 <!--
157                                                 var new_code = new_perm_code.getValue();
158                                                 if (!new_code) return;
159
160                         var new_fm_obj = new ppl().fromHash({
161                                 isnew           : 1,
162                             code            : new_code
163                             });
164     
165                         var err = false;
166                             pCRUD.request({
167                             method : 'open-ils.permacrud.create.ppl',
168                                 timeout : 10,
169                             params : [ ses, new_fm_obj ],
170                                 onerror : function (r) {
171                                 highlighter.red.play();
172                                     status_update( 'Problem calling method to create new Permission' );
173                                 err = true;
174                                 },
175                                 oncomplete : function (r) {
176                                 var res = r.recv();
177                                     if ( res && res.content() ) {
178                                     var new_item_hash = res.content().toHash();
179                                     perm_store.newItem( new_item_hash );
180                                                                         status_update( 'New ' + new_item_hash.code + ' permission created' );
181                                                                         perm_grid.model.sort(-1);
182                                                                         highlighter.green.play();
183                                 } else {
184                                         highlighter.red.play();
185                                     status_update( 'Problem creating new Permission' );
186                                         err = true;
187                                 }
188                                 }
189                         }).send();
190 --> 
191                         </script>
192                                 </button>
193                         </div>
194
195                         <div dojoType="dijit.layout.ContentPane" style="width:100%; height:100%;" layoutAlign="client">
196                                 <div dojoType="dojox.grid.data.DojoData" id="perm_data_model" jsId="perm_data_model" store="perm_store" query="{ code : '*' }"></div>
197                                 <div id="perm_grid" dojoType="dojox.Grid" model="perm_data_model" structure="perm_grid_layout" jsId="perm_grid">
198                                         <!--
199                                         <script type="dojo/connect" event="onSet" args="item,attr,oldVal,newVal">
200                                         </script>
201                                         -->
202                                 </div>
203                         </div>
204
205                         <div dojoType="dijit.layout.ContentPane" orientation="horizontal" style="margin-bottom: 5px;" layoutAlign="bottom">
206                 
207                                 <button jsId="save_ppl_button" dojoType="dijit.form.Button" label="Save Changes" onClick="save_them_all()"></button>
208                 
209                                 <button jsId="delete_ppl_button" dojoType="dijit.form.Button" label="Delete Selected">
210                                         <script type="dojo/connect" event="onClick">
211 <!--
212                                                 var selected_rows = perm_grid.selection.getSelected();
213                 
214                                                 var selected_items = [];
215                                                 for (var i in selected_rows) {
216                                                         selected_items.push(
217                                                                 perm_grid.model.getRow( selected_rows[i] ).__dojo_data_item
218                                                         );
219                                                 }
220
221                                                 perm_grid.selection.clear();
222
223                                                 for (var i in selected_items) {
224                                                         current_perm = selected_items[i];
225
226                                                         if ( confirm('Are you sure you want to delete ' + perm_store.getValue( current_perm, 'code' ) + '?')) {
227
228                                                                 perm_store.setValue( current_perm, 'isdeleted', 1 );
229                         
230                                                                 var modified_ppl = new ppl().fromStoreItem( current_perm );
231                                                                 modified_ppl.isdeleted( 1 );
232                         
233                                                                 pCRUD.request({
234                                                                         method : 'open-ils.permacrud.delete.ppl',
235                                                                         timeout : 10,
236                                                                         params : [ ses, modified_ppl ],
237                                                                         onerror : function (r) {
238                                                                                 highlighter.red.play();
239                                                                                 status_update( 'Problem deleting ' + perm_store.getValue( current_perm, 'code' ) );
240                                                                         },
241                                                                         oncomplete : function (r) {
242                                                                                 var res = r.recv();
243                                                                                 if ( res && res.content() ) {
244                         
245                                                                                         var old_name = perm_store.getValue( current_perm, 'code' );
246                 
247                                                                                         perm_store.fetch({
248                                                                                                 query : { id : perm_store.getValue( current_perm, 'id' ) },
249                                                                                                 onItem : function (item, req) { try { if (this.isItem( item )) this.deleteItem( item ); } catch (e) { /* meh */ } },
250                                                                                                 scope : perm_store
251                                                                                         });
252                         
253                                                                                         current_perm = null;
254                         
255                                                                                         highlighter.green.play();
256                                                                                         status_update( old_name + ' deleted' );
257                                                                                 } else {
258                                                                                         highlighter.red.play();
259                                                                                         status_update( 'Problem deleting ' + old_name );
260                                                                                 }
261                                                                         }
262                                                                 }).send();
263                 
264                                                         }
265                                                 }
266 -->
267                                         </script>
268                                 </button>
269         
270                         </div>
271                 </div>
272         
273         </body>
274 </html>