menu.js
14.4 KB
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
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
define(['jquery', 'bootstrap', 'backend', 'table', 'form', 'sortable'], function ($, undefined, Backend, Table, Form, Sortable) {
var Controller = {
index: function () {
String.prototype.subByte = function (start, bytes) {
for (var i = start; bytes > 0; i++) {
var code = this.charCodeAt(i);
bytes -= code < 256 ? 1 : 2;
}
return this.slice(start, i + bytes)
};
var init_menu = function (menu) {
var str = "";
var items = menu;
var type = action = "";
for (i in items) {
if (items[i]['sub_button'] != undefined) {
type = action = "";
} else {
type = items[i]['type'];
if (items[i]['url'] != undefined)
action = "url|" + items[i]['url'];
if (items[i]['key'] != undefined)
action = "key|" + items[i]['key'];
}
str += '<li id="menu-' + i + '" class="menu-item" data-type="' + type + '" data-action="' + action + '" data-name="' + items[i]['name'] + '"> <a href="javascript:;" class="menu-link"> <i class="icon-menu-dot"></i> <i class="weixin-icon sort-gray"></i> <span class="title">' + items[i]['name'] + '</span> </a>';
var tem = '';
if (items[i]['sub_button'] != undefined) {
var sub_menu = items[i]['sub_button'];
for (j in sub_menu) {
type = sub_menu[j]['type'];
if (sub_menu[j]['url'] != undefined)
action = "url|" + sub_menu[j]['url'];
if (sub_menu[j]['key'] != undefined)
action = "key|" + sub_menu[j]['key'];
tem += '<li id="sub-menu-' + j + '" class="sub-menu-item" data-type="' + type + '" data-action="' + action + '" data-name="' + sub_menu[j]['name'] + '"> <a href="javascript:;"> <i class="weixin-icon sort-gray"></i><span class="sub-title">' + sub_menu[j]['name'] + '</span></a> </li>';
}
}
str += '<div class="sub-menu-box" style="' + (i != 0 ? 'display:none;' : '') + '"> <ul class="sub-menu-list">' + tem + '<li class=" add-sub-item"><a href="javascript:;" title="添加子菜单"><span class=" "><i class="weixin-icon add-gray"></i></span></a></li> </ul> <i class="arrow arrow-out"></i> <i class="arrow arrow-in"></i></div>';
str += '</li>';
}
$("#add-item").before(str);
};
var refresh_type = function () {
if ($('input[name=type]:checked').val() == 'view') {
$(".is-view").show();
$(".is-click").hide();
} else {
$(".is-view").hide();
$(".is-click").show();
}
};
//初始化菜单
init_menu(menu);
//拖动排序
new Sortable($("#menu-list")[0], {draggable: 'li.menu-item'});
$(".sub-menu-list").each(function () {
new Sortable(this, {draggable: 'li.sub-menu-item'});
});
//添加主菜单
$(document).on('click', '#add-item', function () {
var menu_item_total = $(".menu-item").size();
if (menu_item_total < 3) {
var item = '<li class="menu-item" data-type="click" data-action="key|" data-name="添加菜单" > <a href="javascript:;" class="menu-link"> <i class="icon-menu-dot"></i> <i class="weixin-icon sort-gray"></i> <span class="title">添加菜单</span> </a> <div class="sub-menu-box" style=""> <ul class="sub-menu-list"><li class=" add-sub-item"><a href="javascript:;" title="添加子菜单"><span class=" "><i class="weixin-icon add-gray"></i></span></a></li> </ul> <i class="arrow arrow-out"></i> <i class="arrow arrow-in"></i> </div></li>';
var itemDom = $(item);
itemDom.insertBefore(this);
itemDom.trigger("click");
$(".sub-menu-box", itemDom).show();
new Sortable($(".sub-menu-list", itemDom)[0], {draggable: 'li.sub-menu-item'});
}
});
$(document).on('change', 'input[name=type]', function () {
refresh_type();
});
$(document).on('click', '#item_delete', function () {
var current = $("#menu-list li.current");
var prev = current.prev("li[data-type]");
var next = current.next("li[data-type]");
if (prev.size() == 0 && next.size() == 0 && $(".sub-menu-box", current).size() == 0) {
last = current.closest(".menu-item");
} else if (prev.size() > 0 || next.size() > 0) {
last = prev.size() > 0 ? prev : next;
} else {
last = null;
$(".weixin-content").hide();
$(".no-weixin-content").show();
}
$("#menu-list li.current").remove();
if (last) {
last.trigger('click');
} else {
$("input[name='item-title']").val('');
}
updateChangeMenu();
});
//更新修改与变动
var updateChangeMenu = function () {
var title = $("input[name='item-title']").val();
var type = $("input[name='type']:checked").val();
var key = value = '';
if (type == 'view') {
key = 'url';
} else {
key = 'key';
}
value = $("input[name='" + key + "']").val();
if (key == 'key') {
var keytitle = typeof responselist[value] != 'undefined' ? responselist[value] : '';
var cont = $(".is-click .create-click:first");
$(".keytitle", cont).remove();
cont.append('<div class="keytitle">资源名:' + keytitle + '</div>');
}
var currentItem = $("#menu-list li.current");
if (currentItem.size() > 0) {
currentItem.attr('data-type', type);
currentItem.attr('data-action', key + "|" + value);
if (currentItem.siblings().size() == 4) {
$(".add-sub-item").show();
} else if (false) {
}
currentItem.children("a").find("span").text(title.subByte(0, 16));
$("input[name='item-title']").val(title);
currentItem.attr('data-name', title);
$('#current-item-name').text(title);
}
menuUpdate();
}
//更新菜单数据
var menuUpdate = function () {
$.post("wechat/menu/edit", {menu: JSON.stringify(getMenuList())}, function (data) {
if (data['code'] == 1) {
} else {
Toastr.error(__('Operation failed'));
}
}, 'json');
};
//获取菜单数据
var getMenuList = function () {
var menus = new Array();
var sub_button = new Array();
var menu_i = 0;
var sub_menu_i = 0;
var item;
$("#menu-list li").each(function (i) {
item = $(this);
var name = item.attr('data-name');
var type = item.attr('data-type');
var action = item.attr('data-action');
if (name != null) {
actions = action.split('|');
if (item.hasClass('menu-item')) {
sub_menu_i = 0;
if (item.find('.sub-menu-item').size() > 0) {
menus[menu_i] = {"name": name, "sub_button": "sub_button"}
} else {
if (actions[0] == 'url')
menus[menu_i] = {"name": name, "type": type, "url": actions[1]};
else
menus[menu_i] = {"name": name, "type": type, "key": actions[1]};
}
if (menu_i > 0) {
if (menus[menu_i - 1]['sub_button'] == "sub_button")
menus[menu_i - 1]['sub_button'] = sub_button;
else
menus[menu_i - 1]['sub_button'];
}
sub_button = new Array();
menu_i++;
} else {
if (actions[0] == 'url')
sub_button[sub_menu_i++] = {"name": name, "type": type, "url": actions[1]};
else
sub_button[sub_menu_i++] = {"name": name, "type": type, "key": actions[1]};
}
}
});
if (sub_button.length > 0) {
var len = menus.length;
menus[len - 1]['sub_button'] = sub_button;
}
return menus;
}
//添加子菜单
$(document).on('click', ".add-sub-item", function () {
var sub_menu_item_total = $(this).parent().find(".sub-menu-item").size();
if (sub_menu_item_total < 5) {
var item = '<li class="sub-menu-item" data-type="click" data-action="key|" data-name="添加子菜单"><a href="javascript:;"><span class=" "><i class="weixin-icon sort-gray"></i><span class="sub-title">添加子菜单</span></span></a></li>';
var itemDom = $(item);
itemDom.insertBefore(this);
itemDom.trigger("click");
if (sub_menu_item_total == 4) {
$(this).hide();
}
}
return false;
});
//主菜单子菜单点击事件
$(document).on('click', ".menu-item, .sub-menu-item", function () {
if ($(this).hasClass("sub-menu-item")) {
$("#menu-list li").removeClass('current');
$(".is-item").show();
$(".is-sub-item").show();
} else {
$("#menu-list li").removeClass('current');
$("#menu-list > li").not(this).find(".sub-menu-box").hide();
$(".sub-menu-box", this).toggle();
//如果当前还没有子菜单
if ($(".sub-menu-item", this).size() == 0) {
$(".is-item").show();
$(".is-sub-item").show();
} else {
$(".is-item").hide();
$(".is-sub-item").hide();
}
}
$(this).addClass('current');
var type = $(this).attr('data-type');
var action = $(this).attr('data-action');
var title = $(this).attr('data-name');
actions = action.split('|');
$("input[name=type][value='" + type + "']").prop("checked", true);
$("input[name='item-title']").val(title);
$('#current-item-name').text(title);
if (actions[0] == 'url') {
$('input[name=key]').val('');
} else {
$('input[name=url]').val('');
}
$("input[name='" + actions[0] + "']").val(actions[1]);
if (actions[0] == 'key') {
var keytitle = typeof responselist[actions[1]] != 'undefined' ? responselist[actions[1]] : '';
var cont = $(".is-click .create-click:first");
$(".keytitle", cont).remove();
if (keytitle) {
cont.append('<div class="keytitle">资源名:' + keytitle + '</div>');
}
} else {
}
$(".weixin-content").show();
$(".no-weixin-content").hide();
refresh_type();
return false;
});
$("form").on('change', "input,textarea", function () {
updateChangeMenu();
});
$(document).on('click', "#menuSyn", function () {
$.post("wechat/menu/sync", {}, function (ret) {
var msg = ret.hasOwnProperty("msg") && ret.msg != "" ? ret.msg : "";
if (ret.code == 1) {
Backend.api.toastr.success('菜单同步更新成功,生效时间看微信官网说明,或者你重新关注微信号!');
} else {
Backend.api.toastr.error(msg ? msg : __('Operation failed'));
}
}, 'json');
});
var refreshkey = function (data) {
responselist[data.eventkey] = data.title;
$("input[name=key]").val(data.eventkey).trigger("change");
Layer.closeAll();
};
$(document).on('click', "#select-resources", function () {
var key = $("#key").val();
Backend.api.open($(this).attr("href") + "?key=" + key, __('Select'), {
callback: refreshkey
});
return false;
});
$(document).on('click', "#add-resources", function () {
Backend.api.open($(this).attr("href") + "?key=" + key, __('Add'), {
callback: refreshkey
});
return false;
});
},
add: function () {
Form.api.bindevent($("form[role=form]"));
},
edit: function () {
Form.api.bindevent($("form[role=form]"));
}
};
return Controller;
});