script.js 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118
  1. function Password(parent, open){
  2. this.loginBox = document.createElement("input");
  3. this.loginBox.setAttribute("type", "text");
  4. parent.appendChild(this.loginBox)
  5. this.loginBox.oninput = () => {
  6. this.sendOnChange()
  7. this.onChange(this.getValue(this.loginBox));
  8. }
  9. this.passwordBox = document.createElement("span");
  10. parent.appendChild(this.passwordBox)
  11. this.textBox = document.createElement("input");
  12. this.textBox.setAttribute("type", "password");
  13. this.passwordBox.appendChild(this.textBox);
  14. this.textBox.oninput = () => {
  15. this.onChange(this.getValue(this.textBox));
  16. this.sendOnChange();
  17. }
  18. this.checkPassword = document.createElement("input");
  19. this.checkPassword.setAttribute("type", "password")
  20. this.passwordBox.appendChild(this.checkPassword)
  21. this.checkPassword.oninput = () => {
  22. this.sendOnChange();
  23. }
  24. this.checkBox = document.createElement("input");
  25. this.checkBox.setAttribute("type", "checkbox");
  26. parent.appendChild(this.checkBox);
  27. this.checkBox.onchange = () => {
  28. this.isChecked(this.checkBox, this.textBox)
  29. this.onOpenChange(this.getOpen())
  30. };
  31. this.sendBottom = document.createElement("button");
  32. this.sendBottom.setAttribute("disabled", true);
  33. this.sendBottom.innerText = "send";
  34. this.sendOnChange = function() {
  35. if(this.textBox.value != "" && this.loginBox.value != ""
  36. && this.textBox.value === this.checkPassword.value) {
  37. return this.sendBottom.removeAttribute("disabled");
  38. } return this.sendBottom.setAttribute("disabled", true);
  39. }
  40. parent.appendChild(this.sendBottom)
  41. this.isChecked = function() {
  42. if(open === false){
  43. this.textBox.setAttribute("type", "password")
  44. this.checkPassword = document.createElement("input");
  45. this.checkPassword.setAttribute("type", "password")
  46. this.passwordBox.appendChild(this.checkPassword)
  47. this.checkPassword.oninput = () => {
  48. this.sendOnChange();
  49. }
  50. return open = true;
  51. } else {
  52. this.textBox.setAttribute("type", "text")
  53. this.checkPassword.remove()
  54. this.sendBottom.setAttribute("disabled", true);
  55. return open = false;
  56. }
  57. }
  58. this.getValue = function(arg = this.textBox) {
  59. return arg.value
  60. }
  61. this.setValue = function(inner, box = this.textBox) {
  62. box.value = inner;
  63. }
  64. this.getOpen = function() {
  65. let str;
  66. open == true ? str = "closed" : str = "opened";
  67. return str;
  68. }
  69. this.onChange = function(arg) {
  70. let data = this.getValue(arg);
  71. return data;
  72. }
  73. this.setOpen = function(arg) {
  74. if(!arg == true){
  75. this.checkBox.checked = "checked"
  76. } else {
  77. this.checkBox.checked = ""
  78. }
  79. this.isChecked()
  80. }
  81. }
  82. let p = new Password(document.body, true)
  83. p.onChange = data => console.log(data)
  84. p.onOpenChange = open => console.log(open)
  85. p.setValue('qwerty')
  86. console.log(p.getValue())
  87. p.setOpen(false)
  88. console.log(p.getOpen())
  89. p.setValue('login', p.loginBox)