]> git.evergreen-ils.org Git - working/Evergreen.git/blob - Open-ILS/src/templates/opac/parts/org_selector.tt2
LP1207396 Patron self-registration web form
[working/Evergreen.git] / Open-ILS / src / templates / opac / parts / org_selector.tt2
1 [%
2 # Org Unit Selector Widget :
3 #   INCLUDE build_org_selector id='selector-id' name='selector-name' 
4 #       value=org_id show_loc_groups=1/0 can_have_vols_only=1/0
5 #       can_have_users_only=1/0
6 #
7 # NOTE: DO NOT USE PROCESS
8 # Use of PROCESS results in internal variables, such as value or org_unit, to "leak" out
9
10 PROCESS "opac/parts/misc_util.tt2";
11 PROCESS get_library;
12
13 BLOCK build_org_selector;
14     node_stack = [{org => org_unit || ctx.aouct_tree || ctx.aou_tree}];
15     inherited_vis = ctx.get_cgf('opac.org_unit.non_inherited_visibility').enabled == 'f';
16
17     IF !name; 
18         name = loc_name;
19     END;
20     IF !value;
21         value = loc_value;
22     END;
23
24     # if the selected org unit is out of hiding scope, 
25     # disable the ou-hide scoping altogether.
26     hiding_disabled = ctx.org_hiding_disabled(value);
27
28     -%]
29
30     <select [% IF id %] id='[% id %]' [% END -%]
31             [% IF arialabel %] aria-label='[% arialabel %]' [% END -%]
32             name='[% name %]'>
33     [%- 
34         WHILE node_stack.size > 0; 
35             node = node_stack.pop();
36             org_unit = node.org;
37             loc_grp = node.loc_grp;
38             ou_id = org_unit.id;
39             css_class = '';
40             disabled = '';
41             selected = '';
42             visible = org_unit.opac_visible == 't';
43
44             # org and all children are invisible.
45             NEXT IF !visible AND inherited_vis AND !ctx.is_staff;
46
47             IF !loc_grp; # processing an org unit
48
49                 top_loc_groups = [];
50                 IF show_loc_groups;
51                     # add the location groups that sort below the child org units
52                     FOR grp IN ctx.copy_location_groups.$ou_id.reverse;
53                         IF grp.top == 't';
54                             top_loc_groups.push(grp);
55                         ELSE;
56                             node_stack.push({org => org_unit, loc_grp => grp});
57                         END;
58                     END;
59                 END;
60
61                 # add the child org units
62                 FOR child IN org_unit.children.reverse;
63                     node_stack.push({org => child});
64                 END;
65
66                 # add the location groups that sort to the top
67                 # above the child org units
68                 FOR grp IN top_loc_groups;
69                     node_stack.push({org => org_unit, loc_grp => grp});
70                 END;
71
72             END;
73
74             # org is not publicly visible (though its children may be).
75             NEXT UNLESS ctx.is_staff OR visible;
76             
77             # org is not within hiding scope (though its children may be).
78             NEXT UNLESS hiding_disabled OR ctx.org_within_hiding_scope(ou_id);
79
80             node_value = ou_id;
81             IF loc_grp;
82                 node_value = node_value _ ':' _ loc_grp.id; 
83                 css_class = 'class="loc_grp"';
84             ELSE;
85                 css_class = 'class="org_unit"';
86             END;
87
88             IF can_have_vols_only AND org_unit.ou_type.can_have_vols != 't';
89                 disabled = 'disabled="disabled"';
90             ELSIF node_value == value;
91                 selected = 'selected="selected"';
92             END; 
93
94             IF can_have_users_only AND org_unit.ou_type.can_have_users != 't';
95                 disabled = 'disabled="disabled"';
96             ELSIF node_value == value;
97                 selected = 'selected="selected"';
98             END; 
99
100             pad_depth = 0;
101
102             # copy loc groups appear as children of the owning org unit
103             SET pad_depth = pad_depth + 1 IF loc_grp;
104
105             # determine the depth by calculating the distance from the root
106             porg = ctx.get_aou(org_unit.parent_ou);
107             WHILE porg;
108                 SET pad_depth = pad_depth + 1 IF porg.opac_visible == 't' OR ctx.is_staff;
109                 porg = ctx.get_aou(porg.parent_ou);
110             END;
111
112             pad_depth = pad_depth * 2;
113             display_name = loc_grp ? loc_grp.name : org_unit.name %]
114
115             <option value='[% node_value %]' [% selected %] [% disabled %] [% css_class %]> 
116                 [% '&nbsp;' FOR [0..pad_depth]; display_name | html %]
117             </option> 
118
119         [%- END %]
120     </select>
121 [%- END %]