forked from frequent/tableview
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfilterview.js
179 lines (151 loc) · 5.99 KB
/
filterview.js
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
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
//>>excludeStart("jqmBuildExclude", pragmas.jqmBuildExclude);
//>>description: Extends the listview to add a search box to filter lists
//>>label: Listview: Filter
//>>group: Widgets
define( [ "jquery", "./forms/textinput" ], function( $ ) {
//>>excludeEnd("jqmBuildExclude");
(function ($, undefined) {
// xxx filter is a widget now
$.widget("mobile.filterview", $.mobile.widget, {
options: {
// filter: false,
filterPlaceholder: null,
filterRelate: null,
filterTheme: null,
filterReveal: false,
filterCallback: null,
filterSlot: null,
// xxx events only
eventsOnly: null
},
_create: function () {
// xxx filter ...have mercy
var $el = $( this ).get(0).element,
htmlTag = $el.get(0).tagName.toLowerCase(),
$tag = htmlTag === "ul" ? "listview" : htmlTag,
container = this.element.data("mobile-" + $tag ),
o = this.options,
defaultFilterCallback = function( text, searchValue, item ) {
return text.toString().toLowerCase().indexOf( searchValue ) === -1;
},
wrapper,
search,
onKeyUp = function( e ) {
var $this = $( this ),
val = this.value.toLowerCase(),
ref = $tag === "table" ? $el.children("tbody") : $el,
filterItems = null,
lastval = $this.jqmData( "lastval" ) + "",
childItems = false,
itemtext = "",
item,
// Check if a custom filter callback applies
isCustomFilterCallback = container.options.filterCallback !== defaultFilterCallback;
if ( lastval && lastval === val ) {
// Execute the handler only once per value change
return;
}
container._trigger( "beforefilter", "beforefilter", { input: this } );
// Change val as lastval for next execution
$this.jqmData( "lastval" , val );
if ( isCustomFilterCallback || val.length < lastval.length || val.indexOf( lastval ) !== 0 ) {
// xxx filter-relate = filter multiple datasets
// Custom filter callback applies or removed chars or pasted something totally different, check all items
filterItems = o.filterRelate === undefined ? ref.children() :
ref.children().add( $('[data-related="'+relate+'"]').children() );
} else {
// Only chars added, not removed, only use visible subset
// xxx filter-relate = filter multiple datasets
filterItems = o.filterRelate === undefined ? ref.children( ":not(.ui-screen-hidden)" ) :
ref.children( ":not(.ui-screen-hidden)" ).add( $('[data-related="'+relate+'"]')
.children( ":not(.ui-screen-hidden)" ) );
if ( !filterItems.length && o.filterReveal ) {
filterItems = ref.children( ".ui-screen-hidden" );
}
}
if ( val ) {
// This handles hiding regular rows without the text we search for
// and any list dividers without regular rows shown under it
for ( var i = filterItems.length - 1; i >= 0; i-- ) {
item = $( filterItems[ i ] );
itemtext = item.jqmData( "filtertext" ) || item.text();
if ( item.is( "li:jqmData(role=list-divider)" ) ) {
item.toggleClass( "ui-filter-hidequeue" , !childItems );
// New bucket!
childItems = false;
} else if ( container.options.filterCallback( itemtext, val, item ) ) {
//mark to be hidden
item.toggleClass( "ui-filter-hidequeue" , true );
} else {
// There's a shown item in the bucket
childItems = true;
}
}
// Show items, not marked to be hidden
filterItems
.filter( ":not(.ui-filter-hidequeue)" )
.toggleClass( "ui-screen-hidden", false );
// Hide items, marked to be hidden
filterItems
.filter( ".ui-filter-hidequeue" )
.toggleClass( "ui-screen-hidden", true )
.toggleClass( "ui-filter-hidequeue", false );
} else {
//filtervalue is empty => show all
filterItems.toggleClass( "ui-screen-hidden", !!o.filterReveal );
}
// xxx filter - only listview
if ($tag === "listview") {
container._addFirstLastClasses( ref, container._getVisibles( ref, false ), false );
}
}
container.options.filterCallback = defaultFilterCallback;
o.filterSlot = $el.jqmData("filter-slot") || 2;
o.filterTheme = $el.jqmData("filter-theme") || "a";
o.filterPlaceholder = $el.jqmData("filter-placeholder") || "Filter items...";
o.filterRelate = $el.jqmData("relate") || undefined;
if ( o.filterReveal ) {
$el.children().addClass( "ui-screen-hidden" );
}
// xxx eventsOnly
if ( $el.jqmData("create") == false ){
o.eventsOnly = false;
}
if ( o.eventsOnly != false ){
wrapper = $( "<form>", {
"class": "ui-" + $tag + "-filter ui-bar-" + o.filterTheme,
"role": "search"
})
search = $( "<input>", {
placeholder: o.filterPlaceholder
})
.attr( "data-" + $.mobile.ns + "type", "search" )
.jqmData( "lastval", "" )
.bind( "keyup change input", onKeyUp )
.appendTo( wrapper )
.textinput();
if ( container.options.inset ) {
wrapper.addClass( "ui-" + $tag + "-filter-inset" );
}
// xxx filter - add filter to table wrapper or before list
// xxx todo: make a generic "destination"
wrapper[ $tag === "table" ? "appendTo" : "insertBefore"]( $tag === "table" ?
$el.siblings('.table-top-wrapper, .table-bottom-wrapper').children('div').eq(o.filterSlot-1) : $el );
}
wrapper
.submit( function( e ) {
e.preventDefault();
search.blur();
})
.bind( "submit", function() {
return false;
});
}
});
$.mobile.document.delegate( ":jqmData(filter='true')", "listviewcreate., tablecreate", function(e) {
$.mobile.filterview.prototype.enhance( e.target );
});
})( jQuery );
//>>excludeStart("jqmBuildExclude", pragmas.jqmBuildExclude);
// });
//>>excludeEnd("jqmBuildExclude");