]> git.evergreen-ils.org Git - Evergreen.git/blob - Open-ILS/web/conify/global/permission/perm_list.html
fixing translation framework for perms and statuses; adding marc codes to admin page
[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>Confiy :: 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                                 window.highlighter.green = dojox.fx.highlight( { color : '#B4FFB4', node : 'grid_container', duration : 500 } );
66                                 window.highlighter.red = dojox.fx.highlight( { color : '#FF2018', node : 'grid_container', duration : 500 } );
67
68                 pCRUD.request({
69                     method : 'open-ils.permacrud.search.ppl.atomic',
70                     timeout : 10,
71                     params : [ ses, { id : { "!=" : null } }, { order_by : { ppl : 'code' } } ],
72                     onerror : function (r) { status_update('Problem fetching perms') },
73                     oncomplete : function (r) {
74
75                         window._perm_list = r.recv().content();
76                         window._perm_data = ppl.toStoreData( window._perm_list, 'code' );
77                         window.perm_store = new dojo.data.ItemFileWriteStore({ data : window._perm_data });
78
79                             perm_store.onSet = function (item, attr, o, n) {
80                             if (attr == 'ischanged') return;
81                             if (n == o) return;
82                             this.setValue( item, 'ischanged', 1);
83                         };
84
85                                                 window.perm_grid_layout = [
86                                                         {       cells : [
87                                                                         [
88                                                                                 { name : "Code",        field : "code",        width : "300px", editor : dojox.grid.editors.Dijit, rowSpan : "2" },
89                                                                                 { name : "Description", field : "description", width : "auto",  editor : dojox.grid.editors.Editor, style : "minHeight:1em;" }
90                                                                         ],
91                                                                         [
92                                                                                 { name : "Translation",
93                                                                                   width : "10em",
94                                                                                   height : "2em",
95                                                                                   get : function (row) {
96                                                                                         if (!window.perm_rows) window.perm_rows = [];
97                                                                                         var r = window.perm_data_model.getRow(row);
98                                                                                         if (r) {
99                                                                                                 window.perm_rows[row] = new ppl().fromHash(window.perm_data_model.getRow(row));
100                                                                                                 setTimeout(
101                                                                                                         'dojo.query(".perm_grid_trans_desc_' + row + '").'+
102                                                                                                                 'instantiate(openils.widget.TranslatorPopup,{field:"description",'+
103                                                                                                                 'unique:window.perm_rows['+row+'].code(),'+
104                                                                                                                 'targetObject:"window.perm_rows['+row+']"});'+
105                                                                                                                 'perm_grid.rowHeightChanged('+row+')',
106                                                                                                         0
107                                                                                                 );
108                                                                                                 var oldnode = dojo.byId('description_translation_' + row);
109                                                                                                 if (oldnode) dijit.byNode(oldnode).destroyRecursive();
110                                                                                                 return '<span class="perm_grid_trans_desc_'+row+'"></span>';
111                                                                                         }
112                                                                                         return '';
113                                                                                   }
114                                                                                 }
115                                                                         ]
116                                                                 ]
117                                                         }
118                                                 ];
119
120                         dojo.addOnUnload( function (event) {
121
122                             perm_store.fetch({
123                                 query : { ischanged : 1 },
124                                 onItem : function (item, req) { try { if (this.isItem( item )) window.dirtyStore.push( item ); } catch (e) { /* meh */ } },
125                                 scope : perm_store
126                             });
127
128                             if (dirtyStore.length > 0) {
129                                 var confirmation = confirm(
130                                     'There are unsaved modified Permissions!  '+
131                                     'OK to save these changes, Cancel to abandon them.'
132                                 );
133
134                                 if (confirmation) {
135                                     for (var i in window.dirtyStore) {
136                                         window.current_perm = window.dirtyStore[i];
137                                         save_perm(true);
138                                     }
139                                 }
140                             }
141
142                         });
143                     }
144                 }).send();
145
146                         </script>
147
148                         <div dojoType="dijit.layout.LayoutContainer" orientation="horizontal" style="margin-top: 5px;" layoutAlign="top">
149                                 <span>New Permission:</span>
150                                 <div dojoType="dijit.form.TextBox" id="new_perm_code" jsId="new_perm_code" label="New Code"></div>
151                                 <button dojoType="dijit.form.Button" id="save_new_perm_code" jsId="save_new_perm_code" label="Add"> 
152                                         <script type="dojo/connect" event="onClick">
153
154                                                 var new_code = new_perm_code.getValue();
155                                                 if (!new_code) return;
156
157                         var new_fm_obj = new ppl().fromHash({
158                                 isnew           : 1,
159                             code            : new_code
160                             });
161     
162                         var err = false;
163                             pCRUD.request({
164                             method : 'open-ils.permacrud.create.ppl',
165                                 timeout : 10,
166                             params : [ ses, new_fm_obj ],
167                                 onerror : function (r) {
168                                 highlighter.red.play();
169                                     status_update( 'Problem calling method to create new Permission' );
170                                 err = true;
171                                 },
172                                 oncomplete : function (r) {
173                                 var res = r.recv();
174                                     if ( res && res.content() ) {
175                                     var new_item_hash = res.content().toHash();
176                                     perm_store.newItem( new_item_hash );
177                                                                         status_update( 'New ' + new_item_hash.code + ' permission created' );
178                                                                         perm_grid.model.sort(-1);
179                                                                         highlighter.green.play();
180                                 } else {
181                                         highlighter.red.play();
182                                     status_update( 'Problem creating new Permission' );
183                                         err = true;
184                                 }
185                                 }
186                         }).send();
187     
188                         </script>
189                                 </button>
190                         </div>
191
192                         <div dojoType="dijit.layout.ContentPane" style="width:100%; height:100%;" layoutAlign="client">
193                                 <div dojoType="dojox.grid.data.DojoData" id="perm_data_model"jsId="perm_data_model" store="perm_store" query="{ code : '*' }"></div>
194                                 <div id="perm_grid" dojoType="dojox.Grid" model="perm_data_model" structure="perm_grid_layout" jsId="perm_grid">
195                                         <!!--
196                                         <script type="dojo/connect" event="onSet" args="item,attr,oldVal,newVal">
197                                         </script>
198                                         -->
199                                 </div>
200                         </div>
201
202                         <div dojoType="dijit.layout.ContentPane" orientation="horizontal" style="margin-bottom: 5px;" layoutAlign="bottom">
203                 
204                                 <button jsId="save_ppl_button" dojoType="dijit.form.Button" label="Save Changes" onClick="save_them_all()"></button>
205                 
206                                 <button jsId="delete_ppl_button" dojoType="dijit.form.Button" label="Delete Selected">
207                                         <script type="dojo/connect" event="onClick">
208
209                                                 var selected_rows = perm_grid.selection.getSelected();
210                 
211                                                 var selected_items = [];
212                                                 for (var i in selected_rows) {
213                                                         selected_items.push(
214                                                                 perm_grid.model.getRow( selected_rows[i] ).__dojo_data_item
215                                                         );
216                                                 }
217
218                                                 perm_grid.selection.clear();
219
220                                                 for (var i in selected_items) {
221                                                         current_perm = selected_items[i];
222
223                                                         if ( confirm('Are you sure you want to delete ' + perm_store.getValue( current_perm, 'code' ) + '?')) {
224
225                                                                 perm_store.setValue( current_perm, 'isdeleted', 1 );
226                         
227                                                                 var modified_ppl = new ppl().fromStoreItem( current_perm );
228                                                                 modified_ppl.isdeleted( 1 );
229                         
230                                                                 pCRUD.request({
231                                                                         method : 'open-ils.permacrud.delete.ppl',
232                                                                         timeout : 10,
233                                                                         params : [ ses, modified_ppl ],
234                                                                         onerror : function (r) {
235                                                                                 highlighter.red.play();
236                                                                                 status_update( 'Problem deleting ' + perm_store.getValue( current_perm, 'code' ) );
237                                                                         },
238                                                                         oncomplete : function (r) {
239                                                                                 var res = r.recv();
240                                                                                 if ( res && res.content() ) {
241                         
242                                                                                         var old_name = perm_store.getValue( current_perm, 'code' );
243                 
244                                                                                         perm_store.fetch({
245                                                                                                 query : { id : perm_store.getValue( current_perm, 'id' ) },
246                                                                                                 onItem : function (item, req) { try { if (this.isItem( item )) this.deleteItem( item ); } catch (e) { /* meh */ } },
247                                                                                                 scope : perm_store
248                                                                                         });
249                         
250                                                                                         current_perm = null;
251                         
252                                                                                         highlighter.green.play();
253                                                                                         status_update( old_name + ' deleted' );
254                                                                                 } else {
255                                                                                         highlighter.red.play();
256                                                                                         status_update( 'Problem deleting ' + old_name );
257                                                                                 }
258                                                                         }
259                                                                 }).send();
260                 
261                                                         }
262                                                 }
263         
264                                         </script>
265                                 </button>
266         
267                         </div>
268                 </div>
269         
270         </body>
271 </html>