forked from telerik/kendo-ui-core
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathkendo.mobile.collapsible.js
189 lines (152 loc) · 5.92 KB
/
kendo.mobile.collapsible.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
180
181
182
183
184
185
186
187
188
189
(function(f, define){
define([ "./kendo.core" ], f);
})(function(){
var __meta__ = { // jshint ignore:line
id: "mobile.collapsible",
name: "Collapsible",
category: "mobile",
description: "The Kendo mobile Collapsible widget provides ability for creating collapsible blocks of content.",
depends: [ "core", "userevents" ]
};
(function($, undefined) {
var kendo = window.kendo,
ui = kendo.mobile.ui,
Widget = ui.Widget,
COLLAPSIBLE = "km-collapsible",
HEADER = "km-collapsible-header",
CONTENT = "km-collapsible-content",
INSET = "km-collapsibleinset",
HEADER_WRAPPER = "<div data-role='collapsible-header' class='" + HEADER + "'></div>",
CONTENT_WRAPPER = "<div data-role='collapsible-content' class='" + CONTENT + "'></div>",
COLLAPSED = "km-collapsed",
EXPANDED = "km-expanded",
ANIMATED = "km-animated",
//icon position
LEFT = "left",
//events
EXAPND = "expand",
COLLAPSE = "collapse";
var Collapsible = Widget.extend({
init: function(element, options) {
var that = this,
container = $(element);
Widget.fn.init.call(that, container, options);
container.addClass(COLLAPSIBLE);
that._buildHeader();
that.content = container.children().not(that.header).wrapAll(CONTENT_WRAPPER).parent();
that._userEvents = new kendo.UserEvents(that.header, {
fastTap: true,
tap: function() { that.toggle(); }
});
container.addClass(that.options.collapsed ? COLLAPSED : EXPANDED);
if (that.options.inset) {
container.addClass(INSET);
}
if (that.options.animation) {
that.content.addClass(ANIMATED);
that.content.height(0);
if (that.options.collapsed) {
that.content.hide();
}
} else if (that.options.collapsed) {
that.content.hide();
}
},
events: [
EXAPND,
COLLAPSE
],
options: {
name: "Collapsible",
collapsed: true,
collapseIcon: "arrow-n",
expandIcon: "arrow-s",
iconPosition: LEFT,
animation: true,
inset: false
},
destroy: function() {
Widget.fn.destroy.call(this);
this._userEvents.destroy();
},
expand: function(instant) {
var icon = this.options.collapseIcon,
content = this.content,
ios = kendo.support.mobileOS.ios;
if (!this.trigger(EXAPND)) {
if (icon) {
this.header.find(".km-icon").removeClass().addClass("km-icon km-" + icon);
}
this.element.removeClass(COLLAPSED).addClass(EXPANDED);
if (this.options.animation && !instant) {
content.off("transitionend");
content.show();
if (ios) { content.removeClass(ANIMATED); } //required to get the height of the content on iOS
content.height(this._getContentHeight());
if (ios) { content.addClass(ANIMATED); }
kendo.resize(content);
} else {
content.show();
}
}
},
collapse: function(instant) {
var icon = this.options.expandIcon,
content = this.content;
if (!this.trigger(COLLAPSE)) {
if (icon) {
this.header.find(".km-icon").removeClass().addClass("km-icon km-" + icon);
}
this.element.removeClass(EXPANDED).addClass(COLLAPSED);
if (this.options.animation && !instant) {
content.one("transitionend", function() { content.hide(); });
content.height(0);
} else {
content.hide();
}
}
},
toggle: function(instant) {
if (this.isCollapsed()) {
this.expand(instant);
} else {
this.collapse(instant);
}
},
isCollapsed: function() {
return this.element.hasClass(COLLAPSED);
},
resize: function() {
if (!this.isCollapsed() && this.options.animation) {
this.content.height(this._getContentHeight());
}
},
_buildHeader: function() {
var header = this.element.children(":header").wrapAll(HEADER_WRAPPER),
iconSpan = $('<span class="km-icon"/>'),
icon = this.options.collapsed ? this.options.expandIcon : this.options.collapseIcon,
iconPosition = this.options.iconPosition;
if (icon) {
header.prepend(iconSpan);
iconSpan.addClass("km-" + icon);
}
this.header = header.parent();
this.header.addClass("km-icon-" + iconPosition);
},
_getContentHeight: function() {
var style = this.content.attr("style"),
height;
this.content.css({
position: 'absolute',
visibility: 'hidden',
height: "auto"
});
height = this.content.height();
this.content.attr("style", style ? style : "");
return height;
}
});
ui.plugin(Collapsible);
})(window.kendo.jQuery);
return window.kendo;
}, typeof define == 'function' && define.amd ? define : function(a1, a2, a3){ (a3 || a2)(); });