index.html 57 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8" />
  5. <meta http-equiv="X-UA-Compatible" content="IE=edge" />
  6. <meta name="viewport" content="width=device-width, initial-scale=1.0" />
  7. <title>Document</title>
  8. </head>
  9. <body>
  10. <div id="formContainer"></div>
  11. <script>
  12. //PASSWORD
  13. // function Password(parent, open) {
  14. // let formBody = document.createElement("div");
  15. // let passwordInput = document.createElement("input");
  16. // let isOpenInput = document.createElement("input");
  17. // parent.append(formBody);
  18. // passwordInput.type = open ? "text" : "password";
  19. // passwordInput.oninput = () => {
  20. // this.value = passwordInput.value;
  21. // if (typeof this.onChange === "function") {
  22. // this.onChange(this.value);
  23. // }
  24. // };
  25. // isOpenInput.type = "checkbox";
  26. // isOpenInput.checked = open;
  27. // isOpenInput.onchange = () => {
  28. // this.open = isOpenInput.checked;
  29. // passwordInput.type = this.open ? "text" : "password";
  30. // if (typeof this.onOpenChange === "function") {
  31. // this.onOpenChange(this.open);
  32. // }
  33. // };
  34. // const setValue = (value) => {
  35. // this.value = value;
  36. // passwordInput.value = this.value;
  37. // };
  38. // const getValue = () => {
  39. // return this.value;
  40. // };
  41. // const setOpen = (value) => {
  42. // this.open = value;
  43. // isOpenInput.checked = value;
  44. // passwordInput.type = this.open ? "text" : "password";
  45. // };
  46. // const getOpen = () => {
  47. // return this.open;
  48. // };
  49. // formBody.append(passwordInput);
  50. // formBody.append(isOpenInput);
  51. // this.open = open;
  52. // this.setValue = setValue;
  53. // this.getValue = getValue;
  54. // this.setOpen = setOpen;
  55. // this.getOpen = getOpen;
  56. // this.value = passwordInput.value;
  57. // }
  58. // let p = new Password(document.body, true);
  59. // p.onChange = (data) => console.log(data);
  60. // p.onOpenChange = (open) => console.log(open);
  61. // p.setValue("qwerty");
  62. // console.log(p.getValue());
  63. // p.setOpen(false);
  64. // console.log(p.getOpen());
  65. //LOGINFORM
  66. // function LoginForm(parent, open) {
  67. // let formBody = document.createElement("div");
  68. // let passwordInput = document.createElement("input");
  69. // let loginInput = document.createElement("input");
  70. // let isOpenInput = document.createElement("input");
  71. // let loginButton = document.createElement("button");
  72. // parent.append(formBody);
  73. // passwordInput.type = open ? "text" : "password";
  74. // passwordInput.oninput = () => {
  75. // this.passwordValue = passwordInput.value;
  76. // loginButton.disabled = checkIfBlank();
  77. // if (typeof this.onPasswordChange === "function") {
  78. // this.onPasswordChange(this.passwordValue);
  79. // }
  80. // };
  81. // loginInput.type = "text";
  82. // loginInput.oninput = () => {
  83. // this.loginValue = loginInput.value;
  84. // loginButton.disabled = checkIfBlank();
  85. // if (typeof this.onLoginChange === "function") {
  86. // this.onLoginChange(this.loginValue);
  87. // }
  88. // };
  89. // isOpenInput.type = "checkbox";
  90. // isOpenInput.checked = open;
  91. // isOpenInput.onchange = () => {
  92. // this.open = isOpenInput.checked;
  93. // passwordInput.type = this.open ? "text" : "password";
  94. // if (typeof this.onOpenChange === "function") {
  95. // this.onOpenChange(this.open);
  96. // }
  97. // };
  98. // loginButton.innerText = "Login";
  99. // const setPasswordValue = (value) => {
  100. // this.passwordValue = value;
  101. // passwordInput.value = this.passwordValue;
  102. // };
  103. // const getPasswordValue = () => {
  104. // return this.passwordValue;
  105. // };
  106. // const setLoginValue = (value) => {
  107. // this.loginValue = value;
  108. // loginInput.value = this.loginValue;
  109. // };
  110. // const getLoginValue = () => {
  111. // return this.loginValue;
  112. // };
  113. // const setOpen = (value) => {
  114. // this.open = value;
  115. // isOpenInput.checked = value;
  116. // passwordInput.type = this.open ? "text" : "password";
  117. // };
  118. // const getOpen = () => {
  119. // return this.open;
  120. // };
  121. // const checkIfBlank = () => {
  122. // if (this.loginValue.trim().length === 0 || this.passwordValue.trim().length === 0) {
  123. // return true;
  124. // }
  125. // return false;
  126. // };
  127. // formBody.append(loginInput);
  128. // formBody.append(passwordInput);
  129. // formBody.append(isOpenInput);
  130. // formBody.append(loginButton);
  131. // this.open = open;
  132. // this.setPasswordValue = setPasswordValue;
  133. // this.getPasswordValue = getPasswordValue;
  134. // this.setLoginValue = setLoginValue;
  135. // this.getLoginValue = getLoginValue;
  136. // this.setOpen = setOpen;
  137. // this.getOpen = getOpen;
  138. // this.passwordValue = passwordInput.value;
  139. // this.loginValue = loginInput.value;
  140. // loginButton.disabled = checkIfBlank();
  141. // }
  142. // let p = new LoginForm(document.body, true);
  143. // p.onPasswordChange = (data) => console.log(data);
  144. // p.onOpenChange = (open) => console.log(open);
  145. // p.onLoginChange = (data) => console.log(data);
  146. // p.setPasswordValue("qwerty");
  147. // console.log(p.getPasswordValue());
  148. // p.setLoginValue("qwerty");
  149. // console.log(p.getLoginValue());
  150. // p.setOpen(false);
  151. // console.log(p.getOpen());
  152. //PASSWORD VERIFY
  153. // function Password(parent, open) {
  154. // let formBody = document.createElement("div");
  155. // let passwordInput1 = document.createElement("input");
  156. // let passwordInput2 = document.createElement("input");
  157. // let isOpenInput = document.createElement("input");
  158. // let checkButton = document.createElement("button");
  159. // parent.append(formBody);
  160. // checkButton.innerText = "checkButton";
  161. // passwordInput1.type = open ? "text" : "password";
  162. // passwordInput1.oninput = () => {
  163. // this.value1 = passwordInput1.value;
  164. // checkButton.disabled = !isValid();
  165. // if (typeof this.onPassword1Change === "function") {
  166. // this.onPassword1Change(this.value1);
  167. // }
  168. // };
  169. // passwordInput2.type = "password";
  170. // passwordInput2.style.display = !open ? "inline" : "none";
  171. // passwordInput2.oninput = () => {
  172. // this.value2 = passwordInput2.value;
  173. // checkButton.disabled = !isValid();
  174. // console.log(isValid());
  175. // if (typeof this.onPassword2Change === "function") {
  176. // this.onPassword2Change(this.value2);
  177. // }
  178. // };
  179. // isOpenInput.type = "checkbox";
  180. // isOpenInput.checked = open;
  181. // isOpenInput.onchange = () => {
  182. // this.open = isOpenInput.checked;
  183. // checkButton.disabled = !isValid();
  184. // passwordInput1.type = this.open ? "text" : "password";
  185. // passwordInput2.style.display = !this.open ? "inline" : "none";
  186. // if (typeof this.onOpenChange === "function") {
  187. // this.onOpenChange(this.open);
  188. // }
  189. // };
  190. // const setValue1 = (newValue) => {
  191. // this.value1 = newValue;
  192. // passwordInput1.value = newValue;
  193. // checkButton.disabled = !isValid();
  194. // };
  195. // const setValue2 = (newValue) => {
  196. // this.value2 = newValue;
  197. // passwordInput2.value = newValue;
  198. // checkButton.disabled = !isValid();
  199. // };
  200. // const getValue1 = () => {
  201. // return this.value1;
  202. // };
  203. // const getValue2 = () => {
  204. // return this.value2;
  205. // };
  206. // const setOpen = (value) => {
  207. // this.open = value;
  208. // isOpenInput.checked = value;
  209. // passwordInput1.type = this.open ? "text" : "password";
  210. // passwordInput2.style.display = !this.open ? "inline" : "none";
  211. // checkButton.disabled = !isValid();
  212. // };
  213. // const getOpen = () => {
  214. // return this.open;
  215. // };
  216. // const isValid = () => {
  217. // if (this.open === true) {
  218. // return false;
  219. // }
  220. // if (this.value1 === this.value2 && this.value1.trim() !== "" && this.value2.trim()) {
  221. // return true;
  222. // }
  223. // return false;
  224. // };
  225. // formBody.append(passwordInput1);
  226. // formBody.append(passwordInput2);
  227. // formBody.append(isOpenInput);
  228. // formBody.append(checkButton);
  229. // this.open = open;
  230. // this.value1 = passwordInput1.value;
  231. // this.value2 = passwordInput2.value;
  232. // this.setOpen = setOpen;
  233. // this.getOpen = getOpen;
  234. // this.setValue1 = setValue1;
  235. // this.getValue1 = getValue1;
  236. // this.setValue2 = setValue2;
  237. // this.getValue2 = getValue2;
  238. // checkButton.disabled = !isValid();
  239. // }
  240. // let p = new Password(document.body, true);
  241. // p.onPassword1Change = (data) => console.log(data);
  242. // p.onPassword2Change = (data) => console.log(data);
  243. // p.onOpenChange = (open) => console.log(open);
  244. // p.setValue1("qwerty");
  245. // console.log(p.getValue1());
  246. // p.setValue2("qwer");
  247. // console.log(p.getValue2());
  248. // p.setOpen(false);
  249. // console.log(p.getOpen());
  250. //FORM;
  251. // function Form(el, data, okCallback, cancelCallback) {
  252. // let formBody = document.createElement("div");
  253. // let inputBox = document.createElement("div");
  254. // let okButton = document.createElement("button");
  255. // let validatorErrors = new Set();
  256. // let requiredErrors = new Set();
  257. // let cancelButton = document.createElement("button");
  258. // let initData = { ...data };
  259. // okButton.innerHTML = "OK";
  260. // cancelButton.innerHTML = "Cancel";
  261. // el.appendChild(formBody);
  262. // formBody.append(inputBox);
  263. // let inputCreators = {
  264. // Number(key, value, oninput) {
  265. // let input = document.createElement("input");
  266. // input.type = "Number";
  267. // input.value = value;
  268. // input.oninput = () => oninput(input.value);
  269. // return input;
  270. // },
  271. // String(key, value, oninput) {
  272. // if (value.length > 20) {
  273. // let textarea = document.createElement("textarea");
  274. // textarea.value = value;
  275. // textarea.oninput = () => oninput(textarea.value);
  276. // return textarea;
  277. // } else {
  278. // let input = document.createElement("input");
  279. // input.type = "text";
  280. // if ([...value].every((el) => el === "*")) {
  281. // input.type = "password";
  282. // }
  283. // input.placeholder = key;
  284. // input.value = value;
  285. // input.oninput = () => oninput(input.value);
  286. // return input;
  287. // }
  288. // },
  289. // Boolean(key, value, oninput) {
  290. // let input = document.createElement("input");
  291. // input.type = "checkbox";
  292. // input.checked = value;
  293. // input.oninput = () => oninput(Boolean(input.checked));
  294. // return input;
  295. // },
  296. // Date(key, value, oninput) {
  297. // let input = document.createElement("input");
  298. // let timeOffset = new Date().getTimezoneOffset();
  299. // let dateInMillSec =
  300. // new Date(value.toISOString()).getTime() - new Date().getTimezoneOffset() * 1000 * 60;
  301. // input.type = "datetime-local";
  302. // input.value = new Date(dateInMillSec).toISOString().slice(0, 16);
  303. // input.oninput = () => oninput(new Date(input.value));
  304. // return input;
  305. // },
  306. // Array(key, value, oninput) {
  307. // let inputBox = document.createElement("div");
  308. // value.map((element) => {
  309. // let btn = document.createElement("button");
  310. // btn.innerText = element;
  311. // btn.onclick = () => {
  312. // formContainer.innerHTML = "";
  313. // fetch(element)
  314. // .then((res) => res.json())
  315. // .then((data) => {
  316. // let form = new Form(
  317. // formContainer,
  318. // data,
  319. // () => console.log("ok"),
  320. // () => console.log("cancel")
  321. // );
  322. // form.okCallback = () => console.log("ok2");
  323. // // form.validators.surname = (value, key, data, input) =>
  324. // // value.length > 2 && value[0].toUpperCase() == value[0] && !value.includes(" ") ? true : "Wrong surname";
  325. // });
  326. // };
  327. // inputBox.append(btn);
  328. // });
  329. // return inputBox;
  330. // },
  331. // };
  332. // let createInputs = (data) => {
  333. // inputBox.innerHTML = "";
  334. // for (let [key, value] of Object.entries(data)) {
  335. // let inputWrapper = document.createElement("div");
  336. // let inputType = value.constructor.name;
  337. // let th = document.createElement("th");
  338. // let inputLabel = document.createElement("label");
  339. // let isRequired = key.trim()[0] === "*";
  340. // let isRequiredChar = document.createElement("span");
  341. // inputLabel.style.marginLeft = "5px";
  342. // isRequiredChar.innerText = "* ";
  343. // isRequiredChar.style.color = "red";
  344. // if (isRequired) {
  345. // th.prepend(isRequiredChar);
  346. // }
  347. // th.innerHTML += isRequired ? key.slice(1, key.length) : key;
  348. // let input = inputCreators[inputType](key, value, (value) => {
  349. // let validator;
  350. // if (isRequired && value.trim().length === 0) {
  351. // input.style.border = "1px solid red";
  352. // requiredErrors.add(key);
  353. // } else {
  354. // inputLabel.style.border = "none";
  355. // requiredErrors.delete(key);
  356. // }
  357. // if (this.validators && typeof this.validators[key] === "function") {
  358. // validator = this.validators[key];
  359. // }
  360. // if (validator) {
  361. // let validResult = validator(value, key, data, input);
  362. // if (validResult !== true && validResult.trim() !== "") {
  363. // inputLabel.innerText = validResult;
  364. // inputLabel.style.border = "1px solid red";
  365. // validatorErrors.add(key);
  366. // } else {
  367. // inputLabel.innerText = "";
  368. // inputLabel.style.border = "none";
  369. // validatorErrors.delete(key);
  370. // }
  371. // }
  372. // inputWrapper.append(inputLabel);
  373. // !validatorErrors.has(key) && (this.data[key] = value);
  374. // okButton.disabled = checkErrors();
  375. // });
  376. // inputWrapper.appendChild(th);
  377. // inputWrapper.appendChild(input);
  378. // inputBox.append(inputWrapper);
  379. // }
  380. // };
  381. // createInputs(data);
  382. // okButton.disabled = checkErrors();
  383. // function checkErrors() {
  384. // if (requiredErrors.size === 0 && validatorErrors.size === 0) {
  385. // return false;
  386. // }
  387. // return true;
  388. // }
  389. // if (typeof okCallback === "function") {
  390. // formBody.appendChild(okButton);
  391. // okButton.onclick = (e) => {
  392. // this.okCallback(data);
  393. // };
  394. // }
  395. // if (typeof cancelCallback === "function") {
  396. // formBody.appendChild(cancelButton);
  397. // cancelButton.onclick = () => {
  398. // this.data = { ...initData };
  399. // console.log(initData);
  400. // createInputs(this.data);
  401. // cancelCallback();
  402. // };
  403. // }
  404. // this.okCallback = okCallback;
  405. // this.cancelCallback = cancelCallback;
  406. // this.data = data;
  407. // this.validators = {};
  408. // }
  409. //POWER OF THE FORM
  410. // function Password(parent, open) {
  411. // let formBody = document.createElement("div");
  412. // let passwordInput1 = document.createElement("input");
  413. // let passwordInput2 = document.createElement("input");
  414. // let isOpenInput = document.createElement("input");
  415. // let checkButton = document.createElement("button");
  416. // let errorDiv = document.createElement("div");
  417. // let errors = {
  418. // blankFields: "Password fields cannot be empty",
  419. // notMatch: "Password confirmation does not match",
  420. // };
  421. // let errorSet = new Set();
  422. // parent.append(formBody);
  423. // errorDiv.style.color = "red";
  424. // checkButton.innerText = "Submit";
  425. // passwordInput1.type = open ? "text" : "password";
  426. // passwordInput1.oninput = () => {
  427. // this.value1 = passwordInput1.value;
  428. // checkButton.disabled = !isValid();
  429. // if (typeof this.onPassword1Change === "function") {
  430. // this.onPassword1Change(this.value1);
  431. // }
  432. // };
  433. // passwordInput2.type = "password";
  434. // passwordInput2.style.display = !open ? "inline" : "none";
  435. // passwordInput2.oninput = () => {
  436. // this.value2 = passwordInput2.value;
  437. // checkButton.disabled = !isValid();
  438. // console.log(isValid());
  439. // if (typeof this.onPassword2Change === "function") {
  440. // this.onPassword2Change(this.value2);
  441. // }
  442. // };
  443. // isOpenInput.type = "checkbox";
  444. // isOpenInput.checked = open;
  445. // isOpenInput.onchange = () => {
  446. // this.open = isOpenInput.checked;
  447. // checkButton.disabled = !isValid();
  448. // passwordInput1.type = this.open ? "text" : "password";
  449. // passwordInput2.style.display = !this.open ? "inline" : "none";
  450. // if (typeof this.onOpenChange === "function") {
  451. // this.onOpenChange(this.open);
  452. // }
  453. // };
  454. // const setValue1 = (newValue) => {
  455. // this.value1 = newValue;
  456. // passwordInput1.value = newValue;
  457. // checkButton.disabled = !isValid();
  458. // };
  459. // const setValue2 = (newValue) => {
  460. // this.value2 = newValue;
  461. // passwordInput2.value = newValue;
  462. // checkButton.disabled = !isValid();
  463. // };
  464. // const getValue1 = () => {
  465. // return this.value1;
  466. // };
  467. // const getValue2 = () => {
  468. // return this.value2;
  469. // };
  470. // const setOpen = (value) => {
  471. // this.open = value;
  472. // isOpenInput.checked = value;
  473. // passwordInput1.type = this.open ? "text" : "password";
  474. // passwordInput2.style.display = !this.open ? "inline" : "none";
  475. // checkButton.disabled = !isValid();
  476. // };
  477. // const getOpen = () => {
  478. // return this.open;
  479. // };
  480. // const isValid = () => {
  481. // if (this.open === true) {
  482. // return false;
  483. // }
  484. // if (this.value1.trim() === "" || this.value2.trim() === "") {
  485. // errorSet.add(errors.blankFields);
  486. // showErrors();
  487. // return false;
  488. // } else {
  489. // errorSet.delete(errors.blankFields);
  490. // }
  491. // if (this.value1 !== this.value2) {
  492. // errorSet.add(errors.notMatch);
  493. // showErrors();
  494. // return false;
  495. // } else {
  496. // errorSet.delete(errors.notMatch);
  497. // }
  498. // showErrors();
  499. // return true;
  500. // };
  501. // const showErrors = () => {
  502. // let str = "";
  503. // for (let er of errorSet) {
  504. // str += er + "<br>";
  505. // }
  506. // errorDiv.innerHTML = str;
  507. // };
  508. // formBody.append(passwordInput1);
  509. // formBody.append(passwordInput2);
  510. // formBody.append(isOpenInput);
  511. // formBody.append(checkButton);
  512. // formBody.append(errorDiv);
  513. // this.open = open;
  514. // this.value1 = passwordInput1.value;
  515. // this.value2 = passwordInput2.value;
  516. // this.setOpen = setOpen;
  517. // this.getOpen = getOpen;
  518. // this.setValue1 = setValue1;
  519. // this.getValue1 = getValue1;
  520. // this.setValue2 = setValue2;
  521. // this.getValue2 = getValue2;
  522. // checkButton.disabled = !isValid();
  523. // }
  524. // let p = new Password(document.body, true);
  525. // p.onPassword1Change = (data) => console.log(data);
  526. // p.onPassword2Change = (data) => console.log(data);
  527. // p.onOpenChange = (open) => console.log(open);
  528. // p.setValue1("qwerty");
  529. // console.log(p.getValue1());
  530. // p.setValue2("qwer");
  531. // console.log(p.getValue2());
  532. // p.setOpen(false);
  533. // console.log(p.getOpen());
  534. //STARWARS
  535. // function Form(el, data, okCallback, cancelCallback) {
  536. // let formBody = document.createElement("div");
  537. // let inputBox = document.createElement("div");
  538. // let okButton = document.createElement("button");
  539. // let validatorErrors = new Set();
  540. // let requiredErrors = new Set();
  541. // let cancelButton = document.createElement("button");
  542. // let initData = { ...data };
  543. // okButton.innerHTML = "OK";
  544. // cancelButton.innerHTML = "Cancel";
  545. // el.appendChild(formBody);
  546. // formBody.append(inputBox);
  547. // let inputCreators = {
  548. // Number(key, value, oninput) {
  549. // let input = document.createElement("input");
  550. // input.type = "Number";
  551. // input.value = value;
  552. // input.oninput = () => oninput(input.value);
  553. // return input;
  554. // },
  555. // String(key, value, oninput) {
  556. // if (
  557. // value.match(
  558. // /^https?:\/\/(www\.)?[-a-zA-Z0-9@:%._\+~#=]{1,256}\.[a-zA-Z0-9()]{1,6}\b([-a-zA-Z0-9()@:%_\+.~#?&//=]*)/
  559. // )?.length
  560. // ) {
  561. // let btn = document.createElement("button");
  562. // btn.innerText = value;
  563. // btn.onclick = () => {
  564. // formContainer.innerHTML = "";
  565. // fetch(value)
  566. // .then((res) => res.json())
  567. // .then((data) => {
  568. // let form = new Form(
  569. // formContainer,
  570. // data,
  571. // () => console.log("ok"),
  572. // () => console.log("cancel")
  573. // );
  574. // form.okCallback = () => console.log("ok2");
  575. // });
  576. // };
  577. // return btn;
  578. // }
  579. // if (value.length > 20) {
  580. // let textarea = document.createElement("textarea");
  581. // textarea.value = value;
  582. // textarea.oninput = () => oninput(textarea.value);
  583. // return textarea;
  584. // } else {
  585. // let input = document.createElement("input");
  586. // input.type = "text";
  587. // if ([...value].every((el) => el === "*")) {
  588. // input.type = "password";
  589. // }
  590. // input.placeholder = key;
  591. // input.value = value;
  592. // input.oninput = () => oninput(input.value);
  593. // return input;
  594. // }
  595. // },
  596. // Boolean(key, value, oninput) {
  597. // let input = document.createElement("input");
  598. // input.type = "checkbox";
  599. // input.checked = value;
  600. // input.oninput = () => oninput(Boolean(input.checked));
  601. // return input;
  602. // },
  603. // Date(key, value, oninput) {
  604. // let input = document.createElement("input");
  605. // let timeOffset = new Date().getTimezoneOffset();
  606. // let dateInMillSec =
  607. // new Date(value.toISOString()).getTime() - new Date().getTimezoneOffset() * 1000 * 60;
  608. // input.type = "datetime-local";
  609. // input.value = new Date(dateInMillSec).toISOString().slice(0, 16);
  610. // input.oninput = () => oninput(new Date(input.value));
  611. // return input;
  612. // },
  613. // Array(key, value, oninput) {
  614. // let inputBox = document.createElement("div");
  615. // value.map((element) => {
  616. // let btn = document.createElement("button");
  617. // btn.innerText = element;
  618. // btn.onclick = () => {
  619. // formContainer.innerHTML = "";
  620. // fetch(element)
  621. // .then((res) => res.json())
  622. // .then((data) => {
  623. // let form = new Form(
  624. // formContainer,
  625. // data,
  626. // () => console.log("ok"),
  627. // () => console.log("cancel")
  628. // );
  629. // form.okCallback = () => console.log("ok2");
  630. // // form.validators.surname = (value, key, data, input) =>
  631. // // value.length > 2 && value[0].toUpperCase() == value[0] && !value.includes(" ") ? true : "Wrong surname";
  632. // });
  633. // };
  634. // inputBox.append(btn);
  635. // });
  636. // return inputBox;
  637. // },
  638. // };
  639. // let createInputs = (data) => {
  640. // inputBox.innerHTML = "";
  641. // for (let [key, value] of Object.entries(data)) {
  642. // let inputWrapper = document.createElement("div");
  643. // let inputType = value.constructor.name;
  644. // let th = document.createElement("th");
  645. // let inputLabel = document.createElement("label");
  646. // let isRequired = key.trim()[0] === "*";
  647. // let isRequiredChar = document.createElement("span");
  648. // inputLabel.style.marginLeft = "5px";
  649. // isRequiredChar.innerText = "* ";
  650. // isRequiredChar.style.color = "red";
  651. // if (isRequired) {
  652. // th.prepend(isRequiredChar);
  653. // }
  654. // th.innerHTML += isRequired ? key.slice(1, key.length) : key;
  655. // let input = inputCreators[inputType](key, value, (value) => {
  656. // let validator;
  657. // if (isRequired && value.trim().length === 0) {
  658. // input.style.border = "1px solid red";
  659. // requiredErrors.add(key);
  660. // } else {
  661. // inputLabel.style.border = "none";
  662. // requiredErrors.delete(key);
  663. // }
  664. // if (this.validators && typeof this.validators[key] === "function") {
  665. // validator = this.validators[key];
  666. // }
  667. // if (validator) {
  668. // let validResult = validator(value, key, data, input);
  669. // if (validResult !== true && validResult.trim() !== "") {
  670. // inputLabel.innerText = validResult;
  671. // inputLabel.style.border = "1px solid red";
  672. // validatorErrors.add(key);
  673. // } else {
  674. // inputLabel.innerText = "";
  675. // inputLabel.style.border = "none";
  676. // validatorErrors.delete(key);
  677. // }
  678. // }
  679. // inputWrapper.append(inputLabel);
  680. // !validatorErrors.has(key) && (this.data[key] = value);
  681. // okButton.disabled = checkErrors();
  682. // });
  683. // inputWrapper.appendChild(th);
  684. // inputWrapper.appendChild(input);
  685. // inputBox.append(inputWrapper);
  686. // }
  687. // };
  688. // createInputs(data);
  689. // okButton.disabled = checkErrors();
  690. // function checkErrors() {
  691. // if (requiredErrors.size === 0 && validatorErrors.size === 0) {
  692. // return false;
  693. // }
  694. // return true;
  695. // }
  696. // if (typeof okCallback === "function") {
  697. // formBody.appendChild(okButton);
  698. // okButton.onclick = (e) => {
  699. // this.okCallback(data);
  700. // };
  701. // }
  702. // if (typeof cancelCallback === "function") {
  703. // formBody.appendChild(cancelButton);
  704. // cancelButton.onclick = () => {
  705. // this.data = { ...initData };
  706. // console.log(initData);
  707. // createInputs(this.data);
  708. // cancelCallback();
  709. // };
  710. // }
  711. // this.okCallback = okCallback;
  712. // this.cancelCallback = cancelCallback;
  713. // this.data = data;
  714. // this.validators = {};
  715. // }
  716. // fetch("https://swapi.py4e.com/api/people/1/")
  717. // .then((res) => res.json())
  718. // .then((data) => {
  719. // let form = new Form(
  720. // formContainer,
  721. // data,
  722. // () => console.log("ok"),
  723. // () => console.log("cancel")
  724. // );
  725. // form.okCallback = () => console.log("ok2");
  726. // });
  727. //POWER OF CLOSURES
  728. // function Form(el, data, okCallback, cancelCallback) {
  729. // let formBody = document.createElement("div");
  730. // let inputBox = document.createElement("div");
  731. // let okButton = document.createElement("button");
  732. // let validatorErrors = new Set();
  733. // let requiredErrors = new Set();
  734. // let cancelButton = document.createElement("button");
  735. // let initData = { ...data };
  736. // okButton.innerHTML = "OK";
  737. // cancelButton.innerHTML = "Cancel";
  738. // el.appendChild(formBody);
  739. // formBody.append(inputBox);
  740. // let inputCreators = {
  741. // Number(key, value, oninput) {
  742. // let input = document.createElement("input");
  743. // input.type = "Number";
  744. // input.value = value;
  745. // input.oninput = () => oninput(input.value);
  746. // return input;
  747. // },
  748. // String(key, value, oninput) {
  749. // if (
  750. // value.match(
  751. // /^https?:\/\/(www\.)?[-a-zA-Z0-9@:%._\+~#=]{1,256}\.[a-zA-Z0-9()]{1,6}\b([-a-zA-Z0-9()@:%_\+.~#?&//=]*)/
  752. // )?.length
  753. // ) {
  754. // let btn = document.createElement("button");
  755. // btn.innerText = value;
  756. // btn.onclick = () => {
  757. // fetch(value)
  758. // .then((res) => res.json())
  759. // .then((data) => {
  760. // let form = new Form(
  761. // formContainer,
  762. // data,
  763. // () => console.log("ok"),
  764. // () => console.log("cancel")
  765. // );
  766. // form.okCallback = () => console.log("ok2");
  767. // });
  768. // };
  769. // return btn;
  770. // }
  771. // if (value.length > 20) {
  772. // let textarea = document.createElement("textarea");
  773. // textarea.value = value;
  774. // textarea.oninput = () => oninput(textarea.value);
  775. // return textarea;
  776. // } else {
  777. // let input = document.createElement("input");
  778. // input.type = "text";
  779. // if ([...value].every((el) => el === "*")) {
  780. // input.type = "password";
  781. // }
  782. // input.placeholder = key;
  783. // input.value = value;
  784. // input.oninput = () => oninput(input.value);
  785. // return input;
  786. // }
  787. // },
  788. // Boolean(key, value, oninput) {
  789. // let input = document.createElement("input");
  790. // input.type = "checkbox";
  791. // input.checked = value;
  792. // input.oninput = () => oninput(Boolean(input.checked));
  793. // return input;
  794. // },
  795. // Date(key, value, oninput) {
  796. // let input = document.createElement("input");
  797. // let timeOffset = new Date().getTimezoneOffset();
  798. // let dateInMillSec =
  799. // new Date(value.toISOString()).getTime() - new Date().getTimezoneOffset() * 1000 * 60;
  800. // input.type = "datetime-local";
  801. // input.value = new Date(dateInMillSec).toISOString().slice(0, 16);
  802. // input.oninput = () => oninput(new Date(input.value));
  803. // return input;
  804. // },
  805. // Array(key, value, oninput) {
  806. // let inputBox = document.createElement("div");
  807. // value.map((element) => {
  808. // let btn = document.createElement("button");
  809. // btn.innerText = element;
  810. // btn.onclick = () => {
  811. // fetch(element)
  812. // .then((res) => res.json())
  813. // .then((data) => {
  814. // let form = new Form(
  815. // formContainer,
  816. // data,
  817. // () => console.log("ok"),
  818. // () => console.log("cancel")
  819. // );
  820. // form.okCallback = () => console.log("ok2");
  821. // // form.validators.surname = (value, key, data, input) =>
  822. // // value.length > 2 && value[0].toUpperCase() == value[0] && !value.includes(" ") ? true : "Wrong surname";
  823. // });
  824. // };
  825. // inputBox.append(btn);
  826. // });
  827. // return inputBox;
  828. // },
  829. // };
  830. // let createInputs = (data) => {
  831. // inputBox.innerHTML = "";
  832. // for (let [key, value] of Object.entries(data)) {
  833. // let inputWrapper = document.createElement("div");
  834. // let inputType = value.constructor.name;
  835. // let th = document.createElement("th");
  836. // let inputLabel = document.createElement("label");
  837. // let isRequired = key.trim()[0] === "*";
  838. // let isRequiredChar = document.createElement("span");
  839. // inputLabel.style.marginLeft = "5px";
  840. // isRequiredChar.innerText = "* ";
  841. // isRequiredChar.style.color = "red";
  842. // if (isRequired) {
  843. // th.prepend(isRequiredChar);
  844. // }
  845. // th.innerHTML += isRequired ? key.slice(1, key.length) : key;
  846. // let input = inputCreators[inputType](key, value, (value) => {
  847. // let validator;
  848. // if (isRequired && value.trim().length === 0) {
  849. // input.style.border = "1px solid red";
  850. // requiredErrors.add(key);
  851. // } else {
  852. // inputLabel.style.border = "none";
  853. // requiredErrors.delete(key);
  854. // }
  855. // if (this.validators && typeof this.validators[key] === "function") {
  856. // validator = this.validators[key];
  857. // }
  858. // if (validator) {
  859. // let validResult = validator(value, key, data, input);
  860. // if (validResult !== true && validResult.trim() !== "") {
  861. // inputLabel.innerText = validResult;
  862. // inputLabel.style.border = "1px solid red";
  863. // validatorErrors.add(key);
  864. // } else {
  865. // inputLabel.innerText = "";
  866. // inputLabel.style.border = "none";
  867. // validatorErrors.delete(key);
  868. // }
  869. // }
  870. // inputWrapper.append(inputLabel);
  871. // !validatorErrors.has(key) && (this.data[key] = value);
  872. // okButton.disabled = checkErrors();
  873. // });
  874. // inputWrapper.appendChild(th);
  875. // inputWrapper.appendChild(input);
  876. // inputBox.append(inputWrapper);
  877. // }
  878. // };
  879. // createInputs(data);
  880. // okButton.disabled = checkErrors();
  881. // function checkErrors() {
  882. // if (requiredErrors.size === 0 && validatorErrors.size === 0) {
  883. // return false;
  884. // }
  885. // return true;
  886. // }
  887. // if (typeof okCallback === "function") {
  888. // formBody.appendChild(okButton);
  889. // okButton.onclick = (e) => {
  890. // this.okCallback(data);
  891. // };
  892. // }
  893. // if (typeof cancelCallback === "function") {
  894. // formBody.appendChild(cancelButton);
  895. // cancelButton.onclick = () => {
  896. // this.data = { ...initData };
  897. // console.log(initData);
  898. // createInputs(this.data);
  899. // cancelCallback();
  900. // };
  901. // }
  902. // this.okCallback = okCallback;
  903. // this.cancelCallback = cancelCallback;
  904. // this.data = data;
  905. // this.validators = {};
  906. // }
  907. // fetch("https://swapi.py4e.com/api/people/1/")
  908. // .then((res) => res.json())
  909. // .then((data) => {
  910. // let form = new Form(
  911. // formContainer,
  912. // data,
  913. // () => console.log("ok"),
  914. // () => console.log("cancel")
  915. // );
  916. // form.okCallback = () => console.log("ok2");
  917. // });
  918. //STARWARS LOCALSTORAGE + CACHED PROMISE
  919. // function Form(el, data, okCallback, cancelCallback) {
  920. // let formBody = document.createElement("div");
  921. // let inputBox = document.createElement("div");
  922. // let okButton = document.createElement("button");
  923. // let validatorErrors = new Set();
  924. // let requiredErrors = new Set();
  925. // let cancelButton = document.createElement("button");
  926. // let initData = { ...data };
  927. // okButton.innerHTML = "OK";
  928. // cancelButton.innerHTML = "Cancel";
  929. // el.appendChild(formBody);
  930. // formBody.append(inputBox);
  931. // let inputCreators = {
  932. // Number(key, value, oninput) {
  933. // let input = document.createElement("input");
  934. // input.type = "Number";
  935. // input.value = value;
  936. // input.oninput = () => oninput(input.value);
  937. // return input;
  938. // },
  939. // String(key, value, oninput) {
  940. // if (
  941. // value.match(
  942. // /^https?:\/\/(www\.)?[-a-zA-Z0-9@:%._\+~#=]{1,256}\.[a-zA-Z0-9()]{1,6}\b([-a-zA-Z0-9()@:%_\+.~#?&//=]*)/
  943. // )?.length
  944. // ) {
  945. // let btn = document.createElement("button");
  946. // btn.innerText = value;
  947. // btn.onclick = () => {
  948. // fetchWithStorage(value);
  949. // };
  950. // return btn;
  951. // }
  952. // if (value.length > 20) {
  953. // let textarea = document.createElement("textarea");
  954. // textarea.value = value;
  955. // textarea.oninput = () => oninput(textarea.value);
  956. // return textarea;
  957. // } else {
  958. // let input = document.createElement("input");
  959. // input.type = "text";
  960. // if ([...value].every((el) => el === "*")) {
  961. // input.type = "password";
  962. // }
  963. // input.placeholder = key;
  964. // input.value = value;
  965. // input.oninput = () => oninput(input.value);
  966. // return input;
  967. // }
  968. // },
  969. // Boolean(key, value, oninput) {
  970. // let input = document.createElement("input");
  971. // input.type = "checkbox";
  972. // input.checked = value;
  973. // input.oninput = () => oninput(Boolean(input.checked));
  974. // return input;
  975. // },
  976. // Date(key, value, oninput) {
  977. // let input = document.createElement("input");
  978. // let timeOffset = new Date().getTimezoneOffset();
  979. // let dateInMillSec =
  980. // new Date(value.toISOString()).getTime() - new Date().getTimezoneOffset() * 1000 * 60;
  981. // input.type = "datetime-local";
  982. // input.value = new Date(dateInMillSec).toISOString().slice(0, 16);
  983. // input.oninput = () => oninput(new Date(input.value));
  984. // return input;
  985. // },
  986. // Array(key, value, oninput) {
  987. // let inputBox = document.createElement("div");
  988. // value.map((element) => {
  989. // let btn = document.createElement("button");
  990. // btn.innerText = element;
  991. // btn.onclick = () => fetchWithStorage(element);
  992. // inputBox.append(btn);
  993. // });
  994. // return inputBox;
  995. // },
  996. // };
  997. // let createInputs = (data) => {
  998. // inputBox.innerHTML = "";
  999. // for (let [key, value] of Object.entries(data)) {
  1000. // let inputWrapper = document.createElement("div");
  1001. // let inputType = value.constructor.name;
  1002. // let th = document.createElement("th");
  1003. // let inputLabel = document.createElement("label");
  1004. // let isRequired = key.trim()[0] === "*";
  1005. // let isRequiredChar = document.createElement("span");
  1006. // inputLabel.style.marginLeft = "5px";
  1007. // isRequiredChar.innerText = "* ";
  1008. // isRequiredChar.style.color = "red";
  1009. // if (isRequired) {
  1010. // th.prepend(isRequiredChar);
  1011. // }
  1012. // th.innerHTML += isRequired ? key.slice(1, key.length) : key;
  1013. // let input = inputCreators[inputType](key, value, (value) => {
  1014. // let validator;
  1015. // if (isRequired && value.trim().length === 0) {
  1016. // input.style.border = "1px solid red";
  1017. // requiredErrors.add(key);
  1018. // } else {
  1019. // inputLabel.style.border = "none";
  1020. // requiredErrors.delete(key);
  1021. // }
  1022. // if (this.validators && typeof this.validators[key] === "function") {
  1023. // validator = this.validators[key];
  1024. // }
  1025. // if (validator) {
  1026. // let validResult = validator(value, key, data, input);
  1027. // if (validResult !== true && validResult.trim() !== "") {
  1028. // inputLabel.innerText = validResult;
  1029. // inputLabel.style.border = "1px solid red";
  1030. // validatorErrors.add(key);
  1031. // } else {
  1032. // inputLabel.innerText = "";
  1033. // inputLabel.style.border = "none";
  1034. // validatorErrors.delete(key);
  1035. // }
  1036. // }
  1037. // inputWrapper.append(inputLabel);
  1038. // !validatorErrors.has(key) && (this.data[key] = value);
  1039. // okButton.disabled = checkErrors();
  1040. // });
  1041. // inputWrapper.appendChild(th);
  1042. // inputWrapper.appendChild(input);
  1043. // inputBox.append(inputWrapper);
  1044. // }
  1045. // };
  1046. // createInputs(data);
  1047. // okButton.disabled = checkErrors();
  1048. // function checkErrors() {
  1049. // if (requiredErrors.size === 0 && validatorErrors.size === 0) {
  1050. // return false;
  1051. // }
  1052. // return true;
  1053. // }
  1054. // if (typeof okCallback === "function") {
  1055. // formBody.appendChild(okButton);
  1056. // okButton.onclick = (e) => {
  1057. // this.okCallback(data);
  1058. // };
  1059. // }
  1060. // if (typeof cancelCallback === "function") {
  1061. // formBody.appendChild(cancelButton);
  1062. // cancelButton.onclick = () => {
  1063. // this.data = { ...initData };
  1064. // console.log(initData);
  1065. // createInputs(this.data);
  1066. // cancelCallback();
  1067. // };
  1068. // }
  1069. // this.okCallback = okCallback;
  1070. // this.cancelCallback = cancelCallback;
  1071. // this.data = data;
  1072. // this.validators = {};
  1073. // }
  1074. // fetchWithStorage("https://swapi.py4e.com/api/people/1/");
  1075. // function fetchWithStorage(url) {
  1076. // return new Promise((resolve) => {
  1077. // localStorage.getItem(url)
  1078. // ? resolve(JSON.parse(localStorage.getItem(url)))
  1079. // : fetch(url)
  1080. // .then((res) => res.json())
  1081. // .then((data) => resolve(data));
  1082. // }).then((data) => {
  1083. // formContainer.innerHTML = "";
  1084. // let form = new Form(
  1085. // formContainer,
  1086. // data,
  1087. // () => localStorage.setItem(url, JSON.stringify(data)),
  1088. // () => console.log("cancel")
  1089. // );
  1090. // });
  1091. // }
  1092. </script>
  1093. </body>
  1094. </html>