-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgrappelli.js
191 lines (171 loc) · 6.1 KB
/
grappelli.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
190
191
/**
* GRAPPELLI UTILS
* functions needed for Grappelli
*/
// grp jQuery namespace
var grp = {
jQuery: jQuery.noConflict(true)
};
// django jQuery namespace
var django = {
jQuery: grp.jQuery
};
// general jQuery instance
var jQuery = grp.jQuery;
var inputTypes = [
"[type='search']",
"[type='email']",
"[type='url']",
"[type='tel']",
"[type='number']",
"[type='range']",
"[type='date']",
"[type='month']",
"[type='week']",
"[type='time']",
"[type='datetime']",
"[type='datetime-local']",
"[type='color']"].join(",");
(function($) {
// dateformat
grappelli.getFormat = function(type) {
if (type == "date") {
var format = DATE_FORMAT.toLowerCase().replace(/%\w/g, function(str) {
str = str.replace(/%/, '');
return str + str;
});
return format;
}
};
// remove types: search, email, url, tel, number, range, date
// month, week, time, datetime, datetime-local, color
// because of browser inconsistencies
/*jshint multistr: true */
grappelli.cleanInputTypes = function() {
$("form").each(function(){
$(this).find(':input').filter(inputTypes).each(function(){
$(this).attr("type", "text");
});
});
};
// datepicker, timepicker init
grappelli.initDateAndTimePicker = function() {
// HACK: get rid of text after DateField (hardcoded in django.admin)
$('p.datetime').each(function() {
var text = $(this).html();
text = text.replace(/\w*: /, "");
text = text.replace(/<br>[^<]*: /g, "<br>");
$(this).html(text);
});
var options = {
//appendText: '(mm/dd/yyyy)',
constrainInput: false,
showOn: 'button',
buttonImageOnly: false,
buttonText: '',
dateFormat: grappelli.getFormat('date'),
showButtonPanel: true,
showAnim: '',
// HACK: sets the current instance to a global var.
// needed to actually select today if the today-button is clicked.
// see onClick handler for ".ui-datepicker-current"
beforeShow: function(year, month, inst) {
grappelli.datepicker_instance = this;
}
};
var dateFields = $("input[class*='vDateField']:not([id*='__prefix__'])");
dateFields.datepicker(options);
if (typeof IS_POPUP != "undefined" && IS_POPUP) {
dateFields.datepicker('disable');
}
// HACK: adds an event listener to the today button of datepicker
// if clicked today gets selected and datepicker hides.
// use on() because couldn't find hook after datepicker generates it's complete dom.
$(document).on('click', '.ui-datepicker-current', function() {
$.datepicker._selectDate(grappelli.datepicker_instance);
grappelli.datepicker_instance = null;
});
// init timepicker
$("input[class*='vTimeField']:not([id*='__prefix__'])").grp_timepicker();
};
// changelist: filter
grappelli.initFilter = function() {
$("a.grp-pulldown-handler").click(function() {
var pulldownContainer = $(this).closest(".grp-pulldown-container");
$(pulldownContainer).toggleClass("grp-pulldown-state-open").children(".grp-pulldown-content").toggle();
});
$("a.grp-pulldown-handler").bind('mouseout', function() {
$(this).blur();
});
$(".grp-filter-choice").change(function(){
location.href = $(this).val();
});
};
// changelist: searchbar
grappelli.initSearchbar = function() {
var searchbar = $("input.grp-search-field");
searchbar.focus();
};
grappelli.updateSelectFilter = function(form) {
if (typeof SelectFilter != "undefined"){
form.find(".selectfilter").each(function(index, value){
var namearr = value.name.split('-');
SelectFilter.init(value.id, namearr[namearr.length-1], false, "{% admin_media_prefix %}");
});
form.find(".selectfilterstacked").each(function(index, value){
var namearr = value.name.split('-');
SelectFilter.init(value.id, namearr[namearr.length-1], true, "{% admin_media_prefix %}");
});
}
};
grappelli.reinitDateTimeFields = function(form) {
form.find(".vDateField").datepicker({
constrainInput: false,
showOn: 'button',
buttonImageOnly: false,
buttonText: '',
dateFormat: grappelli.getFormat('date')
});
form.find(".vTimeField").grp_timepicker();
};
// autocomplete helpers
grappelli.get_app_label = function(elem) {
var link = elem.next("a");
if (link.length > 0) {
var url = link.attr('href').split('?')[0].split('/');
return url[url.length-3];
}
return false;
};
grappelli.get_model_name = function(elem) {
var link = elem.next("a");
if (link.length > 0) {
var url = link.attr('href').split('?')[0].split('/');
return url[url.length-2];
}
return false;
};
grappelli.get_query_string = function(elem) {
var link = elem.next("a");
if (link.length > 0) {
var url = link.attr('href').split('/');
pairs = url[url.length-1].replace('?', '').split("&");
return pairs.join(":");
}
return false;
};
grappelli.get_to_field = function(elem) {
var link = elem.next("a");
if (link.length > 0 && link.attr('href').indexOf("_to_field") !== -1) {
var url = link.attr('href').split('/');
var pairs = url[url.length-1].replace('?', '').split("&");
for (var i = 0; i < pairs.length; i++) {
v = pairs[i].split('=');
if (v[0] == "_to_field") {
return v[1];
}
}
}
return false;
};
})(grp.jQuery);