menu-editor.js 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458
  1. let MenuEditor = (function() {
  2. let public = {};
  3. /**
  4. * ID редактироуемого элемента
  5. */
  6. let __EditItemID = -1;
  7. let __Elements = {
  8. /**
  9. * @type {HTMLDivElement}
  10. */
  11. ButtonMenuAdd: undefined,
  12. /**
  13. * @type {HTMLDivElement}
  14. */
  15. ButtonMenuTopAdd: undefined,
  16. /**
  17. * @type {HTMLDivElement}
  18. */
  19. ButtonMenuEdit: undefined,
  20. /**
  21. * @type {HTMLDivElement}
  22. */
  23. ButtonMenuTopEdit: undefined,
  24. };
  25. let __CurrentCategory = undefined;
  26. __Elements.ButtonMenuAdd = document.querySelector("#CreateMainMenuItem");
  27. if (!__Elements.ButtonMenuAdd) {
  28. Messenger.Show("Некоторые элементы не были найдены");
  29. return undefined;
  30. }
  31. __Elements.ButtonMenuAdd.onclick = addItemModal.bind(__Elements.ButtonMenuAdd, MENU_CATEGORY.MAIN);
  32. __Elements.ButtonMenuTopAdd = document.querySelector("#CreateTopMenuItem");
  33. if (!__Elements.ButtonMenuTopAdd) {
  34. Messenger.Show("Некоторые элементы не были найдены");
  35. return undefined;
  36. }
  37. __Elements.ButtonMenuTopAdd.onclick = addItemModal.bind(__Elements.ButtonMenuTopAdd, MENU_CATEGORY.TOP);
  38. __Elements.ButtonMenuEdit = document.querySelector("#EditMainMenuItem");
  39. if (!__Elements.ButtonMenuEdit) {
  40. Messenger.Show("Некоторые элементы не были найдены");
  41. return undefined;
  42. }
  43. __Elements.ButtonMenuEdit.onclick = addControls.bind(__Elements.ButtonMenuEdit, MENU_CATEGORY.MAIN);
  44. __Elements.ButtonMenuTopEdit = document.querySelector("#EditTopMenuItem");
  45. if (!__Elements.ButtonMenuTopEdit) {
  46. Messenger.Show("Некоторые элементы не были найдены");
  47. return undefined;
  48. }
  49. __Elements.ButtonMenuTopEdit.onclick = addControls.bind(__Elements.ButtonMenuTopEdit, MENU_CATEGORY.TOP);
  50. function getMenu() {
  51. XHR.POST(replaceMenu, "/menu-get");
  52. }
  53. function replaceMenu(result) {
  54. if (result && "Menu" in result) {
  55. Main.ReplaceMenu(result.Menu);
  56. } else {
  57. Messenger.Show("Обновленное меню не было получено :(");
  58. }
  59. }
  60. function addItem() {
  61. /**
  62. * @type {HTMLDivElement}
  63. */
  64. let tree = document.querySelector("#NewItemParent");
  65. /**
  66. * @type {HTMLInputElement}
  67. */
  68. let caption = document.querySelector("#NewItemCaption");
  69. /**
  70. * @type {HTMLInputElement}
  71. */
  72. let link = document.querySelector("#NewItemLink");
  73. let isLink = document.querySelector("#NewItemIsLink");
  74. if (!caption || !link || !isLink || !tree) {
  75. Messenger.Show("Необходимые элементы не были найдены. Перезагрузите страницу и повторите попытку");
  76. return;
  77. }
  78. if (caption.value.length < 2) {
  79. Messenger.Show("Некорректный заголовок");
  80. return;
  81. }
  82. if (isLink.checked) {
  83. if (link.value.length < 1) {
  84. Messenger.Show("Некорректная ссылка");
  85. return;
  86. }
  87. }
  88. let parent = tree.querySelector(".branch.selected");
  89. if (parent) {
  90. parent = {
  91. Int32: (parent.dataset.id * 1),
  92. Valid: true,
  93. };
  94. } else {
  95. parent = {
  96. Valid: false,
  97. Int32: 0,
  98. }
  99. }
  100. let data = {
  101. Parent: parent,
  102. Caption: caption.value,
  103. Link: {
  104. Valid: isLink.checked,
  105. String: link.value,
  106. },
  107. };
  108. XHR.POST(
  109. function (result) {
  110. if (result && "Error" in result && result.Error) {
  111. Messenger.Show(result.Error);
  112. } else {
  113. Messenger.Show("Пункт меню был успешно добавлен");
  114. getMenu();
  115. }
  116. },
  117. "/menu-insert-item/"+__CurrentCategory,
  118. data
  119. );
  120. this.closest(".modal").querySelector(".close").click();
  121. }
  122. function editItem() {
  123. /**
  124. * @type {HTMLInputElement}
  125. */
  126. let caption = document.querySelector("#EditItemCaption");
  127. /**
  128. * @type {HTMLInputElement}
  129. */
  130. let link = document.querySelector("#EditItemLink");
  131. let isLink = document.querySelector("#EditItemIsLink");
  132. if (!caption || !link || !isLink) {
  133. Messenger.Show("Необходимые элементы не были найдены. Перезагрузите страницу и повторите попытку");
  134. return;
  135. }
  136. if (caption.value.length < 2) {
  137. Messenger.Show("Некорректный заголовок");
  138. return;
  139. }
  140. if (isLink.checked) {
  141. if (link.value.length < 2) {
  142. Messenger.Show("Некорректная ссылка");
  143. return;
  144. }
  145. }
  146. let data = {
  147. ID: __EditItemID,
  148. Caption: caption.value,
  149. Link: {
  150. Valid: isLink.checked,
  151. String: link.value,
  152. },
  153. };
  154. XHR.POST(
  155. function (result) {
  156. if (result && "Error" in result && result.Error) {
  157. Messenger.Show(result.Error);
  158. } else {
  159. Messenger.Show("Пункт меню был успешно изменён");
  160. caption.value = "";
  161. link.value = "";
  162. isLink.checked = false;
  163. getMenu();
  164. }
  165. },
  166. "/menu-update-item",
  167. data
  168. );
  169. this.closest(".modal").querySelector(".close").click();
  170. }
  171. function deleteItem(event) {
  172. let data = { ID: __EditItemID };
  173. XHR.POST(
  174. function (result) {
  175. if (result && "Error" in result && result.Error) {
  176. Messenger.Show(result.Error);
  177. } else {
  178. Messenger.Show("Пункт меню был успешно удалён");
  179. getMenu();
  180. }
  181. },
  182. "/menu-delete-item",
  183. data
  184. );
  185. this.closest(".modal").querySelector(".close").click();
  186. }
  187. /**
  188. * Добавить элементы управления (редактировать, удалить) на каждый пункт меню
  189. */
  190. function addControls(category) {
  191. __CurrentCategory = category;
  192. let query = "";
  193. if (__CurrentCategory === MENU_CATEGORY.MAIN) {
  194. query = ".menu .text[data-id]";
  195. } else {
  196. if (__CurrentCategory === MENU_CATEGORY.TOP) {
  197. query = "nav .text[data-id]";
  198. } else {
  199. return;
  200. }
  201. }
  202. let items = document.querySelectorAll(query);
  203. for (const item of items) {
  204. let edit = document.createElement("i"),
  205. textContent = document.createElement("span");
  206. textContent.textContent = item.textContent;
  207. item.textContent = null;
  208. edit.className = "fas fa-pen";
  209. edit.onclick = editItemModal;
  210. item.append(textContent, edit);
  211. }
  212. }
  213. /**
  214. * Открыть окно для редактирования пункта меню
  215. *
  216. * @param {MouseEvent} event
  217. */
  218. function editItemModal(event) {
  219. event.stopPropagation();
  220. event.preventDefault();
  221. let body = document.createElement("div"),
  222. inputCaption = document.createElement("input"),
  223. inputLink = document.createElement("input"),
  224. button = document.createElement("button"),
  225. buttonDel = document.createElement("button"),
  226. buttonGroup = document.createElement("div"),
  227. inputCheckbox = Controls.CreateCheckbox("Сделать ссылкой?", "EditItemIsLink", null, toggleIsLink),
  228. inputCheckboxActive = Controls.CreateCheckbox("Активный пункт?", "EditItemIsActive", null, toggleIsActive);
  229. let item = this.parentElement;
  230. item.classList.add("edit");
  231. __EditItemID = item.dataset.id * 1;
  232. inputCaption.type = "text";
  233. inputCaption.placeholder = "Заголовок пункта";
  234. inputCaption.id = "EditItemCaption";
  235. inputCaption.value = item.firstChild.textContent;
  236. inputLink.type = "text";
  237. inputLink.placeholder = "Ссылка на материал или внешний URL";
  238. inputLink.id = "EditItemLink";
  239. if (item.dataset.link) {
  240. if (item.dataset.link == "none") {
  241. inputLink.disabled = true;
  242. } else {
  243. inputCheckbox.querySelector("input").checked = true;
  244. if (item.dataset.link == "url") {
  245. inputLink.value = item.href;
  246. } else {
  247. inputLink.value = item.dataset.link;
  248. }
  249. }
  250. }
  251. if (item.parentElement.matches(".hide")) {
  252. inputCheckboxActive.querySelector("input").checked = false;
  253. } else {
  254. inputCheckboxActive.querySelector("input").checked = true;
  255. }
  256. button.onclick = editItem;
  257. button.textContent = "Изменить";
  258. buttonDel.onclick = deleteItem;
  259. buttonDel.textContent = "Удалить";
  260. buttonGroup.append(button, buttonDel);
  261. buttonGroup.className = "button-group";
  262. body.append(inputCaption, inputCheckboxActive, inputCheckbox, inputLink, buttonGroup);
  263. Modal.Create("Редактировать пункт в меню", body, cancelEdit);
  264. }
  265. function cancelEdit() {
  266. if (__EditItemID > -1) {
  267. let editableItem = document.querySelector(`.text[data-id="${__EditItemID}"`);
  268. if (editableItem) {
  269. editableItem.classList.remove("edit");
  270. }
  271. __EditItemID = -1;
  272. }
  273. }
  274. /**
  275. * Создать мадальное окно с указанным типом
  276. *
  277. * @param {MENU_CATEGORY} category категория меню
  278. */
  279. function addItemModal(category) {
  280. __CurrentCategory = category;
  281. let body = document.createElement("div"),
  282. menuTreeLabel = document.createElement("label"),
  283. menuTree = document.createElement("div"),
  284. inputCaption = document.createElement("input"),
  285. inputLink = document.createElement("input"),
  286. button = document.createElement("button"),
  287. buttonGroup = document.createElement("div"),
  288. inputCheckbox = Controls.CreateCheckbox("Сделать ссылкой?", "NewItemIsLink", null, toggleIsLink);
  289. menuTreeLabel.textContent = "Родительский элемент:";
  290. menuTree.className = "menu-tree";
  291. menuTree.id = "NewItemParent";
  292. inputCaption.type = "text";
  293. inputCaption.placeholder = "Заголовок пункта";
  294. inputCaption.id = "NewItemCaption";
  295. inputLink.type = "text";
  296. inputLink.placeholder = "Ссылка на материал или внешний URL";
  297. inputLink.id = "NewItemLink";
  298. inputLink.disabled = true;
  299. button.onclick = addItem;
  300. button.textContent = "Добавить";
  301. buttonGroup.append(button);
  302. buttonGroup.className = "button-group";
  303. body.append(menuTreeLabel, menuTree, inputCaption, inputCheckbox, inputLink, buttonGroup);
  304. getMenuSource(menuTree);
  305. Modal.Create("Добавить новый пункт в меню", body);
  306. }
  307. function toggleIsLink() {
  308. /**
  309. * @type {HTMLInputElement}
  310. */
  311. let input = this.parentElement.nextElementSibling;
  312. if (input) {
  313. input.disabled = !this.checked;
  314. if (input.disabled) {
  315. input.value = "";
  316. }
  317. }
  318. }
  319. function getMenuSource(elem) {
  320. XHR.POST(postGetMenuSource, "/menu-get-source/"+__CurrentCategory, {}, elem);
  321. }
  322. function postGetMenuSource(result, elem) {
  323. if (!result || !elem) {
  324. return;
  325. }
  326. if (!"Menu" in result) {
  327. Messenger.Show("Нет данных меню");
  328. return;
  329. }
  330. let tree = __init__Tree();
  331. buildTree(result.Menu, tree);
  332. tree.SetTo(elem);
  333. }
  334. /**
  335. *
  336. * @param {[Object]} root
  337. * @param {Object} tree
  338. */
  339. function buildTree(root, tree, branch) {
  340. for (let item of root) {
  341. let newBranch = tree.AddBranch(item.Caption, {id: item.ID}, branch);
  342. if (item.Rows !== null) {
  343. buildTree(item.Rows, tree, newBranch);
  344. }
  345. }
  346. }
  347. /**
  348. *
  349. * @param {MouseEvent} event
  350. */
  351. function toggleIsActive(event) {
  352. if (__EditItemID < 0) {
  353. event.preventDefault();
  354. return;
  355. }
  356. let data = {
  357. ID: __EditItemID,
  358. Active: this.checked,
  359. };
  360. XHR.POST(
  361. function (result) {
  362. if (result && "Error" in result && result.Error) {
  363. Messenger.Show(result.Error);
  364. } else {
  365. Messenger.Show("Статус пункта меню был успешно изменён");
  366. getMenu();
  367. }
  368. },
  369. "/menu-update-item-active",
  370. data
  371. );
  372. this.closest(".modal").querySelector(".close").click();
  373. }
  374. return public;
  375. })();