You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

507 lines
18 KiB

2 years ago
  1. var sidebarAndContentHeight = null;
  2. $(document).ready(function () {
  3. 'use strict';
  4. // Fullscreen/���̨ƥ�
  5. function toggleFullScreen() {
  6. if ((document.fullScreenElement && document.fullScreenElement !== null) ||
  7. (!document.mozFullScreen && !document.webkitIsFullScreen)) {
  8. if (document.documentElement.requestFullScreen) {
  9. document.documentElement.requestFullScreen();
  10. } else if (document.documentElement.mozRequestFullScreen) {
  11. document.documentElement.mozRequestFullScreen();
  12. } else if (document.documentElement.webkitRequestFullScreen) {
  13. document.documentElement.webkitRequestFullScreen(Element.ALLOW_KEYBOARD_INPUT);
  14. }
  15. } else {
  16. if (document.cancelFullScreen) {
  17. document.cancelFullScreen();
  18. } else if (document.mozCancelFullScreen) {
  19. document.mozCancelFullScreen();
  20. } else if (document.webkitCancelFullScreen) {
  21. document.webkitCancelFullScreen();
  22. }
  23. }
  24. }
  25. $('.toggle-fullscreen').click(function () {
  26. toggleFullScreen();
  27. });
  28. // Waves//�i��
  29. Waves.displayEffect();
  30. // tooltips//�u�㴣��
  31. $('[data-toggle~="tooltip"]').tooltip({
  32. container: 'body'
  33. });
  34. // Switchery//�}�}
  35. var elems = Array.prototype.slice.call(document.querySelectorAll('.js-switch'));
  36. elems.forEach(function (html) {
  37. //var switchery = new Switchery(html, { color: '#23B7E5' });
  38. var switchery = new Switchery(html, { isUseClass: true });
  39. });
  40. // Element Blocking //����
  41. function blockUI(item) {
  42. $(item).block({
  43. message: '<img src="/images/reload.gif" width="20px" alt="">',
  44. css: {
  45. border: 'none',
  46. padding: '0px',
  47. width: '20px',
  48. height: '20px',
  49. backgroundColor: 'transparent'
  50. },
  51. overlayCSS: {
  52. backgroundColor: '#fff',
  53. opacity: 0.9,
  54. cursor: 'wait'
  55. }
  56. });
  57. }
  58. function unblockUI(item) {
  59. $(item).unblock();
  60. }
  61. // Panel Control
  62. $('.panel-collapse').click(function () {//���_
  63. $(this).closest(".panel").children('.panel-body').slideToggle('fast');
  64. });
  65. $('.panel-reload').click(function () {//���s
  66. var el = $(this).closest(".panel").children('.panel-body');
  67. blockUI(el);
  68. window.setTimeout(function () {
  69. unblockUI(el);
  70. }, 1000);
  71. });
  72. $('.panel-remove').click(function () {//����
  73. $(this).closest(".panel").hide();
  74. });
  75. // Push Menu
  76. $('.push-sidebar').click(function () {
  77. var hidden = $('.sidebar');
  78. if (hidden.hasClass('visible')) {
  79. hidden.removeClass('visible');
  80. $('.page-inner').removeClass('sidebar-visible');
  81. } else {
  82. hidden.addClass('visible');
  83. $('.page-inner').addClass('sidebar-visible');
  84. }
  85. });
  86. // sortable
  87. $(".sortable").sortable({
  88. connectWith: '.sortable',
  89. items: '.panel',
  90. helper: 'original',
  91. revert: true,
  92. placeholder: 'panel-placeholder',
  93. forcePlaceholderSize: true,
  94. opacity: 0.95,
  95. cursor: 'move'
  96. });
  97. // Uniform
  98. var checkBox = $("input[type=checkbox]:not(.switchery), input[type=radio]:not(.no-uniform)");
  99. if (checkBox.size() > 0) {
  100. checkBox.each(function () {
  101. $(this).uniform();
  102. });
  103. };
  104. // .toggleAttr() Function
  105. $.fn.toggleAttr = function (a, b) {
  106. var c = (b === undefined);
  107. return this.each(function () {
  108. if ((c && !$(this).is("[" + a + "]")) || (!c && b)) $(this).attr(a, a);
  109. else $(this).removeAttr(a);
  110. });
  111. };
  112. // Sidebar Menu
  113. var parent, ink, d, x, y;
  114. $('.sidebar .accordion-menu li .sub-menu').slideUp(0);
  115. $('.sidebar .accordion-menu li.open .sub-menu').slideDown(0);
  116. $('.small-sidebar .sidebar .accordion-menu li.open .sub-menu').hide(0);
  117. // Makes .page-inner height same as .page-sidebar height
  118. sidebarAndContentHeight = function () {
  119. var fnIframeResize = function (h) {
  120. var aryIframe = document.getElementsByTagName("iframe");
  121. if (aryIframe == null) return;
  122. for (i = 0; i < aryIframe.length; i++) {
  123. var Iframe = aryIframe[i];
  124. Iframe.height = h;
  125. }
  126. },
  127. content = $('.page-inner'),
  128. sidebar = $('.page-sidebar'),
  129. body = $('body'),
  130. pageContentHeight = $(document.body).outerHeight(true) - 50,
  131. iWidth = $(window).width() - $('#divPrevNext').width(),
  132. dRate = iWidth < 500 ? 0.9 : iWidth < 750 ? 0.93 : 0.95;
  133. if (pageContentHeight >= content.height()) {
  134. content.attr('style', 'min-height:' + pageContentHeight + 'px !important');
  135. }
  136. $('#tabsList').css('width', iWidth * dRate);
  137. fnIframeResize(pageContentHeight);
  138. };
  139. window.onresize = sidebarAndContentHeight;
  140. sidebarAndContentHeight();
  141. // Slimscroll
  142. $('.slimscroll').slimscroll({
  143. allowPageScroll: true
  144. });
  145. // Layout Settings
  146. var fixedHeaderCheck = document.querySelector('.fixed-header-check'),
  147. fixedSidebarCheck = document.querySelector('.fixed-sidebar-check'),
  148. //horizontalBarCheck = document.querySelector('.horizontal-bar-check'),
  149. toggleSidebarCheck = document.querySelector('.toggle-sidebar-check'),
  150. boxedLayoutCheck = document.querySelector('.boxed-layout-check'),
  151. compactMenuCheck = document.querySelector('.compact-menu-check'),
  152. hoverMenuCheck = document.querySelector('.hover-menu-check'),
  153. defaultOptions = function () {
  154. //if (($('body').hasClass('small-sidebar')) && (toggleSidebarCheck.checked == 1)) {
  155. // toggleSidebarCheck.click();
  156. //}
  157. if (!($('body').hasClass('page-header-fixed')) && (fixedHeaderCheck.checked == 0)) {
  158. fixedHeaderCheck.click();
  159. }
  160. if (($('body').hasClass('page-sidebar-fixed')) && (fixedSidebarCheck.checked == 1)) {
  161. fixedSidebarCheck.click();
  162. }
  163. //if (($('body').hasClass('page-horizontal-bar')) && (horizontalBarCheck.checked == 1)) {
  164. // horizontalBarCheck.click();
  165. //}
  166. if (($('body').hasClass('compact-menu')) && (compactMenuCheck.checked == 1)) {
  167. compactMenuCheck.click();
  168. }
  169. if (($('body').hasClass('hover-menu')) && (hoverMenuCheck.checked == 1)) {
  170. hoverMenuCheck.click();
  171. }
  172. if (($('.page-content').hasClass('container')) && (boxedLayoutCheck.checked == 1)) {
  173. boxedLayoutCheck.click();
  174. }
  175. $(".theme-color").attr("href", '/css/themes/white.css');
  176. sidebarAndContentHeight();
  177. },
  178. str = $('.navbar .logo-box a span').text(),
  179. smTxt = (str.slice(0, 1)),
  180. collapseSidebar = function () {
  181. $('body').toggleClass("small-sidebar");
  182. $('.navbar .logo-box a span').html($('.navbar .logo-box a span').text() == smTxt ? str : smTxt);
  183. sidebarAndContentHeight();
  184. },
  185. fixedHeader = function () {
  186. if (($('body').hasClass('page-horizontal-bar')) && ($('body').hasClass('page-sidebar-fixed')) && ($('body').hasClass('page-header-fixed'))) {
  187. fixedSidebarCheck.click();
  188. alert("Static header isn't compatible with fixed horizontal nav mode. Modern will set static mode on horizontal nav.");
  189. };
  190. //$('body').toggleClass('page-header-fixed');
  191. sidebarAndContentHeight();
  192. },
  193. fixedSidebar = function () {
  194. if (($('body').hasClass('page-horizontal-bar')) && (!$('body').hasClass('page-sidebar-fixed')) && (!$('body').hasClass('page-header-fixed'))) {
  195. fixedHeaderCheck.click();
  196. alert("Fixed horizontal nav isn't compatible with static header mode. Modern will set fixed mode on header.");
  197. };
  198. if (($('body').hasClass('hover-menu')) && (!$('body').hasClass('page-sidebar-fixed'))) {
  199. hoverMenuCheck.click();
  200. alert("Fixed sidebar isn't compatible with hover menu mode. Modern will set accordion mode on menu.");
  201. };
  202. $('body').toggleClass('page-sidebar-fixed');
  203. if ($('body').hasClass('.page-sidebar-fixed')) {
  204. $('.page-sidebar-inner').slimScroll({
  205. destroy: true
  206. });
  207. };
  208. $('.page-sidebar-inner').slimScroll();
  209. sidebarAndContentHeight();
  210. },
  211. horizontalBar = function () {
  212. $('.sidebar').toggleClass('horizontal-bar');
  213. $('.sidebar').toggleClass('page-sidebar');
  214. $('body').toggleClass('page-horizontal-bar');
  215. if (($('body').hasClass('page-sidebar-fixed')) && (!$('body').hasClass('page-header-fixed'))) {
  216. fixedHeaderCheck.click();
  217. alert("Static header isn't compatible with fixed horizontal nav mode. Modern will set static mode on horizontal nav.");
  218. };
  219. sidebarAndContentHeight();
  220. },
  221. boxedLayout = function () {
  222. $('.page-content').toggleClass('container');
  223. sidebarAndContentHeight();
  224. },
  225. compactMenu = function () {
  226. $('body').toggleClass('compact-menu');
  227. sidebarAndContentHeight();
  228. },
  229. hoverMenu = function () {
  230. if ((!$('body').hasClass('hover-menu')) && ($('body').hasClass('page-sidebar-fixed'))) {
  231. fixedSidebarCheck.click();
  232. alert("Fixed sidebar isn't compatible with hover menu mode. Modern will set static mode on sidebar.");
  233. };
  234. $('body').toggleClass('hover-menu');
  235. sidebarAndContentHeight();
  236. };
  237. // Logo text on Collapsed Sidebar
  238. $('.small-sidebar .navbar .logo-box a span').html($('.navbar .logo-box a span').text() == smTxt ? str : smTxt);
  239. if (!$('.theme-settings').length) {
  240. $('.sidebar-toggle').click(function () {
  241. collapseSidebar();
  242. });
  243. };
  244. if ($('.theme-settings').length) {
  245. fixedHeaderCheck.onchange = function () {
  246. //debugger;
  247. fixedHeader();
  248. };
  249. //fixedSidebarCheck.onchange = function () {
  250. // fixedSidebar();
  251. //};
  252. //horizontalBarCheck.onchange = function () {
  253. // horizontalBar();
  254. //};
  255. //toggleSidebarCheck.onchange = function () {
  256. // collapseSidebar();
  257. //};
  258. //compactMenuCheck.onchange = function () {
  259. // compactMenu();
  260. //};
  261. //hoverMenuCheck.onchange = function () {
  262. // hoverMenu();
  263. //};
  264. //boxedLayoutCheck.onchange = function () {
  265. // boxedLayout();
  266. //};
  267. // Sidebar Toggle
  268. $('.sidebar-toggle').click(function () {
  269. //toggleSidebarCheck.click();
  270. collapseSidebar();
  271. });
  272. // Reset options
  273. $('.reset-options').click(function () {
  274. defaultOptions();
  275. });
  276. // Color changer
  277. $(".colorbox").click(function () {
  278. var color = $(this).attr('data-css');
  279. $(".theme-color").attr('href', 'assets/css/themes/' + color + '.css');
  280. return false;
  281. });
  282. // Fixed Sidebar Bug
  283. if (!($('body').hasClass('page-sidebar-fixed')) && (fixedSidebarCheck.checked == 1)) {
  284. $('body').addClass('page-sidebar-fixed');
  285. }
  286. //if (($('body').hasClass('page-sidebar-fixed')) && (fixedSidebarCheck.checked == 0)) {
  287. // $('.fixed-sidebar-check').prop('checked', true);
  288. //}
  289. // Fixed Header Bug
  290. if (!($('body').hasClass('page-header-fixed')) && (fixedHeaderCheck.checked == 1)) {
  291. $('body').addClass('page-header-fixed');
  292. }
  293. if (($('body').hasClass('page-header-fixed')) && (fixedHeaderCheck.checked == 0)) {
  294. $('.fixed-header-check').prop('checked', true);
  295. }
  296. // horizontal bar Bug
  297. //if (!($('body').hasClass('page-horizontal-bar')) && (horizontalBarCheck.checked == 1)) {
  298. // $('body').addClass('page-horizontal-bar');
  299. // $('.sidebar').addClass('horizontal-bar');
  300. // $('.sidebar').removeClass('page-sidebar');
  301. //}
  302. //if (($('body').hasClass('page-horizontal-bar')) && (horizontalBarCheck.checked == 0)) {
  303. // $('.horizontal-bar-check').prop('checked', true);
  304. //}
  305. // Toggle Sidebar Bug
  306. //if (!($('body').hasClass('small-sidebar')) && (toggleSidebarCheck.checked == 1)) {
  307. // $('body').addClass('small-sidebar');
  308. //}
  309. //if (($('body').hasClass('small-sidebar')) && (toggleSidebarCheck.checked == 0)) {
  310. // $('.horizontal-bar-check').prop('checked', true);
  311. //}
  312. // Boxed Layout Bug
  313. //if (!($('.page-content').hasClass('container')) && (boxedLayoutCheck.checked == 1)) {
  314. // $('.toggle-sidebar-check').addClass('container');
  315. //}
  316. //if (($('.page-content').hasClass('container')) && (boxedLayoutCheck.checked == 0)) {
  317. // $('.boxed-layout-check').prop('checked', true);
  318. //}
  319. //// Boxed Layout Bug
  320. //if (!($('.page-content').hasClass('container')) && (boxedLayoutCheck.checked == 1)) {
  321. // $('.toggle-sidebar-check').addClass('container');
  322. //}
  323. //if (($('.page-content').hasClass('container')) && (boxedLayoutCheck.checked == 0)) {
  324. // $('.boxed-layout-check').prop('checked', true);
  325. //}
  326. //// Boxed Layout Bug
  327. //if (!($('.page-content').hasClass('container')) && (boxedLayoutCheck.checked == 1)) {
  328. // $('.toggle-sidebar-check').addClass('container');
  329. //}
  330. //if (($('.page-content').hasClass('container')) && (boxedLayoutCheck.checked == 0)) {
  331. // $('.boxed-layout-check').prop('checked', true);
  332. //}
  333. }
  334. // Chat Sidebar
  335. // Chat Sidebar
  336. if ($('.chat').length) {
  337. var menuRight = document.getElementById('cbp-spmenu-s1'),
  338. showRight = document.getElementById('showRight'),
  339. closeRight = document.getElementById('closeRight'),
  340. menuRight2 = document.getElementById('cbp-spmenu-s2'),
  341. closeRight2 = document.getElementById('closeRight2'),
  342. body = document.body;
  343. showRight.onclick = function () {
  344. classie.toggle(menuRight, 'cbp-spmenu-open');
  345. };
  346. closeRight.onclick = function () {
  347. classie.toggle(menuRight, 'cbp-spmenu-open');
  348. };
  349. closeRight2.onclick = function () {
  350. classie.toggle(menuRight2, 'cbp-spmenu-open');
  351. };
  352. $('.showRight2').click(function () {
  353. classie.toggle(menuRight2, 'cbp-spmenu-open');
  354. });
  355. $(".chat-write form input").keypress(function (e) {
  356. if ((e.which == 13) && (!$(this).val().length == 0)) {
  357. $('<div class="chat-item chat-item-right"><div class="chat-message">' + $(this).val() + '</div></div>').insertAfter(".chat .chat-item:last-child");
  358. $(this).val('');
  359. } else if (e.which == 13) {
  360. return;
  361. }
  362. $('.chat').slimscroll({
  363. allowPageScroll: true
  364. });
  365. });
  366. }
  367. });
  368. /********************************************
  369. * ƦW١Ginit()
  370. * تGl
  371. * @̡GJohn
  372. * ɶG2016/11/02
  373. * ѼƻG
  374. *********************************************/
  375. function globalinit() {
  376. $('.sidebar .accordion-menu > li.droplink > a').unbind('click').click(function () {
  377. //debugger;
  378. if ($('body').hasClass('.small-sidebar')) {
  379. return;
  380. };
  381. if ($('body').hasClass('.page-horizontal-bar')) {
  382. return;
  383. };
  384. if ($('body').hasClass('.hover-menu')) {
  385. return;
  386. };
  387. var menu = $('.sidebar .menu'),
  388. sidebar = $('.page-sidebar-inner'),
  389. page = $('.page-content'),
  390. sub = $(this).next(),
  391. el = $(this);
  392. menu.find('li').removeClass('open');
  393. $('.sub-menu').slideUp(200, function () {
  394. sidebarAndContentHeight();
  395. });
  396. sidebarAndContentHeight();
  397. if (!sub.is(':visible')) {
  398. $(this).parent('li').addClass('open');
  399. $(this).next('.sub-menu').slideDown(200, function () {
  400. sidebarAndContentHeight();
  401. });
  402. } else {
  403. sub.slideUp(200, function () {
  404. sidebarAndContentHeight();
  405. });
  406. }
  407. return false;
  408. });
  409. $('.sidebar .accordion-menu .sub-menu li.droplink > a').unbind('click').click(function () {
  410. //debugger;
  411. var menu = $(this).parent().parent(),
  412. sidebar = $('.page-sidebar-inner'),
  413. page = $('.page-content'),
  414. sub = $(this).next(),
  415. el = $(this);
  416. menu.find('li').each(function () {
  417. if ($(this).hasClass('open')) {
  418. $(this).find('ul').slideUp(200);
  419. }
  420. });
  421. menu.find('li').removeClass('open');
  422. sidebarAndContentHeight();
  423. if (!sub.is(':visible')) {
  424. $(this).parent('li').addClass('open');
  425. $(this).next('.sub-menu').slideDown(200, function () {
  426. sidebarAndContentHeight();
  427. });
  428. } else {
  429. sub.slideUp(200, function () {
  430. sidebarAndContentHeight();
  431. });
  432. }
  433. return false;
  434. });
  435. }