summaryrefslogtreecommitdiffstats
path: root/doc/config/scripts/narrow.js
blob: c64516eb264ff8334f14a4dcee9c558286acd64a (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
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
/* This function generates menus and search box in narrow/slim fit mode */
var narrowInit = function() {
  /* 1: Create search form */
  var narrowSearch = $('<div id="narrowsearch"></div>');
  var searchform = $("#qtdocsearch");
  narrowSearch.append(searchform);
  $("#qtdocheader .content .qtref").after(narrowSearch);

  /* 2: Create dropdowns */
  var narrowmenu = $('<ul id="narrowmenu" class="sf-menu"></ul>');

  /* Lookup */
  var lookuptext = $("#lookup h2").attr("title");
  $("#lookup ul").removeAttr("id");
  $("#lookup ul li").removeAttr("class");
  $("#lookup ul li").removeAttr("style");
  var lookupul = $("#lookup ul");
  var lookuplist = $('<li></li>');
  var lookuplink = $('<a href="#"></a>');
  lookuplink.append(lookuptext);
  lookuplist.append(lookuplink);
  lookuplist.append(lookupul);
  narrowmenu.append(lookuplist);

  /* Topics */
  var topicstext = $("#topics h2").attr("title");
  $("#topics ul").removeAttr("id");
  $("#topics ul li").removeAttr("class");
  $("#topics ul li").removeAttr("style");
  var topicsul = $("#topics ul");
  var topicslist = $('<li></li>');
  var topicslink = $('<a href="#"></a>');
  topicslink.append(topicstext);
  topicslist.append(topicslink);
  topicslist.append(topicsul);
  narrowmenu.append(topicslist);

  /* Examples */
  var examplestext = $("#examples h2").attr("title");
  $("#examples ul").removeAttr("id");
  $("#examples ul li").removeAttr("class");
  $("#examples ul li").removeAttr("style");
  var examplesul = $("#examples ul");
  var exampleslist = $('<li></li>');
  var exampleslink = $('<a href="#"></a>');
  exampleslink.append(examplestext);
  exampleslist.append(exampleslink);
  exampleslist.append(examplesul);
  narrowmenu.append(exampleslist);

  $("#shortCut").after(narrowmenu);
  $('ul#narrowmenu').superfish({
    delay: 100,
    autoArrows: false,
    disableHI: true
  });
}

/* Executes on doc ready */
$(document).ready(function(){
    /* check if body has the narrow class */
    if ($('body').hasClass('narrow')) {
        /* run narrowInit */
        narrowInit();
    }

    /* messure window width and add class if it is smaller than 600 px */
    if ($(window).width()<600) {
        $('body').addClass('narrow');
        /* if the search box contains */
        if ($("#narrowsearch").length == 0) {
            /* run narrowInit */
            narrowInit();
        }
      }
      else { /* if the window is wider than 600 px, narrow is removed */
        $('body').removeClass('narrow');
        if ($("#narrowsearch").length == 0) {
        }
    }
});
/* binding resize event to this funciton */
$(window).bind('resize', function () {
    /*  if the window is wider than 600 px, narrow class is added */
    if ($(window).width()<600) {
        $('body').addClass('narrow');
        if ($("#narrowsearch").length == 0) {
          narrowInit();
        }
    }
    else {
        /* else we remove the narrow class */
        $('body').removeClass('narrow');
  }
});

    $('#narrowsearch').keyup(function () {
        /* extract the search box content */
      var searchString = $('#narrowsearch').val();
      /* if the string is less than three characters */
      if ((searchString == null) || (searchString.length < 3)) {
            /* remove classes and elements*/
            $('#narrowsearch').removeClass('loading');
            $('.searching').remove();
            /*  run CheckEmptyAndLoadList */
            CheckEmptyAndLoadList();

            $('.report').remove();
            return;
       }
       /* if timer checks out */
        if (this.timer) clearTimeout(this.timer);
        this.timer = setTimeout(function () {
            /* add loading image by adding loading class */
            $('#narrowsearch').addClass('loading');
            $('.searching').remove();

            /* run the actual search */
           $.ajax({
            contentType: "application/x-www-form-urlencoded",
            url: 'http://' + location.host + '/nokiasearch/GetDataServlet',
            data: 'searchString='+searchString,
            dataType:'xml',
            type: 'post',
            success: function (response, textStatus) {
                /* on success remove loading img */
                $('.searching').remove();
                $('#narrowsearch').removeClass('loading');
                processNokiaData(response);
            }
          });
        }, 500); /* timer set to 500 ms */
    });