1
0
mirror of https://github.com/kremalicious/metamask-extension.git synced 2024-11-27 12:56:01 +01:00
metamask-extension/ui/lib/persistent-form.js

63 lines
1.7 KiB
JavaScript
Raw Normal View History

import { inherits } from 'util'
import { Component } from 'react'
2016-08-25 21:17:09 +02:00
const defaultKey = 'persistent-form-default'
2016-08-25 23:23:41 +02:00
const eventName = 'keyup'
2016-08-25 21:17:09 +02:00
export default PersistentForm
2016-08-25 21:17:09 +02:00
function PersistentForm () {
Component.call(this)
}
inherits(PersistentForm, Component)
PersistentForm.prototype.componentDidMount = function () {
const fields = document.querySelectorAll('[data-persistent-formid]')
const store = this.getPersistentStore()
for (let i = 0; i < fields.length; i++) {
const field = fields[i]
2016-08-25 21:17:09 +02:00
const key = field.getAttribute('data-persistent-formid')
const cached = store[key]
if (cached !== undefined) {
field.value = cached
}
field.addEventListener(eventName, this.persistentFieldDidUpdate.bind(this))
}
2016-08-25 21:17:09 +02:00
}
PersistentForm.prototype.getPersistentStore = function () {
let store = window.localStorage[this.persistentFormParentId || defaultKey]
if (store && store !== 'null') {
store = JSON.parse(store)
} else {
store = {}
}
return store
}
PersistentForm.prototype.setPersistentStore = function (newStore) {
window.localStorage[this.persistentFormParentId || defaultKey] = JSON.stringify(newStore)
}
PersistentForm.prototype.persistentFieldDidUpdate = function (event) {
const field = event.target
const store = this.getPersistentStore()
const key = field.getAttribute('data-persistent-formid')
const val = field.value
store[key] = val
this.setPersistentStore(store)
}
PersistentForm.prototype.componentWillUnmount = function () {
const fields = document.querySelectorAll('[data-persistent-formid]')
for (let i = 0; i < fields.length; i++) {
const field = fields[i]
2016-08-25 21:17:09 +02:00
field.removeEventListener(eventName, this.persistentFieldDidUpdate.bind(this))
}
2016-08-25 21:17:09 +02:00
this.setPersistentStore({})
}