]> git.r.bdr.sh - rbdr/lyricli.rb/blame - doc/js/full_list.js
Adds skeletons for Exceptions
[rbdr/lyricli.rb] / doc / js / full_list.js
CommitLineData
823e558b
BB
1var inSearch = null;
2var searchIndex = 0;
3var searchCache = [];
4var searchString = '';
5var regexSearchString = '';
6var caseSensitiveMatch = false;
7var ignoreKeyCodeMin = 8;
8var ignoreKeyCodeMax = 46;
9var commandKey = 91;
10
11RegExp.escape = function(text) {
12 return text.replace(/[-[\]{}()*+?.,\\^$|#\s]/g, "\\$&");
13}
14
15function fullListSearch() {
16 // generate cache
17 searchCache = [];
18 $('#full_list li').each(function() {
19 var link = $(this).find('.object_link a');
20 var fullName = link.attr('title').split(' ')[0];
21 searchCache.push({name:link.text(), fullName:fullName, node:$(this), link:link});
22 });
23
24 $('#search input').keyup(function(event) {
25 if ((event.keyCode > ignoreKeyCodeMin && event.keyCode < ignoreKeyCodeMax)
26 || event.keyCode == commandKey)
27 return;
28 searchString = this.value;
29 caseSensitiveMatch = searchString.match(/[A-Z]/) != null;
30 regexSearchString = RegExp.escape(searchString);
31 if (caseSensitiveMatch) {
32 regexSearchString += "|" +
33 $.map(searchString.split(''), function(e) { return RegExp.escape(e); }).
34 join('.+?');
35 }
36 if (searchString === "") {
37 clearTimeout(inSearch);
38 inSearch = null;
39 $('ul .search_uncollapsed').removeClass('search_uncollapsed');
40 $('#full_list, #content').removeClass('insearch');
41 $('#full_list li').removeClass('found').each(function() {
42
43 var link = $(this).find('.object_link a');
44 link.text(link.text());
45 });
46 if (clicked) {
47 clicked.parents('ul').each(function() {
48 $(this).removeClass('collapsed').prev().removeClass('collapsed');
49 });
50 }
51 highlight();
52 }
53 else {
54 if (inSearch) clearTimeout(inSearch);
55 searchIndex = 0;
56 lastRowClass = '';
57 $('#full_list, #content').addClass('insearch');
58 $('#noresults').text('');
59 searchItem();
60 }
61 });
62
63 $('#search input').focus();
64 $('#full_list').after("<div id='noresults'></div>");
65}
66
67var lastRowClass = '';
68function searchItem() {
69 for (var i = 0; i < searchCache.length / 50; i++) {
70 var item = searchCache[searchIndex];
71 var searchName = (searchString.indexOf('::') != -1 ? item.fullName : item.name);
72 var matchString = regexSearchString;
73 var matchRegexp = new RegExp(matchString, caseSensitiveMatch ? "" : "i");
74 if (searchName.match(matchRegexp) == null) {
75 item.node.removeClass('found');
76 }
77 else {
78 item.node.css('padding-left', '10px').addClass('found');
79 item.node.parents().addClass('search_uncollapsed');
80 item.node.removeClass(lastRowClass).addClass(lastRowClass == 'r1' ? 'r2' : 'r1');
81 lastRowClass = item.node.hasClass('r1') ? 'r1' : 'r2';
82 item.link.html(item.name.replace(matchRegexp, "<strong>$&</strong>"));
83 }
84
85 if (searchCache.length === searchIndex + 1) {
86 searchDone();
87 return;
88 }
89 else {
90 searchIndex++;
91 }
92 }
93 inSearch = setTimeout('searchItem()', 0);
94}
95
96function searchDone() {
97 highlight(true);
98 if ($('#full_list li:visible').size() === 0) {
99 $('#noresults').text('No results were found.').hide().fadeIn();
100 }
101 else {
102 $('#noresults').text('');
103 }
104 $('#content').removeClass('insearch');
105 clearTimeout(inSearch);
106 inSearch = null;
107}
108
109clicked = null;
110function linkList() {
111 $('#full_list li, #full_list li a:last').click(function(evt) {
112 if ($(this).hasClass('toggle')) return true;
113 if (this.tagName.toLowerCase() == "li") {
114 var toggle = $(this).children('a.toggle');
115 if (toggle.size() > 0 && evt.pageX < toggle.offset().left) {
116 toggle.click();
117 return false;
118 }
119 }
120 if (clicked) clicked.removeClass('clicked');
121 var win = window.top.frames.main ? window.top.frames.main : window.parent;
122 if (this.tagName.toLowerCase() == "a") {
123 clicked = $(this).parent('li').addClass('clicked');
124 win.location = this.href;
125 }
126 else {
127 clicked = $(this).addClass('clicked');
128 win.location = $(this).find('a:last').attr('href');
129 }
130 return false;
131 });
132}
133
134function collapse() {
135 if (!$('#full_list').hasClass('class')) return;
136 $('#full_list.class a.toggle').click(function() {
137 $(this).parent().toggleClass('collapsed').next().toggleClass('collapsed');
138 highlight();
139 return false;
140 });
141 $('#full_list.class ul').each(function() {
142 $(this).addClass('collapsed').prev().addClass('collapsed');
143 });
144 $('#full_list.class').children().removeClass('collapsed');
145 highlight();
146}
147
148function highlight(no_padding) {
149 var n = 1;
150 $('#full_list li:visible').each(function() {
151 var next = n == 1 ? 2 : 1;
152 $(this).removeClass("r" + next).addClass("r" + n);
153 if (!no_padding && $('#full_list').hasClass('class')) {
154 $(this).css('padding-left', (10 + $(this).parents('ul').size() * 15) + 'px');
155 }
156 n = next;
157 });
158}
159
160function escapeShortcut() {
161 $(document).keydown(function(evt) {
162 if (evt.which == 27) {
163 $('#search_frame', window.top.document).slideUp(100);
164 $('#search a', window.top.document).removeClass('active inactive');
165 $(window.top).focus();
166 }
167 });
168}
169
170$(escapeShortcut);
171$(fullListSearch);
172$(linkList);
173$(collapse);