script.js 3.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192
  1. function Password(parent, open){
  2. this.loginBox = document.createElement("input");
  3. this.loginBox.setAttribute("type", "text");
  4. parent.appendChild(this.loginBox)
  5. this.textBox = document.createElement("input");
  6. this.textBox.setAttribute("type", "password");
  7. parent.appendChild(this.textBox);
  8. this.checkBox = document.createElement("input");
  9. this.checkBox.setAttribute("type", "checkbox");
  10. parent.appendChild(this.checkBox);
  11. this.sendBottom = document.createElement("button");
  12. this.sendBottom.setAttribute("disabled", true);
  13. this.sendBottom.innerText = "send";
  14. this.sendOnChange = function() {
  15. if(this.textBox.value != "" && this.loginBox.value != "") {
  16. return this.sendBottom.removeAttribute("disabled");
  17. } return this.sendBottom.setAttribute("disabled", true);
  18. }
  19. parent.appendChild(this.sendBottom)
  20. this.isChecked = function() {
  21. if(open === false){
  22. this.textBox.setAttribute("type", "password")
  23. open = true;
  24. } else {
  25. this.textBox.setAttribute("type", "text")
  26. open = false;
  27. }
  28. }
  29. this.getValue = function(arg = this.textBox) {
  30. return arg.value
  31. }
  32. this.setValue = function(inner) {
  33. this.textBox.value = inner;
  34. }
  35. this.getOpen = function() {
  36. let str;
  37. open == true ? str = "closed" : str = "opened";
  38. return str;
  39. }
  40. this.onChange = function(arg) {
  41. let data = this.getValue(arg);
  42. return data;
  43. }
  44. this.loginBox.oninput = () => this.sendOnChange()
  45. this.checkBox.onchange = () => {
  46. this.isChecked(this.checkBox, this.textBox)
  47. this.onOpenChange(this.getOpen())
  48. };
  49. this.textBox.oninput = () => {
  50. this.onChange(this.getValue(this.textBox));
  51. this.sendOnChange();
  52. }
  53. this.setOpen = function(arg) {
  54. if(!arg == true){
  55. this.checkBox.checked = "checked"
  56. } else {
  57. this.checkBox.checked = ""
  58. }
  59. this.isChecked()
  60. }
  61. }
  62. let p = new Password(document.body, true)
  63. p.onChange = data => console.log(data)
  64. p.onOpenChange = open => console.log(open)
  65. p.setValue('qwerty')
  66. console.log(p.getValue())
  67. p.setOpen(false)
  68. console.log(p.getOpen())
  69. // Напишите функцию конструктор Password, которая будет в родительском
  70. //элементе создавать поле ввода для пароля и кнопку/иконку/чекбокс,
  71. //который будет переключать режим просмотра пароля в поле ввода.
  72. // Параметры:
  73. // parent - родительский элемент
  74. // open - стартовое состояние
  75. // Методы:
  76. // setValue/getValue - задают/читают значения
  77. // setOpen/getOpen - задают/читают открытость текста в поле ввода
  78. // Колбэки (функции обратного вызова, данные изнутри объекта):
  79. // onChange - запускается по событию oninput в поле ввода, передает текст наружу
  80. // onOpenChange - запускается по изменению состояния открытости пароля