rule.js 10 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195
  1. define(['jquery', 'bootstrap', 'backend', 'table', 'form', 'template'], function ($, undefined, Backend, Table, Form, Template) {
  2. var Controller = {
  3. index: function () {
  4. // 初始化表格参数配置
  5. Table.api.init({
  6. search: true,
  7. advancedSearch: false,
  8. pagination: false,
  9. extend: {
  10. "index_url": "auth/rule/index",
  11. "add_url": "auth/rule/add",
  12. "edit_url": "auth/rule/edit",
  13. "del_url": "auth/rule/del",
  14. "multi_url": "auth/rule/multi",
  15. "table": "auth_rule"
  16. }
  17. });
  18. var table = $("#table");
  19. // 初始化表格
  20. table.bootstrapTable({
  21. url: $.fn.bootstrapTable.defaults.extend.index_url,
  22. sortName: 'weigh',
  23. columns: [
  24. [
  25. {field: 'state', checkbox: true, },
  26. {field: 'id', title: 'ID'},
  27. {field: 'title', title: __('Title'), align: 'left'},
  28. {field: 'icon', title: __('Icon'), formatter: Controller.api.formatter.icon},
  29. {field: 'name', title: __('Name'), align: 'left'},
  30. {field: 'weigh', title: __('Weigh')},
  31. {field: 'status', title: __('Status'), formatter: Table.api.formatter.status},
  32. {field: 'id', title: '<a href="javascript:;" class="btn btn-primary btn-xs btn-toggle"><i class="fa fa-chevron-down"></i></a>', formatter: Controller.api.formatter.subnode},
  33. {field: 'operate', title: __('Operate'), events: Table.api.events.operate, formatter: Table.api.formatter.operate}
  34. ]
  35. ]
  36. });
  37. // 为表格绑定事件
  38. Table.api.bindevent(table);//当内容渲染完成后
  39. $(document).on("click", ".btn-rebuild", function () {
  40. Backend.api.layer.confirm(
  41. __('Are you sure you want to rebuild node?'),
  42. {icon: 3, title: __('Warning'), offset: 0},
  43. function (index) {
  44. Backend.api.layer.close(index);
  45. Backend.api.ajax({url: "auth/rule/rebuild", data: {step: 1}}, function (content) {
  46. table.bootstrapTable('refresh');
  47. var msg = '<div style="padding:20px;"><div class="alert alert-warning alert-light">' + __('You can change the node name if you want to') + '</div><label>' + __('Node list') + '</label><div id="treeview"></div></div>';
  48. Backend.api.layer.open({
  49. type: 1,
  50. content: msg,
  51. area: ['600px', '400px'],
  52. scrollbar: false,
  53. success: function (layero, index) {
  54. require(['jstree'], function () {
  55. $("#treeview", $(layero)).jstree({
  56. "themes": {"stripes": true},
  57. "types": {
  58. "menu": {
  59. "icon": "fa fa-folder-open",
  60. "valid_children": []
  61. },
  62. "file": {
  63. "icon": "fa fa-file-o",
  64. "valid_children": []
  65. }
  66. },
  67. "plugins": ["types"],
  68. "core": {
  69. 'check_callback': true,
  70. "data": content
  71. }
  72. }).bind("select_node.jstree", function (e, data) {
  73. var ref = $("#treeview", layero).jstree(true);
  74. ref.edit(data.node);
  75. });
  76. });
  77. }
  78. ,
  79. btn: [__('OK'), __('Cancel')],
  80. yes: function (index, layero) {
  81. //递归获取所有节点信息
  82. var get_children = function (node) {
  83. var data = [];
  84. $.each(node, function (i, j) {
  85. data.push({id: j.id, name: j.text});
  86. data = data.concat(get_children(j.children));
  87. });
  88. return data;
  89. };
  90. var data = get_children($("#treeview").jstree('get_json'));
  91. Backend.api.ajax({url: "auth/rule/rebuild", data: {step: 2, data: data}}, function (content) {
  92. Backend.api.layer.close(index);
  93. Backend.api.success(function () {
  94. //刷新页面
  95. top.location.reload();
  96. });
  97. });
  98. }
  99. });
  100. });
  101. }
  102. );
  103. });
  104. //默认隐藏所有子节点
  105. table.on('post-body.bs.table', function (e, settings, json, xhr) {
  106. $("a.btn[data-id][data-pid][data-pid!=0]").closest("tr").hide();
  107. });
  108. //显示隐藏子节点
  109. $(document.body).on("click", ".btn-node-sub", function (e) {
  110. var status = typeof status !== 'undefined' ? status : $(this).closest("tr").hasClass("selected");
  111. $("a.btn[data-pid='" + $(this).data("id") + "']").each(function () {
  112. $(this).closest("tr").toggle(status).toggleClass("selected", status);
  113. $(this).closest("tr").find("input[type=checkbox]").prop("checked", status);
  114. // 展示全部子节点
  115. // $(this).trigger("click", status);
  116. });
  117. return false;
  118. });
  119. $(document.body).on("click", ".btn-toggle", function (e) {
  120. $("a.btn[data-id][data-pid][data-pid!=0].disabled").closest("tr").hide();
  121. var that = this;
  122. var show = $("i", that).hasClass("fa-chevron-down");
  123. $("i", that).toggleClass("fa-chevron-down", !show);
  124. $("i", that).toggleClass("fa-chevron-up", show);
  125. $("a.btn[data-id][data-pid][data-pid!=0]").not('.disabled').closest("tr").toggle(show);
  126. });
  127. $(document.body).on("click", ".btn-toggle-all", function (e) {
  128. var that = this;
  129. var show = $("i", that).hasClass("fa-plus");
  130. $("i", that).toggleClass("fa-plus", !show);
  131. $("i", that).toggleClass("fa-minus", show);
  132. $("a.btn[data-id][data-pid][data-pid!=0]").closest("tr").toggle(show);
  133. });
  134. },
  135. add: function () {
  136. Controller.api.bindevent();
  137. },
  138. edit: function () {
  139. Controller.api.bindevent();
  140. },
  141. api: {
  142. formatter: {
  143. icon: function (value, row, index) {
  144. return '<i class="' + value + '"></i>';
  145. },
  146. subnode: function (value, row, index) {
  147. return '<a href="javascript:;" data-id="' + row['id'] + '" data-pid="' + row['pid'] + '" class="btn btn-primary btn-xs ' + (row['haschild'] == 1 ? '' : 'disabled') + ' btn-node-sub"><i class="fa fa-sitemap"></i></a>';
  148. }
  149. },
  150. bindevent: function () {
  151. var iconlist = [];
  152. Form.api.bindevent($("form[role=form]"));
  153. $(document).on('click', ".btn-search-icon", function () {
  154. if (iconlist.length == 0) {
  155. $.get(requirejs.s.contexts._.config.config.config.site.cdnurl + "/assets/libs/font-awesome/less/variables.less", function (ret) {
  156. var exp = /fa-var-(.*):/ig;
  157. var result;
  158. while ((result = exp.exec(ret)) != null) {
  159. iconlist.push(result[1]);
  160. }
  161. Layer.open({
  162. type: 1,
  163. area: ['460px', '300px'], //宽高
  164. content: Template('chooseicontpl', {iconlist: iconlist})
  165. });
  166. });
  167. } else {
  168. Layer.open({
  169. type: 1,
  170. area: ['460px', '300px'], //宽高
  171. content: Template('chooseicontpl', {iconlist: iconlist})
  172. });
  173. }
  174. });
  175. $(document).on('click', '#chooseicon ul li', function () {
  176. $("input[name='row[icon]']").val('fa fa-' + $(this).data("font"));
  177. Layer.closeAll();
  178. });
  179. $(document).on('keyup', 'input.js-icon-search', function () {
  180. $("#chooseicon ul li").show();
  181. if ($(this).val() != '') {
  182. $("#chooseicon ul li:not([data-font*='" + $(this).val() + "'])").hide();
  183. }
  184. });
  185. }
  186. }
  187. };
  188. return Controller;
  189. });