123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843 |
- // Переделайте задание createPerson на функцию конструктор Person.
- // Для этого методы и свойства заносите не в создаваемый объект, а в this внутри конструктора.
- {
- function Person(name, surName) {
- this.name = `${name}`
- this.surName = `${surName}`
- this.getFullName = function getFullName() {
- return `${this.name} ${this.fatherName || ''} ${this.surName}`
- }
- }
- const a = new Person("Вася", "Пупкин")
- const b = new Person("Анна", "Иванова")
- const c = new Person("Елизавета", "Петрова")
- console.log(a.getFullName()) //Вася Пупкин
- a.fatherName = 'Иванович' //Вася Иванович Пупкин
- console.log(a.getFullName())
- console.log(b.getFullName())
- console.log(c.name)//Анна Иванова
- }
- // Person Prototype
- // Переделайте предыдущее задание, вынеся методы в прототип.Для этого вместо присвоения в this занесите их в объект Person.prototype.После этой переделки все должно работать по старому:
- {
- function Person(name, surName) {
- this.name = name,
- this.surName = surName
- }
- Person.prototype.name = function () {
- return this.name
- }
- Person.prototype.surName = function () {
- return this.surName
- }
- Person.prototype.getFullName = function () {
- return `${this.name} ${this.fatherName || ''} ${this.surName}`
- }
- const a = new Person("Вася", "Пупкин")
- const b = new Person("Анна", "Иванова")
- const c = new Person("Елизавета", "Петрова")
- console.log(a.getFullName()) //Вася Пупкин
- a.fatherName = 'Иванович' //Вася Иванович Пупкин
- console.log(a.getFullName())
- console.log(b.getFullName())
- console.log(c.name)//Анна Иванова
- }
- // Store
- // Переделайте функцию createStore(та, которая хранилище Redux) на конструктор Store.Прототип не используйте; оставьте переменные state, cbs и reducer замкнутыми.Соответственно методы subscribe, dispatch и getState должны быть объявлены внутри функции - конструктора и не могут быть в прототипе.Проверьте переделанный конструктор на вашем ДЗ по ларьку;
- {
- function Store(reducer) {
- let state = reducer(undefined, {})
- let cbs = []
- let getState, dispatch, subscribe
- this.getState = () => state
- this.subscribe = cb => (cbs.push(cb),
- () => cbs = cbs.filter(c => c !== cb))
- this.dispatch = action => {
- const newState = reducer(state, action)
- if (newState !== state) {
- state = newState
- for (let cb of cbs) cb()
- }
- }
- }
- // ниже код ларька для проверки
- {
- // create Reduser
- function reducer(state, { type, ШО, СКОКА, БАБЛО, ШО_ДОБАВИТЬ, СКОКА_ДОБАВИТЬ, ЦЕНА_ДОБАВИТЬ }) {
- if (!state) {
- return {
- касса: 200,
- чай: 0,
- пиво: {
- amount: 110,
- price: 20
- },
- чипсы: {
- amount: 120,
- price: 30
- },
- сиги: {
- amount: 130,
- price: 50
- }
- }
- }
- if (type === 'КУПИТЬ' && СКОКА <= state[ШО].amount && БАБЛО === (СКОКА * state[ШО].price)) {
- return {
- ...state,
- [ШО]: {
- amount: state[ШО].amount - СКОКА,
- price: state[ШО].price
- },
- касса: state.касса + БАБЛО
- }
- }
- if (type === 'КУПИТЬ' && СКОКА <= state[ШО].amount && БАБЛО > (СКОКА * state[ШО].price)) {
- return {
- ...state,
- [ШО]: {
- amount: state[ШО].amount - СКОКА,
- price: state[ШО].price
- },
- касса: state.касса + (СКОКА * state[ШО].price),
- чай: state.чай + (БАБЛО - (СКОКА * state[ШО].price))
- }
- }
- if (type === 'ДОБАВИТЬ' && !(ШО_ДОБАВИТЬ in state) && state.касса >= (СКОКА_ДОБАВИТЬ * ЦЕНА_ДОБАВИТЬ)) {
- return {
- ...state,
- [ШО_ДОБАВИТЬ]: {
- amount: СКОКА_ДОБАВИТЬ,
- price: ЦЕНА_ДОБАВИТЬ
- },
- касса: state.касса - (СКОКА_ДОБАВИТЬ * ЦЕНА_ДОБАВИТЬ)
- }
- }
- if (type === 'ДОБАВИТЬ' && ШО_ДОБАВИТЬ in state && state.касса >= (СКОКА_ДОБАВИТЬ * ЦЕНА_ДОБАВИТЬ)) {
- return {
- ...state,
- [ШО_ДОБАВИТЬ]: {
- amount: state[ШО_ДОБАВИТЬ].amount + СКОКА_ДОБАВИТЬ,
- price: ЦЕНА_ДОБАВИТЬ
- },
- касса: state.касса - (СКОКА_ДОБАВИТЬ * ЦЕНА_ДОБАВИТЬ)
- }
- }
- return state
- }
- const store = new Store(reducer)
- // create divStore
- const divStore = document.createElement('div')
- divStore.style.cssText = `
- min-width: 700px;
- width: 50%;
- border: 1px solid #A9A9A9;
- border-radius: 8px;
- box-shadow: rgb(0 0 0 / 50%) 5px 5px 5px 0px;
- padding: 20px;`
- document.body.append(divStore)
- // create divStore title
- const divStoreitle = document.createElement('h1')
- divStoreitle.innerText = 'ЛАРЕК'
- divStoreitle.style.cssText = `
- text-align: center;`
- divStore.append(divStoreitle)
- // create Table of Store
- let table, col, row
- const createTable = () => {
- table = document.createElement('table')
- divStore.append(table)
- // create names of parametrs
- const params = []
- for (const child of Object.values(store.getState())) {
- for (const key of Object.keys(child)) {
- if (!params.includes(key)) {
- params.push(key);
- }
- }
- }
- // create Header of table
- row = document.createElement('tr')
- table.append(row)
- // create first cell in Header
- col = document.createElement('td')
- row.append(col)
- // create header names
- for (const key of params) {
- col = document.createElement('td')
- col.innerText = `${key}`
- col.style.cssText = `
- font-size: 1.5em;
- padding: 5px 10px;
- margin: 0 10px;
- text-align: center;
- background-color: #D9D9D9;`
- row.append(col)
- }
- // create table body
- for (const [key, values] of Object.entries(store.getState())) {
- if (key === 'касса') {
- row = document.createElement('tr')
- table.append(row)
- col = document.createElement('td')
- col.innerText = `${key.toUpperCase()}`
- col.style.cssText = `
- min-width: 150px;
- font-size: 2em;
- padding: 5px 10px;
- text-align: left`
- row.append(col)
- col = document.createElement('td')
- col.innerText = `${values}`
- col.style.cssText = `
- font-size: 2em;
- text-align: center;`
- row.append(col)
- } else if (key === 'чай') {
- row = document.createElement('tr')
- table.append(row)
- col = document.createElement('td')
- col.innerText = `На ${key.toUpperCase()} редюсеру-трудяге`
- col.style.cssText = `
- min-width: 150px;
- font-size: 1.5em;
- padding: 5px 10px;
- text-align: left`
- row.append(col)
- col = document.createElement('td')
- col.innerText = `${values}`
- col.style.cssText = `
- font-size: 1.5em;
- text-align: center;`
- row.append(col)
- } else {
- // рисуем строку заголовков
- row = document.createElement('tr')
- table.append(row)
- col = document.createElement('td')
- col.innerText = `${key.toUpperCase()}`
- col.style.cssText = `
- min-width: 150px;
- font-size: 2em;
- padding: 5px 10px;
- text-align: left`
- row.append(col)
- // рисуем строки значений для товаров
- for (const name of params) {
- col = document.createElement('td')
- col.innerText = `${(Object.keys(values)).includes(name) ? values[name] : ''}`
- col.style.cssText = `
- font-size: 1.5em;
- text-align: center`
- row.append(col)
- }
- }
- }
- return table
- }
- createTable()
- // start test in console.log
- store.subscribe(() => console.log(store.getState()))
- // create divWindow
- const divWindow = document.createElement('div')
- divWindow.style.cssText = `
- min-width: 700px;
- width: 50%;
- padding: 10px;
- margin-top: 30px;`
- document.body.append(divWindow)
- // create divWindow title
- const divWindowitle = document.createElement('h2')
- divWindowitle.innerText = 'Покупка в ларьке'
- divWindowitle.style.cssText = `
- text-align: center;`
- divWindow.append(divWindowitle)
- // create inputAmount
- const inputAmount = document.createElement('input')
- inputAmount.type = 'number'
- inputAmount.min = 0
- inputAmount.placeholder = 'Количество товара'
- divWindow.append(inputAmount)
- // ceate inputMoney
- const inputMoney = document.createElement('input')
- inputMoney.type = 'number'
- inputMoney.min = 0
- inputMoney.placeholder = 'Сумма, которую отдаете'
- divWindow.append(inputMoney)
- let selectProduct
- createListProduct = () => {
- // create selectProduct
- selectProduct = document.createElement('select')
- divWindow.insertBefore(selectProduct, inputMoney)
- for (let key of Object.keys(store.getState())) {
- if (key !== 'касса' && key !== 'чай') {
- let optionInput = document.createElement('option')
- optionInput.innerText = `${key}`
- selectProduct.append(optionInput)
- }
- }
- return selectProduct
- }
- createListProduct()
- // create buyButton
- const buyButton = document.createElement('button')
- buyButton.innerText = 'Купить'
- divWindow.append(buyButton)
- // create add div
- const divAdd = document.createElement('div')
- divAdd.style.cssText = `
- min-width: 700px;
- width: 50%;
- margin-top: 40px;`
- document.body.append(divAdd)
- // create add div title
- const divAddTitle = document.createElement('h2')
- divAddTitle.innerText = 'Пополнение ларька'
- divAddTitle.style.cssText = `
- text-align: center;`
- divAdd.append(divAddTitle)
- // create inputAddProduct
- const inputAddProduct = document.createElement('input')
- inputAddProduct.type = 'text'
- inputAddProduct.placeholder = 'Введите имя продукта'
- divAdd.append(inputAddProduct)
- // create inputAddAmount
- const inputAddAmount = document.createElement('input')
- inputAddAmount.type = 'number'
- inputAddAmount.min = 0
- inputAddAmount.placeholder = 'Введите количество продукта'
- divAdd.append(inputAddAmount)
- // create inputAddPrice
- const inputAddPrice = document.createElement('input')
- inputAddPrice.type = 'number'
- inputAddPrice.min = 0
- inputAddPrice.placeholder = 'Введите цену продукта'
- divAdd.append(inputAddPrice)
- // create addProductButton
- const addProductButton = document.createElement('button')
- addProductButton.innerText = 'Добавить продукт'
- divAdd.append(addProductButton)
- // mistake alert
- addProductButton.onclick = () => {
- if ((+inputAddAmount.value * +inputAddPrice.value) > store.getState().касса) {
- alert('В кассе нет столько денег! Давай торговаться?')
- }
- }
- // start addProductButton
- addProductButton.addEventListener('click', () => store.dispatch({ type: 'ДОБАВИТЬ', ШО_ДОБАВИТЬ: inputAddProduct.value, СКОКА_ДОБАВИТЬ: +inputAddAmount.value, ЦЕНА_ДОБАВИТЬ: +inputAddPrice.value }))
- // mistake alert
- buyButton.onclick = () => {
- if (+inputAmount.value > store.getState()[selectProduct.value].amount) {
- alert(`Количество товара, который вы хотите купить, больше, чем наличие на складе! На складе ${store.getState()[selectProduct.value].amount} единиц ${selectProduct.value}`)
- } else if (+inputMoney.value < (+inputAmount.value * store.getState()[selectProduct.value].price)) {
- alert(`Вы даете ${inputMoney.value}. А нужно ${+inputAmount.value * store.getState()[selectProduct.value].price}. Добавьте ${(+inputAmount.value * store.getState()[selectProduct.value].price) - +inputMoney.value}`)
- }
- }
- // start buyButton
- buyButton.addEventListener('click', () => store.dispatch({ type: 'КУПИТЬ', ШО: selectProduct.value, СКОКА: +inputAmount.value, БАБЛО: +inputMoney.value }))
- // Relaod table with new datas
- store.subscribe(() => {
- table.remove(),
- selectProduct.remove(),
- createTable(),
- createListProduct()
- })
- }
- }
- // Password
- // Напишите функцию конструктор Password, которая будет в родительском элементе создавать поле ввода для пароля и кнопку / иконку / чекбокс, который будет переключать режим просмотра пароля в поле ввода. (видимый пароль или нет, input type = 'text' или же input type = 'password')
- // Параметры:
- // parent - родительский элемент
- // open - стартовое состояние
- // Методы:
- // setValue / getValue - задают / читают значения
- // setOpen / getOpen - задают / читают открытость текста в поле ввода
- // Колбэки(функции обратного вызова, который возможно, будут заданы снаружи конструктора):
- // onChange - запускается по событию oninput в поле ввода, передает текст в колбэк
- // onOpenChange - запускается по изменению состояния открытости пароля
- {
- function Password(parent, open) {
- // create filed for password
- const inputPassword = document.createElement('input')
- inputPassword.type = 'password'
- inputPassword.placeholder = 'Insert password'
- parent.append(inputPassword)
- // create checkbox
- const inputCheckbox = document.createElement('input')
- inputCheckbox.type = 'checkbox'
- inputCheckbox.checked = false
- parent.append(inputCheckbox)
- // create getters
- this.getValue = () => inputPassword.value
- this.getOpen = () => inputCheckbox.checked
- // create setters
- this.setValue = (value) => inputPassword.value = value
- this.setOpen = (open) => {
- if (open === true) {
- inputPassword.type = 'text'
- inputCheckbox.checked = true
- }
- if (open === false) {
- inputPassword.type = 'password'
- inputCheckbox.checked = false
- }
- return inputPassword.type, inputCheckbox.checked
- }
- // starting onChange
- inputPassword.addEventListener('input', () => {
- this.onChange(inputPassword.value)
- })
- // starting onOpenChange + change inputPasswor hide/see
- inputCheckbox.addEventListener('change', () => {
- this.setOpen(inputCheckbox.checked),
- this.onOpenChange(inputCheckbox.checked)
- })
- }
- let p = new Password(document.body, true)
- p.onChange = data => console.log('onChange: ', data)
- p.onOpenChange = open => console.log('onOpenChange: ', open)
- p.setValue('qwerty')
- console.log(p.getValue())
- p.setOpen(false)
- console.log(p.getOpen())
- }
- // LoginForm
- // С помощью предыдущего кода Password сделайте форму логина, кнопка в которой будет активна только если и login и пароль не пусты.
- // WARNING! "С помощью предыдущего кода" значит что в коде формы логина вы используете объект, сконструированный конструктором Password - const password = new Password(........)
- {
- function Password(parent, open) {
- // create password fild
- const inputPassword = document.createElement('input')
- inputPassword.type = 'password'
- inputPassword.placeholder = 'Insert password'
- parent.append(inputPassword)
- // create checkbox
- const inputCheckbox = document.createElement('input')
- inputCheckbox.type = 'checkbox'
- inputCheckbox.checked = false
- parent.append(inputCheckbox)
- // create getters
- this.getValue = () => inputPassword.value
- this.getOpen = () => inputCheckbox.checked
- // create setters
- this.setValue = (value) => inputPassword.value = value
- this.setOpen = (open) => {
- if (open === true) {
- inputPassword.type = 'text'
- inputCheckbox.checked = true
- }
- if (open === false) {
- inputPassword.type = 'password'
- inputCheckbox.checked = false
- }
- return inputPassword.type, inputCheckbox.checked
- }
- // starting onChange
- inputPassword.addEventListener('input', () => {
- this.onChange(inputPassword.value)
- })
- // starting onOpenChange + change inputPasswor hide/see
- inputCheckbox.addEventListener('change', () => {
- this.setOpen(inputCheckbox.checked),
- this.onOpenChange(inputCheckbox.checked)
- })
- }
- function Login(parent) {
- // create login fild
- const inputLogin = document.createElement('input')
- inputLogin.type = 'text'
- inputLogin.placeholder = 'Insert login'
- parent.append(inputLogin)
- // create getters
- this.getValue = () => inputLogin.value
- // create setters
- this.setValue = (value) => inputLogin.value = value
- // starting onChange
- inputLogin.addEventListener('input', () => {
- this.onChange(inputLogin.value)
- })
- }
- // create form with password and login
- const form = document.createElement('form')
- document.body.append(form)
- const loginLabel = document.createElement('label')
- loginLabel.innerText = 'Login:'
- form.append(loginLabel)
- let breakSymbol = document.createElement('br')
- form.append(breakSymbol)
- const login = new Login(form)
- breakSymbol = document.createElement('br')
- form.append(breakSymbol)
- const passwordLabel = document.createElement('label')
- passwordLabel.innerText = 'Password:'
- form.append(passwordLabel)
- breakSymbol = document.createElement('br')
- form.append(breakSymbol)
- const password = new Password(form, true)
- breakSymbol = document.createElement('br')
- form.append(breakSymbol)
- const confirmBtn = document.createElement('button')
- confirmBtn.innerText = 'Confirm'
- confirmBtn.type = 'submit'
- confirmBtn.style.marginTop = '10px'
- confirmBtn.disabled = true
- form.append(confirmBtn)
- // change confirmBtn.disabled
- function checkButton() {
- if (login.getValue() !== '' && password.getValue() !== '') {
- confirmBtn.disabled = false
- } else {
- confirmBtn.disabled = true
- }
- return confirmBtn.disabled
- }
- checkButton()
- // listening password and login
- login.onChange = password.onChange = checkButton
- }
- // LoginForm Constructor
- // оформите предыдущую задачу как функцию - конструктор.Продумайте и предусмотрите геттеры, сеттеры и колбэки.
- {
- function LoginForm(parent) {
- function Password(parent, open) {
- // create password fild
- const inputPassword = document.createElement('input')
- inputPassword.type = 'password'
- inputPassword.placeholder = 'Insert password'
- parent.append(inputPassword)
- // create checkbox
- const inputCheckbox = document.createElement('input')
- inputCheckbox.type = 'checkbox'
- inputCheckbox.checked = false
- parent.append(inputCheckbox)
- // create getters
- this.getValue = () => inputPassword.value
- this.getOpen = () => inputCheckbox.checked
- // create setters
- this.setValue = (value) => inputPassword.value = value
- this.setOpen = (open) => {
- if (open === true) {
- inputPassword.type = 'text'
- inputCheckbox.checked = true
- }
- if (open === false) {
- inputPassword.type = 'password'
- inputCheckbox.checked = false
- }
- return inputPassword.type, inputCheckbox.checked
- }
- // starting onChange
- inputPassword.addEventListener('input', () => {
- this.onChange(inputPassword.value)
- })
- // starting onOpenChange + change inputPasswor hide/see
- inputCheckbox.addEventListener('change', () => {
- this.setOpen(inputCheckbox.checked),
- this.onOpenChange(inputCheckbox.checked)
- })
- }
- function Login(parent) {
- // create login fild
- const inputLogin = document.createElement('input')
- inputLogin.type = 'text'
- inputLogin.placeholder = 'Insert login'
- parent.append(inputLogin)
- // create getters
- this.getValue = () => inputLogin.value
- // create setters
- this.setValue = (value) => inputLogin.value = value
- // starting onChange
- inputLogin.addEventListener('input', () => {
- this.onChange(inputLogin.value)
- })
- }
- // create form with password and login
- const form = document.createElement('form')
- parent.append(form)
- const loginLabel = document.createElement('label')
- loginLabel.innerText = 'Login:'
- form.append(loginLabel)
- let breakSymbol = document.createElement('br')
- form.append(breakSymbol)
- const login = new Login(form)
- breakSymbol = document.createElement('br')
- form.append(breakSymbol)
- const passwordLabel = document.createElement('label')
- passwordLabel.innerText = 'Password:'
- form.append(passwordLabel)
- breakSymbol = document.createElement('br')
- form.append(breakSymbol)
- const password = new Password(form, true)
- breakSymbol = document.createElement('br')
- form.append(breakSymbol)
- const confirmBtn = document.createElement('button')
- confirmBtn.innerText = 'Confirm'
- confirmBtn.type = 'submit'
- confirmBtn.style.marginTop = '10px'
- confirmBtn.disabled = true
- form.append(confirmBtn)
- // change confirmBtn.disabled
- function checkButton() {
- if (login.getValue() !== '' && password.getValue() !== '') {
- confirmBtn.disabled = false
- } else {
- confirmBtn.disabled = true
- }
- return confirmBtn.disabled
- }
- checkButton()
- // listening password and login
- login.onChange = password.onChange = checkButton
- // create getters
- this.getPasswordValue = () => password.getValue()
- this.getPasswordOpen = () => password.getOpen()
- this.getLoginValue = () => login.getValue()
- this.getButtonStatus = () => confirmBtn.disabled
- // create setters
- this.setPasswordValue = (value) => password.setValue(value)
- this.setLoginValue = (value) => login.setValue(value)
- this.setPasswordOpen = (status) => password.setOpen(status)
- // create callbacks
- this.onOpenChange = open => password.onOpenChange = open
- }
- const loginForm = new LoginForm(document.body)
- loginForm.setPasswordValue('1q2w3e')
- console.log(loginForm.getPasswordValue())
- loginForm.setLoginValue('login')
- console.log(loginForm.getLoginValue())
- loginForm.setPasswordOpen(false)
- console.log(loginForm.getPasswordOpen())
- loginForm.onOpenChange(open => console.log(open))
- }
- // Password Verify - almost done
- // С помощью Password сделайте пару инпутов, которые проверяют введеный пароль(в двух полях ввода) на совпадение.Подсвечивайте поля красным цветом / бордером когда пароли не совпадают При открытом пароле в первом поле ввода(которое реализуется с помощью объекта класса Password второе поле вводы должно пропадать с экрана Таким образом:
- // Когда Password в скрытом режиме - появляется второй инпут(<input type='password'>) с паролем в скрытом режиме
- // Когда Password в открытом режиме - второй инпут пропадает
- {
- function Password(parent, open) {
- // create filed for password
- const inputPassword = document.createElement('input')
- inputPassword.type = 'password'
- inputPassword.placeholder = 'Insert password'
- parent.append(inputPassword)
- // create checkbox
- const inputCheckbox = document.createElement('input')
- inputCheckbox.type = 'checkbox'
- inputCheckbox.checked = false
- parent.append(inputCheckbox)
- // create getters
- this.getValue = () => inputPassword.value
- this.getOpen = () => inputCheckbox.checked
- // create setters
- this.setValue = (value) => inputPassword.value = value
- this.setOpen = (open) => {
- if (open === true) {
- inputPassword.type = 'text'
- inputCheckbox.checked = true
- }
- if (open === false) {
- inputPassword.type = 'password'
- inputCheckbox.checked = false
- }
- return inputPassword.type, inputCheckbox.checked
- }
- // starting onChange
- inputPassword.addEventListener('input', () => {
- this.onChange(inputPassword.value)
- })
- // starting onOpenChange + change inputPasswor hide/see
- inputCheckbox.addEventListener('change', () => {
- this.setOpen(inputCheckbox.checked),
- this.onOpenChange(inputCheckbox.checked)
- })
- // set background color
- this.setBackground = (value) => {
- inputPassword.style.backgroundColor = value
- }
- }
- function Checher(parent) {
- const passwordVerifyDiv = document.createElement('div')
- passwordVerifyDiv.style.backgroundColor = 'transparent'
- parent.append(passwordVerifyDiv)
- const mainDiv = document.createElement('div')
- passwordVerifyDiv.append(mainDiv)
- let main = new Password(mainDiv, true)
- const checkedDiv = document.createElement('div')
- checkedDiv.style.display = 'block'
- passwordVerifyDiv.append(checkedDiv)
- let checked = new Password(checkedDiv, true)
- main.onOpenChange = open => {
- !open ? checkedDiv.style.display = 'block' : checkedDiv.style.display = 'none'
- }
- function checker() {
- if (main.getValue() !== checked.getValue()) {
- main.setBackground('#FFAAAA')
- checked.setBackground('#FFAAAA')
- } else {
- main.setBackground('transparent')
- checked.setBackground('transparent')
- }
- return main.setBackground, checked.setBackground
- }
- checker()
- main.onChange = checked.onChange = checker
- }
- const checker = new Checher(document.body)
- }
|