pick/enter a location when ordering a package, RT#4499
[freeside.git] / httemplate / elements / select-county.html
1 <%doc>
2
3 Example:
4
5   include( '/elements/select-county.html',
6     #recommended
7     country    => $current_country,
8     state      => $current_state,
9     county     => $current_county,
10
11     #optional
12     prefix        => $optional_unique_prefix,
13     onchange      => $javascript,
14     disabled      => 0, #bool
15     disable_empty => 1, #defaults to 1, disable the empty option
16     empty_label   => 'all', #label for empty option
17     style         => [ 'attribute:value', 'another:value' ],
18   );
19
20 </%doc>
21 % if ( $countyflag ) { 
22
23   <% include('/elements/xmlhttp.html',
24                 'url'  => $p.'misc/counties.cgi',
25                 'subs' => [ $pre. 'get_counties' ],
26              )
27   %>
28   
29   <SCRIPT TYPE="text/javascript">
30   
31     function opt(what,value,text) {
32       var optionName = new Option(text, value, false, false);
33       var length = what.length;
34       what.options[length] = optionName;
35     }
36   
37     function <% $pre %>state_changed(what, callback) {
38
39       state = what.options[what.selectedIndex].value;
40       country = what.form.<% $pre %>country.options[what.form.<% $pre %>country.selectedIndex].value;
41   
42       function <% $pre %>update_counties(counties) {
43
44         // blank the current county list
45         for ( var i = what.form.<% $pre %>county.length; i >= 0; i-- )
46             what.form.<% $pre %>county.options[i] = null;
47   
48         // add the new counties
49         var countiesArray = eval('(' + counties + ')' );
50         for ( var s = 0; s < countiesArray.length; s++ ) {
51             var countyLabel = countiesArray[s];
52             if ( countyLabel == "" )
53                 countyLabel = '(n/a)';
54             opt(what.form.<% $pre %>county, countiesArray[s], countyLabel);
55         }
56
57         var countyFormLabel = document.getElementById('<% $pre %>countylabel');
58
59         if ( countiesArray.length > 1 ) { 
60           what.form.<% $pre %>county.style.display = '';
61           countyFormLabel.style.visibility = 'visible';
62         } else {
63           what.form.<% $pre %>county.style.display = 'none';
64           countyFormLabel.style.visibility = 'hidden';
65         }
66
67         //run the callback
68         if ( callback != null ) 
69           callback();
70       }
71   
72       // go get the new counties
73       <% $pre %>get_counties( state, country, <% $pre %>update_counties );
74   
75     }
76   
77   </SCRIPT>
78
79   <SELECT NAME    = "<% $pre %>county"
80           ID      = "<% $pre %>county"
81           onChange= "<% $opt{'onchange'} %>"
82           <% $opt{'disabled'} %>
83           <% $style %>
84   >
85
86 % unless ( $opt{'disable_empty'} ) {
87   <OPTION VALUE="" <% $opt{county} eq '' ? 'SELECTED' : '' %>><% $opt{empty_label} %>
88 % }
89
90 % foreach my $county ( @counties ) {
91
92     <OPTION VALUE="<% $county |h %>"
93             <% $county eq $opt{'county'} ? 'SELECTED' : '' %>
94     ><% $county eq $opt{'empty_data_value'} ? $opt{'empty_data_label'} : $county %>
95
96 % } 
97
98   </SELECT>
99
100 % } else { 
101
102   <SCRIPT TYPE="text/javascript">
103     function <% $pre %>state_changed(what) {
104     }
105   </SCRIPT>
106
107   <SELECT NAME  = "<% $pre %>county"
108            ID   = "<% $pre %>county"
109           STYLE = "display:none"
110   >
111     <OPTION SELECTED VALUE="<% $opt{'county'} |h %>">
112   </SELECT>
113
114 % } 
115
116 <%init>
117
118 my %opt = @_;
119 foreach my $opt (qw( county state country prefix onchange disabled
120                      empty_value )) {
121   $opt{$opt} = '' unless exists($opt{$opt}) && defined($opt{$opt});
122 }
123
124 $opt{'disable_empty'} = 1 unless exists($opt{'disable_empty'});
125
126 my $pre = $opt{'prefix'};
127
128 $opt{'style'} ||= [];
129 my $style =
130   scalar(@{$opt{style}})
131     ? 'STYLE="'. join(';', @{$opt{style}}). '"'
132     : '';
133
134 my @counties = ();
135 if ( $countyflag ) {
136
137   @counties = map { length($_) ? $_ : $opt{'empty_data_value'} }
138                   counties( $opt{'state'}, $opt{'country'} );
139
140   # this is very hacky
141   unless ( scalar(@counties) > 1 ) {
142     if ( $opt{'disabled'} =~ /STYLE=/i ) {
143       $opt{'disabled'} =~ s/STYLE="([^"]+)"/STYLE="$1; display:none"/i;
144     } else {
145       $opt{'disabled'} .= ' STYLE="display:none"';
146     }
147   }
148
149 }
150
151 </%init>
152 <%once>
153
154 my $sql = "SELECT COUNT(*) FROM cust_main_county".
155           " WHERE county IS NOT NULL AND county != ''";
156 my $sth = dbh->prepare($sql) or die dbh->errstr;
157 $sth->execute or die $sth->errstr;
158 my $countyflag = $sth->fetchrow_arrayref->[0];
159
160 </%once>