summaryrefslogtreecommitdiff
path: root/httemplate/elements/select-areacode.html
blob: e968322793f95294243edd390907985040cccfba (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
<% include('/elements/xmlhttp.html',
              'url'  => $p.'misc/areacodes.cgi',
              'subs' => [ $opt{'prefix'}. 'get_areacodes' ],
          )
%>

<SCRIPT TYPE="text/javascript">

  function jopt(what,value,text) {
    var optionName = new Option(text, value, false, false);
    what.append(optionName);
  }

  function <% $opt{'state_prefix'} %>state_changed(what, callback) {

    what.form.<% $opt{'prefix'} %>areacode.disabled = 'disabled';
    what.form.<% $opt{'prefix'} %>areacode.style.display = 'none';
    var areacodewait = document.getElementById('<% $opt{'prefix'} %>areacodewait');
    areacodewait.style.display = 'inline';
    var areacodeerror = document.getElementById('<% $opt{'prefix'} %>areacodeerror');
    areacodeerror.style.display = 'none';

    what.form.<% $opt{'prefix'} %>exchange.disabled = 'disabled';
    $('#<% $opt{'prefix'} %>phonenum').prop('disabled', true);

    var state = what.options[what.selectedIndex].value;

    function <% $opt{'prefix'} %>update_areacodes(areacodes) {

      var reply = JSON.parse(areacodes);
      // blank the current areacode
      $('#<% $opt{prefix} %>areacode').empty();

      // blank the current exchange too
      $('#<% $opt{prefix} %>exchange').empty();
      jopt( $('#<% $opt{prefix} %>exchange'), '', 'Select city / exchange' );

      // blank the current phonenum too
      $('#<% $opt{prefix} %>phonenum').empty();
      if ( what.form.<% $opt{'prefix'} %>phonenum.type != 'select-multiple' ) {
        jopt($('#<% $opt{'prefix'} %>phonenum'), '', 'Select phone number');
      }

%     if ($opt{empty}) {
        jopt($('#<% $opt{'prefix'} %>areacode'), '', '<% $opt{empty} %>');
%     }

      // add the new areacodes
      var areacodeArray = reply.areacodes;
      for ( var s = 0; s < areacodeArray.length; s++ ) {
          var areacodeLabel = areacodeArray[s];
          if ( areacodeLabel == "" )
              areacodeLabel = '(n/a)';
          jopt($('#<% $opt{'prefix'} %>areacode'), areacodeArray[s], areacodeLabel);
      }

      areacodewait.style.display = 'none';
      if ( areacodeArray.length >= 1 ) {
        what.form.<% $opt{'prefix'} %>areacode.disabled = '';
        what.form.<% $opt{'prefix'} %>areacode.style.display = '';
      } else {
        var areacodeerror = document.getElementById('<% $opt{'prefix'} %>areacodeerror');
        areacodeerror.style.display = 'inline';
        if ( reply.error ) {
          areacodeerror.textContent = reply.error;
        } else {
          areacodeerror.textContent = 'Select a different state';
        }
      }

      //run the callback
      if ( callback != null ) 
        callback();
    }

    // go get the new areacodes
    <% $opt{'prefix'} %>get_areacodes( state, <% $opt{'svcpart'} %>, <% $opt{'prefix'} %>update_areacodes );

  }

</SCRIPT>

<DIV ID="areacodewait" STYLE="display:none"><IMG SRC="<%$fsurl%>images/wait-orange.gif"> <B>Finding area codes</B></DIV>

<DIV ID="areacodeerror" STYLE="display:none; font-weight: bold"><IMG SRC="<%$fsurl%>images/cross.png"></DIV>

<SELECT
  ID       = "<% $opt{prefix} %>areacode"
  NAME     = "<% $opt{prefix} %>areacode"
  onChange = "<% $opt{prefix} %>areacode_changed(this); <% $opt{onchange} %>"
  <% $opt{disabled} %>
>
  <OPTION VALUE="">Select area code</OPTION>
</SELECT>

<%init>

my %opt = @_;

$opt{disabled}     = 'disabled'   unless exists $opt{disabled};
$opt{state_prefix} = $opt{prefix} unless exists $opt{state_prefix};

</%init>