]> git.evergreen-ils.org Git - Evergreen.git/blob - Open-ILS/web/opac/skin/craftsman/js/sidebar.js
Clean up unneeded alt txt; rework "Add to my list"
[Evergreen.git] / Open-ILS / web / opac / skin / craftsman / js / sidebar.js
1 /* set up the colors in the sidebar 
2         Disables/Enables certain components based on various state data */
3
4 attachEvt("common", "init", initSideBar);
5 attachEvt("common", "init", setSidebarLinks);
6
7 attachEvt("common", "unload", sidebarTreesFree );
8
9 function prevRResults() {
10         return buildOPACLink({ page : RRESULT });
11 }
12
13 function prevMResults() {
14         return buildOPACLink({ page : MRESULT });
15 }
16
17 function initSideBar() {
18         var page = findCurrentPage();
19
20         if( page == MRESULT ) 
21                 unHideMe($("sidebar_results_wrapper"));
22
23         if( page == RRESULT ) {
24                 unHideMe($("sidebar_results_wrapper"));
25                 unHideMe(G.ui.sidebar[MRESULT]);
26                 if( getRtype() == RTYPE_MRID )
27                         $("sidebar_title_group_results").setAttribute("href", prevMResults());
28                 else hideMe($("sidebar_title_group_results").parentNode);
29         }
30
31         if( page == RDETAIL ) {
32                 unHideMe($("sidebar_results_wrapper"));
33
34
35                 unHideMe(G.ui.sidebar[MRESULT]);
36                 if(getRtype())
37                         $("sidebar_title_results").setAttribute("href", prevRResults());
38                 unHideMe(G.ui.sidebar[RRESULT]);
39
40                 if( getRtype() == RTYPE_MRID )
41                         $("sidebar_title_group_results").setAttribute("href", prevMResults());
42                 else hideMe($("sidebar_title_group_results").parentNode);
43         }
44
45         unHideMe(G.ui.sidebar[page]);
46         addCSSClass(G.ui.sidebar[page], "sidebar_item_active");
47
48         /* if we're logged in, show it and replace the Login link with the Logout link */
49         if(grabUser()) {
50                 G.ui.sidebar.username_dest.appendChild(text(G.user.usrname()));
51                 unHideMe(G.ui.sidebar.logoutbox);
52                 unHideMe(G.ui.sidebar.logged_in_as);
53                 hideMe(G.ui.sidebar.loginbox);
54         }
55
56         if(G.ui.sidebar.login) G.ui.sidebar.login.onclick = initLogin;
57         if(G.ui.sidebar.logout) G.ui.sidebar.logout.onclick = doLogout; 
58
59         if(isXUL()) hideMe( G.ui.sidebar.logoutbox );
60 }
61
62 /* sets up the login ui components */
63 var loginBoxVisible = false;
64
65 function loginDance() {
66
67         if(doLogin(true)) {
68
69                 if(!strongPassword( G.ui.login.password.value ) ) {
70
71             dojo.require('dojo.cookie');
72                         dojo.cookie(COOKIE_SES, "");
73                         hideMe($('login_table'));
74                         unHideMe($('change_pw_table'));
75                         $('change_pw_current').focus();
76                         $('change_pw_button').onclick = changePassword;
77                         setEnterFunc($('change_pw_2'), changePassword);
78
79                 } else {
80                         loggedInOK();
81                 }
82         }
83 }
84
85 function loggedInOK() {
86         showCanvas();
87         G.ui.sidebar.username_dest.appendChild(text(G.user.usrname()));
88         unHideMe(G.ui.sidebar.logoutbox);
89         unHideMe(G.ui.sidebar.logged_in_as);
90         hideMe(G.ui.sidebar.loginbox);
91         runEvt( 'common', 'loggedIn');
92         
93         var org = G.user.prefs[PREF_DEF_LOCATION];
94         if(!org) org = G.user.home_ou();
95
96         var depth = G.user.prefs[PREF_DEF_DEPTH];
97         if(! ( depth && depth <= findOrgDepth(org)) ) 
98                 depth = findOrgDepth(org);
99
100         runEvt( "common", "locationChanged", org, depth);
101 }
102
103
104 function changePassword() {
105
106         var pc = $('change_pw_current').value;
107         var p1 = $('change_pw_1').value;
108         var p2 = $('change_pw_2').value;
109
110         if( p1 != p2 ) {
111                 alert($('pw_no_match').innerHTML);
112                 return;
113         }
114
115         if(!strongPassword(p2, true) ) return;
116
117         var req = new Request(UPDATE_PASSWORD, G.user.session, p2, pc );
118         req.send(true);
119         if(req.result()) {
120                 alert($('pw_update_successful').innerHTML);
121                 loggedInOK();
122         }
123 }
124
125 var pwRegexSetting;
126 function strongPassword(pass, alrt) {
127
128     /* first, let's see if there is a configured regex */
129     if(!pwRegexSetting) {
130         var regex = fetchOrgSettingDefault(G.user.home_ou(), 'global.password_regex');
131         if(regex) {
132             if(pass.match(new RegExp(regex))) {
133                 return true;
134             } else {
135                 if(alrt)
136                        alert($('pw_not_strong').innerHTML);
137                 return false;
138             }
139         }
140     }
141
142     /* no regex configured, use the default */
143
144         var good = false;
145
146         do {
147
148                 if(pass.length < 7) break;
149                 if(!pass.match(/.*\d+.*/)) break;
150                 if(!pass.match(/.*[A-Za-z]+.*/)) break;
151                 good = true;
152
153         } while(0);
154
155         if(!good && alrt) alert($('pw_not_strong').innerHTML);
156         return good;
157 }
158
159 function initLogin() {
160
161         G.ui.login.button.onclick = loginDance;
162         G.ui.login.username.onkeydown = 
163                 function(evt) {if(userPressedEnter(evt)) loginDance();};
164         G.ui.login.password.onkeydown = 
165                 function(evt) {if(userPressedEnter(evt)) loginDance();};
166
167 //      if(loginBoxVisible) {
168 //              showCanvas();
169 //      } else {
170                 swapCanvas(G.ui.login.box);
171                 try{G.ui.login.username.focus();}catch(e){}
172 //      }
173
174 //      loginBoxVisible = !loginBoxVisible;
175         G.ui.login.cancel.onclick = showCanvas;
176         if(findCurrentPage() == MYOPAC) 
177                 G.ui.login.cancel.onclick = goHome;
178 }
179
180 function setSidebarLinks() {
181         G.ui.sidebar.home_link.setAttribute("href", buildOPACLink({page:HOME}));
182         G.ui.sidebar.advanced_link.setAttribute("href", buildOPACLink({page:ADVANCED}));
183         G.ui.sidebar.myopac_link.setAttribute("href", buildOPACLink({page:MYOPAC}, false, true));
184 }
185
186 function sidebarTreesFree() {
187         removeChildren($(subjectSidebarTree.rootid));
188         removeChildren($(authorSidebarTree.rootid));
189         removeChildren($(seriesSidebarTree.rootid));
190         subjectSidebarTree = null;
191         authorSidebarTree = null;
192         seriesSidebarTree = null;
193 }
194
195
196
197
198 /* --------------------------------------------------------------------------------- */
199 /* Code to support GALILEO links for PINES.  Fails gracefully
200 /* --------------------------------------------------------------------------------- */
201 attachEvt('common', 'init', buildEGGalLink);
202 function buildEGGalLink() {
203
204         /* we're in a lib, nothing to do here */
205         if( getOrigLocation() ) return;
206         if(!$('eg_gal_link')) return;
207
208         //var link = 'http://demo.galib.uga.edu/express?pinesid=';
209         var link = 'http://www.galileo.usg.edu/express?pinesid=';
210         if(grabUser()) {
211                 $('eg_gal_link').setAttribute('href', link + G.user.session);
212                 return;
213         }
214
215         $('eg_gal_link').setAttribute('href', 'javascript:void(0);');
216         $('eg_gal_link').setAttribute('target', '');
217         $('eg_gal_link').onclick = function() {
218                 /* we're not logged in.  go ahead and login */
219                 detachAllEvt('common','locationChanged');
220                 detachAllEvt('common','loggedIn');
221                 attachEvt('common','loggedIn', function() { goTo(link + G.user.session); })
222                 initLogin();
223         };
224 }
225 /* --------------------------------------------------------------------------------- */
226
227